nix/home-manager/common/software/gui/themes/stylix/kitty-theme.nix
2024-01-03 22:40:04 +09:00

30 lines
862 B
Nix

{ ... }: {
home.file.".config/kitty/theme.conf".text = ''
## name: Gruvbox Dark
## author: Pavel Pertsev
## license: MIT/X11
## upstream: https://github.com/dexpota/kitty-themes/blob/master/themes/Hipster_Green.conf
background #252525
foreground #d9eed2
cursor #41ff58
selection_background #2a9b34
color0 #1e1e1e
color8 #03260f
color1 #da6a6a
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
'';
}