94 lines
1.9 KiB
Nix
94 lines
1.9 KiB
Nix
# Kaolin-dark scheme by alternateved (http://github.com/alternateved)
|
|
# Inspired by (https://github.com/ogdenwebb/emacs-kaolin-themes)
|
|
|
|
{ config, lib, ... }: {
|
|
custom.colors = {
|
|
base00 = "#18181B";
|
|
base01 = "#222225";
|
|
base02 = "#4B5254";
|
|
base03 = "#545C5E";
|
|
base04 = "#879193";
|
|
base05 = "#9ba5a7";
|
|
base06 = "#d0d0d4";
|
|
base07 = "#E4E4E8";
|
|
base08 = "#CD5C60";
|
|
base09 = "#DBAC66";
|
|
base0A = "#F2C866";
|
|
base0B = "#6FB593";
|
|
base0C = "#4D9391";
|
|
base0D = "#91B9C7";
|
|
base0E = "#845A84";
|
|
base0F = "#E36D5B";
|
|
};
|
|
|
|
# custom.colors.kitty.enable = false;
|
|
programs.kitty.settings = with config.custom.colors; {
|
|
## name: Kaolin Dark
|
|
## author: Ogden Webb
|
|
## license: GNU GPLv3
|
|
## blurb: Dark jade theme inspired by Sierra.vim.
|
|
|
|
# The basic colors
|
|
foreground = base07;
|
|
background = base00;
|
|
|
|
selection_foreground = base00;
|
|
selection_background = base07;
|
|
|
|
# Cursor colors
|
|
cursor = base07;
|
|
# cursor_text_color = "#ffffff";
|
|
cursor_text_color = base00;
|
|
|
|
# kitty window border colors
|
|
active_border_color = base0C;
|
|
inactive_border_color = base02;
|
|
|
|
# Tab bar colors
|
|
active_tab_background = base07;
|
|
active_tab_foreground = base00;
|
|
inactive_tab_background = base04;
|
|
inactive_tab_foreground = base00;
|
|
|
|
# black
|
|
color0 = base02;
|
|
color8 = base04;
|
|
|
|
# red
|
|
color1 = base08;
|
|
color9 = base0F;
|
|
|
|
# green
|
|
color2 = base0B;
|
|
color10 = "#72CCBA";
|
|
|
|
# yellow
|
|
color3 = base09;
|
|
color11 = base0A;
|
|
|
|
# blue
|
|
color4 = base0D;
|
|
color12 = "#97B8DE";
|
|
|
|
# magenta
|
|
color5 = base0E;
|
|
color13 = "#8C629C";
|
|
|
|
# cyan
|
|
color6 = base0C;
|
|
color14 = "#5096AB";
|
|
|
|
# white
|
|
color7 = base07;
|
|
color15 = "#EFEFF1";
|
|
|
|
# other
|
|
color16 = base09;
|
|
color17 = base0F;
|
|
color18 = base01;
|
|
color19 = base02;
|
|
color20 = base04;
|
|
color21 = base06;
|
|
};
|
|
}
|