Inital commit for theming
This commit is contained in:
73
home/kitty.nix
Normal file
73
home/kitty.nix
Normal file
@@ -0,0 +1,73 @@
|
||||
{ config, pkgs, ... }:
|
||||
|
||||
{
|
||||
programs.kitty = {
|
||||
enable = true;
|
||||
font = {
|
||||
name = "JetBrainsMono Nerd Font";
|
||||
size = 12;
|
||||
};
|
||||
|
||||
settings = {
|
||||
# Nord theme colors
|
||||
background = "#2e3440";
|
||||
foreground = "#d8dee9";
|
||||
|
||||
# Cursor
|
||||
cursor = "#d8dee9";
|
||||
cursor_text_color = "#2e3440";
|
||||
|
||||
# Selection
|
||||
selection_background = "#4c566a";
|
||||
selection_foreground = "#eceff4";
|
||||
|
||||
# Black
|
||||
color0 = "#3b4252";
|
||||
color8 = "#4c566a";
|
||||
|
||||
# Red
|
||||
color1 = "#bf616a";
|
||||
color9 = "#bf616a";
|
||||
|
||||
# Green
|
||||
color2 = "#a3be8c";
|
||||
color10 = "#a3be8c";
|
||||
|
||||
# Yellow
|
||||
color3 = "#ebcb8b";
|
||||
color11 = "#ebcb8b";
|
||||
|
||||
# Blue
|
||||
color4 = "#81a1c1";
|
||||
color12 = "#81a1c1";
|
||||
|
||||
# Magenta
|
||||
color5 = "#b48ead";
|
||||
color13 = "#b48ead";
|
||||
|
||||
# Cyan
|
||||
color6 = "#88c0d0";
|
||||
color14 = "#8fbcbb";
|
||||
|
||||
# White
|
||||
color7 = "#e5e9f0";
|
||||
color15 = "#eceff4";
|
||||
|
||||
# Window
|
||||
background_opacity = "0.95";
|
||||
window_padding_width = 8;
|
||||
|
||||
# Misc
|
||||
confirm_os_window_close = 0;
|
||||
enable_audio_bell = false;
|
||||
|
||||
# Tab bar
|
||||
tab_bar_style = "powerline";
|
||||
tab_powerline_style = "slanted";
|
||||
active_tab_foreground = "#2e3440";
|
||||
active_tab_background = "#88c0d0";
|
||||
inactive_tab_foreground = "#d8dee9";
|
||||
inactive_tab_background = "#3b4252";
|
||||
};
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user