cleaning up some monitor related stuff
This commit is contained in:
parent
5da6515a4c
commit
2c58c6936d
4 changed files with 342 additions and 27 deletions
48
overlays/theme.nix
Normal file
48
overlays/theme.nix
Normal file
|
@ -0,0 +1,48 @@
|
|||
self: super:
|
||||
with super.lib.nix-rice;
|
||||
let theme = kitty-themes.getThemeByName "DimmedMonokai";
|
||||
in {
|
||||
rice = {
|
||||
colorPalette = rec {
|
||||
normal = palette.defaultPalette // {
|
||||
black = theme.color0;
|
||||
red = theme.color1;
|
||||
green = theme.color2;
|
||||
yellow = theme.color3;
|
||||
blue = theme.color4;
|
||||
magenta = theme.color5;
|
||||
cyan = theme.color6;
|
||||
white = theme.color7;
|
||||
};
|
||||
bright = palette.brighten 10 normal // {
|
||||
black = theme.color8;
|
||||
red = theme.color9;
|
||||
green = theme.color10;
|
||||
yellow = theme.color11;
|
||||
blue = theme.color12;
|
||||
magenta = theme.color13;
|
||||
cyan = theme.color14;
|
||||
white = theme.color15;
|
||||
};
|
||||
dark = palette.darken 10 normal;
|
||||
primary = {
|
||||
inherit (theme) background foreground;
|
||||
bright_foreground = color.brighten 10 theme.foreground;
|
||||
dim_foreground = color.darken 10 theme.foreground;
|
||||
};
|
||||
} // theme;
|
||||
font = {
|
||||
normal = {
|
||||
name = "Cantarell";
|
||||
package = self.cantarell-fonts;
|
||||
size = 10;
|
||||
};
|
||||
monospace = {
|
||||
name = "FiraCode Nerd Font Mono";
|
||||
package = self.nerdfonts.override { fonts = [ "FiraCode" ]; };
|
||||
size = 10;
|
||||
};
|
||||
};
|
||||
opacity = 0.95;
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue