rice/theme.nix

54 lines
836 B
Nix
Raw Normal View History

2022-07-22 20:42:05 +00:00
{
light = false;
2022-07-22 20:42:05 +00:00
font = {
2023-03-06 12:29:29 +00:00
#family = "GoMono Nerd Font";
family = "APL386 Unicode";
2023-03-20 14:46:30 +00:00
size = 7;
2022-07-22 20:42:05 +00:00
};
primary = {
background = "#1f1f28";
foreground = "#dcd7ba";
2022-07-22 20:42:05 +00:00
};
cursor = {
background = "#2d4f67";
foreground = "#c8c093";
2022-07-22 20:42:05 +00:00
};
normal = {
black = "#090618";
red = "#c34043";
green = "#76946a";
yellow = "#c0a36e";
blue = "#7e9cd8";
magenta = "#957fb8";
cyan = "#6a9589";
white = "#c8c093";
2022-07-22 20:42:05 +00:00
};
bright = {
black = "#727169";
red = "#e82424";
green = "#98bb6c";
yellow = "#e6c384";
blue = "#7fb4ca";
magenta = "#938aa9";
cyan = "#7aa89f";
white = "#dcd7ba";
2022-07-22 20:42:05 +00:00
};
wm = {
focused = {
text = "#dcd7ba";
border = "#54546d";
2022-07-22 20:42:05 +00:00
};
unfocused = {
text = "#c8c093";
border = "#363646";
2022-07-22 20:42:05 +00:00
};
};
}