40 lines
661 B
Nix
40 lines
661 B
Nix
|
rec {
|
||
|
wallpaper = "#e6e6e6";
|
||
|
focused = "#e96161";
|
||
|
unfocused = "#5c5c5c";
|
||
|
|
||
|
primary = {
|
||
|
foreground = "#000000";
|
||
|
background = "#ffffff";
|
||
|
};
|
||
|
|
||
|
cursor = {
|
||
|
foreground = "#dcd7ba";
|
||
|
background = "#6f6f78";
|
||
|
};
|
||
|
|
||
|
normal = {
|
||
|
black = "#393939";
|
||
|
red = "#e96161";
|
||
|
green = "#3cc970";
|
||
|
yellow = "#e6d250";
|
||
|
blue = "#4f9afa";
|
||
|
magenta = "#d949d9";
|
||
|
cyan = "#31d6c8";
|
||
|
white = "#d6d6d6";
|
||
|
};
|
||
|
|
||
|
bright = {
|
||
|
black = "#5c5c5c";
|
||
|
red = "#ff5353";
|
||
|
green = "#62ec75";
|
||
|
yellow = "#ffea2e";
|
||
|
blue = "#56c7ff";
|
||
|
magenta = "#fd5cff";
|
||
|
cyan = "#55f2ea";
|
||
|
white = "#ffffff";
|
||
|
};
|
||
|
|
||
|
borders = normal.red;
|
||
|
}
|