colors: Change theme to Catppuccin Mocha

From Rosé Pine
This commit is contained in:
Jan Kremer 2025-07-09 10:52:12 +02:00
parent 142927d81a
commit f6096b7f78
Signed by: jan
GPG key ID: A7DA689CB3B078EC

View file

@ -1,39 +1,40 @@
{ pkgs, ... }: { pkgs, ... }:
{ {
# Rosé Pine Moon (https://rosepinetheme.com) # Catppuccin Mocha (https://catppuccin.com/)
programs = { programs = {
bat = { bat = {
config.theme = "rose-pine"; config.theme = "catppuccin-mocha";
themes.rose-pine = { themes.catppuccin-mocha = {
src = pkgs.fetchFromGitHub { src = pkgs.fetchFromGitHub {
owner = "rose-pine"; owner = "catppuccin";
repo = "tm-theme"; repo = "bat";
rev = "c4235f9a65fd180ac0f5e4396e3a86e21a0884ec"; rev = "6810349b28055dce54076712fc05fc68da4b8ec0";
hash = "sha256-jji8WOKDkzAq8K+uSZAziMULI8Kh7e96cBRimGvIYKY="; hash = "sha256-lJapSgRVENTrbmpVyn+UQabC9fpV1G1e+CdlJ090uvg=";
}; };
file = "dist/themes/rose-pine.tmTheme"; file = "themes/Catppuccin Mocha.tmTheme";
}; };
}; };
fzf.colors = { fzf.colors = {
"fg" = "#908caa"; "bg+" = "#313244";
"bg" = "#191724"; "bg" = "#1E1E2E";
"hl" = "#ebbcba"; "spinner" = "#F5E0DC";
"fg+" = "#e0def4"; "hl" = "#F38BA8";
"bg+" = "#26233a"; "fg" = "#CDD6F4";
"hl+" = "#ebbcba"; "header" = "#F38BA8";
"border" = "#403d52"; "info" = "#CBA6F7";
"header" = "#31748f"; "pointer" = "#F5E0DC";
"gutter" = "#191724"; "marker" = "#B4BEFE";
"spinner" = "#f6c177"; "fg+" = "#CDD6F4";
"info" = "#9ccfd8"; "prompt" = "#CBA6F7";
"pointer" = "#c4a7e7"; "hl+" = "#F38BA8";
"marker" = "#eb6f92"; "selected-bg" = "#45475A";
"prompt" = "#908caa"; "border" = "#313244";
"label" = "#CDD6F4";
}; };
ghostty.settings.theme = "rose-pine"; ghostty.settings.theme = "catppuccin-mocha";
helix.settings.theme = "rose_pine"; helix.settings.theme = "catppuccin_mocha";
}; };
} }