49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
dark = {
|
|
background = "#1a1b26";
|
|
foreground = "#a9b1d6";
|
|
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";
|
|
white = "#c0caf5";
|
|
black = "#414868";
|
|
red = "#f7768e";
|
|
yellow = "#e0af68";
|
|
orange = "#ff9e64";
|
|
green = "#73daca";
|
|
lime = "#2ac3de";
|
|
blue = "#7aa2f7";
|
|
magenta = "#bb9af7";
|
|
cyan = "#7dcfff";
|
|
brightgreen = "#9ece6a";
|
|
};
|
|
light = rec {
|
|
background = "#d5d6db";
|
|
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";
|
|
white = "#343b58";
|
|
black = "#0f0f14";
|
|
red = "#8c4351";
|
|
yellow = "#8f5e15";
|
|
orange = white;
|
|
green = "#33635c";
|
|
lime = "#166775";
|
|
blue = "#34548a";
|
|
magenta = "#5a4a78";
|
|
cyan = "#0f4b6e";
|
|
brightgreen = "#485e30";
|
|
};
|
|
}
|