Revert "colors: Change theme to Catppuccin Mocha"

This reverts commit f6096b7f78.
This commit is contained in:
Jan Kremer 2025-07-20 12:48:53 +02:00
parent 110cbfdb97
commit 9fc99260d1
Signed by: jan
GPG key ID: A7DA689CB3B078EC

View file

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