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