config/modules/rice/rio.nix

59 lines
1.3 KiB
Nix

{
programs.rio = {
enable = true;
settings = {
colors = {
background = "#191724";
foreground = "#e0def4";
selection-background = "#e0def4";
selection-foreground = "#191724";
cursor = "#e0def4";
black = "#26233a";
red = "#eb6f92";
green = "#9ccfd8";
yellow = "#f6c177";
blue = "#31748f";
magenta = "#c4a7e7";
cyan = "#ebbcba";
white = "#e0def4";
light_black = "#6e6a86";
light_red = "#eb6f92";
light_green = "#9ccfd8";
light_yellow = "#f6c177";
light_blue = "#31748f";
light_magenta = "#c4a7e7";
light_cyan = "#ebbcba";
light_white = "#e0def4";
};
fonts = {
size = 14;
regular = {
family = "Iosevka";
style = "normal";
weight = 500;
};
bold = {
family = "Iosevka";
style = "normal";
weight = 600;
};
italic = {
family = "Iosevka";
style = "italic";
weight = 500;
};
bold-italic = {
family = "Iosevka";
style = "italic";
weight = 600;
};
};
window = {
background-opacity = 0.65;
};
};
};
}