theme edits

This commit is contained in:
mjallen18
2025-10-24 09:58:33 -05:00
parent 1b125aecd0
commit 9582ca5392
26 changed files with 1488 additions and 726 deletions

View File

@@ -2,7 +2,7 @@
with lib;
let
cfg = config.mjallen.programs.kitty;
nord = import (lib.snowfall.fs.get-file "modules/home/desktop/theme/nord.nix");
palette = import cfg.theme.file;
in
{
imports = [ ./options.nix ];
@@ -29,77 +29,77 @@ in
background_opacity = "0.85";
# The basic colors
foreground = nord.snowStorm.nord6;
background = nord.polarNight.nord0;
selection_foreground = nord.polarNight.nord0;
selection_background = nord.aurora.nord15;
foreground = palette.colors.text;
background = palette.colors.bg;
selection_foreground = palette.colors.bg;
selection_background = palette.colors.accent;
# Cursor colors
cursor = nord.aurora.nord15;
cursor_text_color = nord.polarNight.nord0;
cursor = palette.colors.accent;
cursor_text_color = palette.colors.bg;
# URL underline color when hovering with mouse
url_color = nord.aurora.nord15;
url_color = palette.colors.accent;
# Kitty window border colors
active_border_color = nord.frost.nord10;
inactive_border_color = nord.polarNight.nord1;
bell_border_color = nord.aurora.nord13;
active_border_color = palette.colors.primary;
inactive_border_color = palette.colors.bgAlt;
bell_border_color = palette.colors.warning;
# OS Window titlebar colors
wayland_titlebar_color = nord.polarNight.nord0;
macos_titlebar_color = nord.polarNight.nord0;
wayland_titlebar_color = palette.colors.bg;
macos_titlebar_color = palette.colors.bg;
# Tab bar colors
active_tab_foreground = nord.polarNight.nord3;
active_tab_background = nord.aurora.nord15;
inactive_tab_foreground = nord.snowStorm.nord6;
inactive_tab_background = nord.polarNight.nord1;
tab_bar_background = nord.polarNight.nord3;
active_tab_foreground = palette.colors.border;
active_tab_background = palette.colors.accent;
inactive_tab_foreground = palette.colors.text;
inactive_tab_background = palette.colors.bgAlt;
tab_bar_background = palette.colors.border;
# Colors for marks (marked text in the terminal)
mark1_foreground = nord.polarNight.nord0;
mark1_background = nord.frost.nord10;
mark2_foreground = nord.polarNight.nord0;
mark2_background = nord.aurora.nord15;
mark3_foreground = nord.polarNight.nord0;
mark3_background = nord.frost.nord8;
mark1_foreground = palette.colors.bg;
mark1_background = palette.colors.primary;
mark2_foreground = palette.colors.bg;
mark2_background = palette.colors.accent;
mark3_foreground = palette.colors.bg;
mark3_background = palette.colors.info;
# The 16 terminal colors
# black
color0 = nord.polarNight.nord0;
color0 = palette.colors.bg;
# Autosuggestion
color8 = nord.frost.nord10;
color8 = palette.colors.primary;
# red
color1 = nord.aurora.nord11;
color9 = nord.aurora.nord11;
color1 = palette.colors.danger;
color9 = palette.colors.danger;
# green
color2 = nord.aurora.nord14;
color10 = nord.aurora.nord14;
color2 = palette.colors.success;
color10 = palette.colors.success;
# yellow
color3 = nord.aurora.nord13;
color11 = nord.aurora.nord13;
color3 = palette.colors.warning;
color11 = palette.colors.warning;
# blue
color4 = nord.frost.nord10;
color12 = nord.frost.nord10;
color4 = palette.colors.primary;
color12 = palette.colors.primary;
# magenta
color5 = nord.aurora.nord15;
color13 = nord.aurora.nord15;
color5 = palette.colors.accent;
color13 = palette.colors.accent;
# cyan
color6 = nord.frost.nord8;
color14 = nord.frost.nord8;
color6 = palette.colors.info;
color14 = palette.colors.info;
# white
color7 = nord.snowStorm.nord5;
color15 = nord.snowStorm.nord4;
color7 = palette.colors.textMuted;
color15 = palette.colors.text;
};
};
};