fatass commit for the rice

This commit is contained in:
wo2wz 2025-10-22 18:43:51 -04:00
parent 266d1b3deb
commit 89ac1c676d
28 changed files with 1101 additions and 587 deletions

View file

@ -1,71 +1,73 @@
{ config, ... }:
{ config, osConfig, ... }:
{
programs.kitty = {
enable = true;
settings = {
settings =
let
colors = osConfig.custom.colors;
in {
tab_bar_style = "powerline";
tab_powerline_style = "round";
confirm_os_window_close = -1;
font_size = 12;
font_size = 10;
# The basic colors
background = "#1a1b26";
foreground = "#a9b1d6";
selection_background = "#444b6a";
selection_foreground = "#a9b1d6";
background = colors.base00;
foreground = colors.base05;
selection_background = colors.base03;
selection_foreground = colors.base05;
# Cursor colors
cursor = "#a9b1d6";
cursor_text_color = "#1a1b26";
cursor = colors.base05;
cursor_text_color = colors.base00;
# URL underline color when hovering with mouse
url_color = "#787c99";
url_color = colors.base04;
# Kitty window border colors
active_border_color = "#444b6a";
inactive_border_color = "#16161e";
active_border_color = colors.base03;
inactive_border_color = colors.base01;
# OS Window titlebar colors
wayland_titlebar_color = "#1a1b26";
macos_titlebar_color = "#1a1b26";
wayland_titlebar_color = colors.base00;
# Tab bar colors
active_tab_background = "#1a1b26";
active_tab_foreground = "#a9b1d6";
inactive_tab_background = "#16161e";
inactive_tab_foreground = "#787c99";
tab_bar_background = "#16161e";
active_tab_background = colors.base00;
active_tab_foreground = colors.base05;
inactive_tab_background = colors.base01;
inactive_tab_foreground = colors.base04;
tab_bar_background = colors.base01;
# The 16 terminal colors
# normal
color0 = "#1a1b26";
color1 = "#c0caf5";
color2 = "#9ece6a";
color3 = "#0db9d7";
color4 = "#2ac3de";
color5 = "#bb9af7";
color6 = "#b4f9f8";
color7 = "#a9b1d6";
color0 = colors.base00;
color1 = colors.base08;
color2 = colors.base0B;
color3 = colors.base0A;
color4 = colors.base0D;
color5 = colors.base0E;
color6 = colors.base0C;
color7 = colors.base05;
# bright
color8 = "#2f3549";
color9 = "#c0caf5";
color10 = "#9ece6a";
color11 = "#0db9d7";
color12 = "#2ac3de";
color13 = "#bb9af7";
color14 = "#b4f9f8";
color15 = "#d5d6db";
color8 = colors.base02;
color9 = colors.base08;
color10 = colors.base0B;
color11 = colors.base0A;
color12 = colors.base0D;
color13 = colors.base0E;
color14 = colors.base0C;
color15 = colors.base07;
# extended base16 colors
color16 = "#a9b1d6";
color17 = "#f7768e";
color18 = "#16161e";
color19 = "#2f3549";
color20 = "#787c99";
color21 = "#cbccd1";
color16 = colors.base09;
color17 = colors.base0F;
color18 = colors.base01;
color19 = colors.base02;
color20 = colors.base04;
color21 = colors.base06;
};
};
}