diff options
Diffstat (limited to 'modules/terminal/kitty.nix')
-rw-r--r-- | modules/terminal/kitty.nix | 23 |
1 files changed, 10 insertions, 13 deletions
diff --git a/modules/terminal/kitty.nix b/modules/terminal/kitty.nix index 88aa151..cee0e72 100644 --- a/modules/terminal/kitty.nix +++ b/modules/terminal/kitty.nix @@ -43,20 +43,17 @@ in { # Disable close prompt confirm_os_window_close = 0; - # colors - background = "#${config.theme.colors.bg}"; - foreground = "#${config.theme.colors.fg}"; - selection_background = "#${config.theme.colors.surface.bg}"; - selection_foreground = "#${config.theme.colors.surface.fg}"; + # selection + selection_background = "#${config.theme.colors.surface}"; + selection_foreground = "none"; + + # cursor url_color = "#${config.theme.colors.bright.yellow}"; - cursor = "#${config.theme.colors.fg}"; - active_border_color = "#${config.theme.colors.primary}"; - inactive_border_color = "#${config.theme.colors.bg}"; - active_tab_background = "#${config.theme.colors.bg}"; - active_tab_foreground = "#${config.theme.colors.fg}"; - inactive_tab_background = "#${config.theme.colors.bg}"; - inactive_tab_foreground = "#${config.theme.colors.fg}"; - tab_bar_background = "#${config.theme.colors.bg}"; + cursor = "#${config.theme.colors.text}"; + + # colors + background = "#${config.theme.colors.base}"; + foreground = "#${config.theme.colors.text}"; # normal color0 = "#${config.theme.colors.normal.black}"; |