unifying colour schemes and etc
This commit is contained in:
parent
37fcd7955c
commit
4641e137e9
39 changed files with 10635 additions and 17 deletions
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue