kitty: make cursor+selection white
This commit is contained in:
parent
6e0d0c8556
commit
4e7e0d2aaf
1 changed files with 79 additions and 84 deletions
|
|
@ -3,11 +3,13 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
let
|
{
|
||||||
# Map Catppuccin colors to Kitty theme structure
|
home.file.".config/kitty/themes" = {
|
||||||
kitty-colors = with config.scheme.withHashtag; ''
|
source = pkgs.writeTextFile {
|
||||||
|
name = "kitty-colors";
|
||||||
|
text = with config.scheme.withHashtag; ''
|
||||||
# vim:ft=kitty
|
# vim:ft=kitty
|
||||||
## name: Kova's Nixified Kitty
|
## name: NixOS Kitty Theme
|
||||||
## author: Catppuccin Org & sckova
|
## author: Catppuccin Org & sckova
|
||||||
## license: MIT
|
## license: MIT
|
||||||
## upstream: https://github.com/catppuccin/kitty
|
## upstream: https://github.com/catppuccin/kitty
|
||||||
|
|
@ -17,14 +19,14 @@ let
|
||||||
foreground ${base05}
|
foreground ${base05}
|
||||||
background ${base00}
|
background ${base00}
|
||||||
selection_foreground ${base00}
|
selection_foreground ${base00}
|
||||||
selection_background ${base06}
|
selection_background ${base05}
|
||||||
|
|
||||||
# Cursor colors
|
# Cursor colors
|
||||||
cursor ${base06}
|
cursor ${base05}
|
||||||
cursor_text_color ${base00}
|
cursor_text_color ${base00}
|
||||||
|
|
||||||
# URL underline color when hovering with mouse
|
# URL underline color when hovering with mouse
|
||||||
url_color ${base06}
|
url_color ${base05}
|
||||||
|
|
||||||
# Kitty window border colors
|
# Kitty window border colors
|
||||||
active_border_color ${config.scheme.withHashtag.${config.colors.accent}}
|
active_border_color ${config.scheme.withHashtag.${config.colors.accent}}
|
||||||
|
|
@ -79,16 +81,9 @@ let
|
||||||
color7 ${base04}
|
color7 ${base04}
|
||||||
color15 ${base04}
|
color15 ${base04}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
kitty-colors-file = pkgs.writeTextFile {
|
|
||||||
name = "kitty-colors";
|
|
||||||
text = kitty-colors;
|
|
||||||
destination = "/kitty-colors.conf";
|
destination = "/kitty-colors.conf";
|
||||||
};
|
};
|
||||||
in
|
|
||||||
{
|
|
||||||
home.file.".config/kitty/themes" = {
|
|
||||||
source = kitty-colors-file;
|
|
||||||
recursive = true;
|
recursive = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue