nix/home-manager/common/software/gui/themes/green/kitty-theme.nix

31 lines
862 B
Nix
Raw Normal View History

2023-11-19 12:20:37 +01:00
{ ... }: {
home.file.".config/kitty/theme.conf".text = ''
## name: Gruvbox Dark
## author: Pavel Pertsev
## license: MIT/X11
2023-11-19 12:57:34 +01:00
## upstream: https://github.com/dexpota/kitty-themes/blob/master/themes/Hipster_Green.conf
2023-11-19 12:20:37 +01:00
2023-11-20 12:43:11 +01:00
background #252525
2023-11-19 12:57:34 +01:00
foreground #d9eed2
cursor #41ff58
selection_background #2a9b34
color0 #1e1e1e
color8 #03260f
2023-11-20 12:43:11 +01:00
color1 #da6a6a
2023-11-19 12:57:34 +01:00
color9 #a6ff3e
color2 #329b24
color10 #9fff6d
color3 #649a25
color11 #d1ff6d
color4 #149b45
color12 #72ffb5
color5 #53b82b
color13 #50ff3d
color6 #2bb767
color14 #22ff71
color7 #dffeee
color15 #daeed0
selection_foreground #3a3c3e
2023-11-19 12:20:37 +01:00
'';
}