so much organization
This commit is contained in:
@@ -1,6 +1,6 @@
|
||||
{ pkgs, ... }:
|
||||
let
|
||||
theme = import ../../theme.nix { inherit pkgs; };
|
||||
settings = import ../../settings.nix { inherit pkgs; };
|
||||
in
|
||||
{
|
||||
programs.kitty = {
|
||||
@@ -8,9 +8,9 @@ in
|
||||
shellIntegration.enableZshIntegration = true;
|
||||
|
||||
font = {
|
||||
name = theme.fontName;
|
||||
package = theme.fontPackage;
|
||||
size = theme.fontSize;
|
||||
name = settings.fontName;
|
||||
package = settings.fontPackage;
|
||||
size = settings.fontSize;
|
||||
};
|
||||
|
||||
settings = {
|
||||
@@ -24,77 +24,77 @@ in
|
||||
background_opacity = "0.85";
|
||||
|
||||
# The basic colors
|
||||
foreground = theme.nord.snowStorm.nord6;
|
||||
background = theme.nord.polarNight.nord0;
|
||||
selection_foreground = theme.nord.polarNight.nord0;
|
||||
selection_background = theme.nord.aurora.nord15;
|
||||
foreground = settings.nord.snowStorm.nord6;
|
||||
background = settings.nord.polarNight.nord0;
|
||||
selection_foreground = settings.nord.polarNight.nord0;
|
||||
selection_background = settings.nord.aurora.nord15;
|
||||
|
||||
# Cursor colors
|
||||
cursor = theme.nord.aurora.nord15;
|
||||
cursor_text_color = theme.nord.polarNight.nord0;
|
||||
cursor = settings.nord.aurora.nord15;
|
||||
cursor_text_color = settings.nord.polarNight.nord0;
|
||||
|
||||
# URL underline color when hovering with mouse
|
||||
url_color = theme.nord.aurora.nord15;
|
||||
url_color = settings.nord.aurora.nord15;
|
||||
|
||||
# Kitty window border colors
|
||||
active_border_color = theme.nord.frost.nord10;
|
||||
inactive_border_color = theme.nord.polarNight.nord1;
|
||||
bell_border_color = theme.nord.aurora.nord13;
|
||||
active_border_color = settings.nord.frost.nord10;
|
||||
inactive_border_color = settings.nord.polarNight.nord1;
|
||||
bell_border_color = settings.nord.aurora.nord13;
|
||||
|
||||
# OS Window titlebar colors
|
||||
wayland_titlebar_color = theme.nord.polarNight.nord0;
|
||||
macos_titlebar_color = theme.nord.polarNight.nord0;
|
||||
wayland_titlebar_color = settings.nord.polarNight.nord0;
|
||||
macos_titlebar_color = settings.nord.polarNight.nord0;
|
||||
|
||||
# Tab bar colors
|
||||
active_tab_foreground = theme.nord.polarNight.nord3;
|
||||
active_tab_background = theme.nord.aurora.nord15;
|
||||
inactive_tab_foreground = theme.nord.snowStorm.nord6;
|
||||
inactive_tab_background = theme.nord.polarNight.nord1;
|
||||
tab_bar_background = theme.nord.polarNight.nord3;
|
||||
active_tab_foreground = settings.nord.polarNight.nord3;
|
||||
active_tab_background = settings.nord.aurora.nord15;
|
||||
inactive_tab_foreground = settings.nord.snowStorm.nord6;
|
||||
inactive_tab_background = settings.nord.polarNight.nord1;
|
||||
tab_bar_background = settings.nord.polarNight.nord3;
|
||||
|
||||
# Colors for marks (marked text in the terminal)
|
||||
mark1_foreground = theme.nord.polarNight.nord0;
|
||||
mark1_background = theme.nord.frost.nord10;
|
||||
mark2_foreground = theme.nord.polarNight.nord0;
|
||||
mark2_background = theme.nord.aurora.nord15;
|
||||
mark3_foreground = theme.nord.polarNight.nord0;
|
||||
mark3_background = theme.nord.frost.nord8;
|
||||
mark1_foreground = settings.nord.polarNight.nord0;
|
||||
mark1_background = settings.nord.frost.nord10;
|
||||
mark2_foreground = settings.nord.polarNight.nord0;
|
||||
mark2_background = settings.nord.aurora.nord15;
|
||||
mark3_foreground = settings.nord.polarNight.nord0;
|
||||
mark3_background = settings.nord.frost.nord8;
|
||||
|
||||
# The 16 terminal colors
|
||||
|
||||
# black
|
||||
color0 = theme.nord.polarNight.nord0;
|
||||
color0 = settings.nord.polarNight.nord0;
|
||||
|
||||
# Autosuggestion
|
||||
color8 = theme.nord.frost.nord10;
|
||||
color8 = settings.nord.frost.nord10;
|
||||
|
||||
# red
|
||||
color1 = theme.nord.aurora.nord11;
|
||||
color9 = theme.nord.aurora.nord11;
|
||||
color1 = settings.nord.aurora.nord11;
|
||||
color9 = settings.nord.aurora.nord11;
|
||||
|
||||
# green
|
||||
color2 = theme.nord.aurora.nord14;
|
||||
color10 = theme.nord.aurora.nord14;
|
||||
color2 = settings.nord.aurora.nord14;
|
||||
color10 = settings.nord.aurora.nord14;
|
||||
|
||||
# yellow
|
||||
color3 = theme.nord.aurora.nord13;
|
||||
color11 = theme.nord.aurora.nord13;
|
||||
color3 = settings.nord.aurora.nord13;
|
||||
color11 = settings.nord.aurora.nord13;
|
||||
|
||||
# blue
|
||||
color4 = theme.nord.frost.nord10;
|
||||
color12 = theme.nord.frost.nord10;
|
||||
color4 = settings.nord.frost.nord10;
|
||||
color12 = settings.nord.frost.nord10;
|
||||
|
||||
# magenta
|
||||
color5 = theme.nord.aurora.nord15;
|
||||
color13 = theme.nord.aurora.nord15;
|
||||
color5 = settings.nord.aurora.nord15;
|
||||
color13 = settings.nord.aurora.nord15;
|
||||
|
||||
# cyan
|
||||
color6 = theme.nord.frost.nord8;
|
||||
color14 = theme.nord.frost.nord8;
|
||||
color6 = settings.nord.frost.nord8;
|
||||
color14 = settings.nord.frost.nord8;
|
||||
|
||||
# white
|
||||
color7 = theme.nord.snowStorm.nord5;
|
||||
color15 = theme.nord.snowStorm.nord4;
|
||||
color7 = settings.nord.snowStorm.nord5;
|
||||
color15 = settings.nord.snowStorm.nord4;
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user