unifying colour schemes and etc

This commit is contained in:
Matt Nish-Lapidus 2025-02-08 18:49:54 -05:00
parent 37fcd7955c
commit 4641e137e9
39 changed files with 10635 additions and 17 deletions

View file

@ -1,22 +1,27 @@
self: super:
with super.pkgs.lib.nix-rice;
let theme = kitty-themes.getThemeByName "Monokai_Pro";
let theme = kitty-themes.getThemeByName "OneDark";
in {
rice = {
colorPalette = rec {
normal = palette.defaultPalette // {
background = {
a = 1.0;
r = 17;
g = 17;
b = 17;
r = 5;
g = 5;
b = 5;
};
black = theme.color0;
red = theme.color1;
green = theme.color2;
yellow = theme.color3;
blue = theme.color4;
magenta = theme.color5;
magenta = {
a = 1.0;
r = 198;
g = 120;
b = 221;
};
cyan = theme.color6;
white = theme.color7;
};
@ -50,5 +55,9 @@ in {
size = 12;
};
};
cursor = {
package = self.bibata-cursors;
name = "Bibata-Modern-Classic";
};
};
}