2025-02-07 09:31:51 -05:00
|
|
|
self: super:
|
2025-02-08 10:27:43 -05:00
|
|
|
with super.pkgs.lib.nix-rice;
|
2025-02-08 18:49:54 -05:00
|
|
|
let theme = kitty-themes.getThemeByName "OneDark";
|
2025-02-07 09:31:51 -05:00
|
|
|
in {
|
|
|
|
rice = {
|
|
|
|
colorPalette = rec {
|
|
|
|
normal = palette.defaultPalette // {
|
2025-02-08 10:27:43 -05:00
|
|
|
background = {
|
|
|
|
a = 1.0;
|
2025-03-18 11:20:39 -04:00
|
|
|
r = 0;
|
|
|
|
g = 0;
|
|
|
|
b = 0;
|
2025-02-08 10:27:43 -05:00
|
|
|
};
|
2025-02-07 09:31:51 -05:00
|
|
|
black = theme.color0;
|
|
|
|
red = theme.color1;
|
|
|
|
green = theme.color2;
|
|
|
|
yellow = theme.color3;
|
|
|
|
blue = theme.color4;
|
2025-02-08 18:49:54 -05:00
|
|
|
magenta = {
|
|
|
|
a = 1.0;
|
|
|
|
r = 198;
|
|
|
|
g = 120;
|
|
|
|
b = 221;
|
|
|
|
};
|
2025-02-07 09:31:51 -05:00
|
|
|
cyan = theme.color6;
|
|
|
|
white = theme.color7;
|
2025-02-08 23:50:39 -05:00
|
|
|
border = {
|
2025-03-18 11:20:39 -04:00
|
|
|
a = 0.75;
|
2025-02-08 23:50:39 -05:00
|
|
|
r = 198;
|
|
|
|
g = 120;
|
|
|
|
b = 221;
|
|
|
|
};
|
2025-02-07 09:31:51 -05:00
|
|
|
};
|
|
|
|
bright = palette.brighten 10 normal // {
|
2025-02-08 10:27:43 -05:00
|
|
|
background = {
|
|
|
|
a = 1.0;
|
2025-03-18 11:20:39 -04:00
|
|
|
r = 5;
|
|
|
|
g = 5;
|
|
|
|
b = 5;
|
2025-02-08 10:27:43 -05:00
|
|
|
};
|
2025-02-07 09:31:51 -05:00
|
|
|
black = theme.color8;
|
|
|
|
red = theme.color9;
|
|
|
|
green = theme.color10;
|
|
|
|
yellow = theme.color11;
|
|
|
|
blue = theme.color12;
|
2025-02-09 00:31:36 -05:00
|
|
|
magenta = {
|
|
|
|
a = 1.0;
|
|
|
|
r = 198;
|
|
|
|
g = 120;
|
|
|
|
b = 221;
|
|
|
|
};
|
2025-02-07 09:31:51 -05:00
|
|
|
cyan = theme.color14;
|
|
|
|
white = theme.color15;
|
|
|
|
};
|
|
|
|
dark = palette.darken 10 normal;
|
|
|
|
} // theme;
|
|
|
|
font = {
|
|
|
|
monospace = {
|
2025-02-08 10:27:43 -05:00
|
|
|
name = "JetBrainsMono Nerd Font";
|
|
|
|
package = self.nerdfonts.override { fonts = [ "Jetbrains-Mono" ]; };
|
|
|
|
size = 12;
|
|
|
|
};
|
|
|
|
normal = {
|
|
|
|
name = "JetBrainsMono Nerd Font";
|
|
|
|
package = self.nerdfonts.override { fonts = [ "Jetbrains-Mono" ]; };
|
|
|
|
size = 12;
|
2025-02-07 09:31:51 -05:00
|
|
|
};
|
|
|
|
};
|
2025-02-08 18:49:54 -05:00
|
|
|
cursor = {
|
2025-02-09 22:09:10 -05:00
|
|
|
package = super.pkgs.bibata-cursors;
|
2025-02-08 18:49:54 -05:00
|
|
|
name = "Bibata-Modern-Classic";
|
|
|
|
};
|
2025-02-12 15:48:17 -05:00
|
|
|
corner-radius = 8.0;
|
2025-03-18 11:20:39 -04:00
|
|
|
border-width = 2;
|
2025-02-07 09:31:51 -05:00
|
|
|
};
|
|
|
|
}
|