dotfiles.nix/overlays/colors/tokyonight.nix

49 lines
1.2 KiB
Nix
Raw Normal View History

2022-07-26 04:22:16 +00:00
{
dark = {
2022-02-12 08:02:20 +00:00
background = "#1a1b26";
foreground = "#a9b1d6";
2022-07-26 04:22:16 +00:00
selection_background = "#28344a";
selection_foreground = "none";
tab_bar_background = "#101014";
active_tab_background = "#787c99";
active_tab_foreground = "#3d59a1";
inactive_tab_background = "#16161e";
inactive_tab_foreground = "#9aa5ce";
comment = "#565f89";
2022-02-12 08:02:20 +00:00
white = "#c0caf5";
black = "#414868";
red = "#f7768e";
yellow = "#e0af68";
orange = "#ff9e64";
green = "#73daca";
lime = "#2ac3de";
blue = "#7aa2f7";
magenta = "#bb9af7";
cyan = "#7dcfff";
brightgreen = "#9ece6a";
};
2022-07-26 04:22:16 +00:00
light = rec {
2022-02-12 08:02:20 +00:00
background = "#d5d6db";
2022-07-26 04:22:16 +00:00
foreground = white;
selection_background = "#fafbff";
selection_foreground = "none";
tab_bar_background = "#e9e9ed";
active_tab_foreground = "#d4d6e4";
active_tab_background = "#2e7de9";
inactive_tab_foreground = "#8990b3";
inactive_tab_background = "#c4c8da";
comment = "#9699a3";
2022-02-12 08:02:20 +00:00
white = "#343b58";
black = "#0f0f14";
red = "#8c4351";
yellow = "#8f5e15";
2022-07-26 04:22:16 +00:00
orange = white;
2022-02-12 08:02:20 +00:00
green = "#33635c";
lime = "#166775";
blue = "#34548a";
magenta = "#5a4a78";
cyan = "#0f4b6e";
brightgreen = "#485e30";
};
2022-02-12 07:20:19 +00:00
}