kitty-themes based rice

This commit is contained in:
Filippo Berto 2022-12-31 00:14:35 +01:00
parent a0d460ca40
commit bd43302fd8
No known key found for this signature in database
GPG key ID: FE98AE5EC52B1056
6 changed files with 196 additions and 67 deletions

View file

@ -33,20 +33,20 @@ let
palette.toARGBHex rec {
normal = {
foreground = colorPalette.normal.white;
background = color.setAlphaRgba alpha colorPalette.normal.black;
underline = colorPalette.dark.blue;
foreground = color.darken 10 colorPalette.foreground;
background = color.setAlphaRgba alpha colorPalette.background;
underline = colorPalette.normal.blue;
};
active = {
foreground = colorPalette.bright.white;
background = color.setAlphaRgba alpha colorPalette.normal.black;
inherit (colorPalette) foreground;
background = color.setAlphaRgba alpha colorPalette.background;
underline = colorPalette.normal.yellow;
};
selected = {
foreground = colorPalette.bright.white;
background = color.setAlphaRgba alpha (color.brighten 10 colorPalette.bright.black);
inherit (colorPalette) foreground;
background = color.setAlphaRgba alpha colorPalette.background;
underline = colorPalette.bright.red;
};
@ -193,12 +193,12 @@ in
};
in
{
focused = recursiveUpdate colors.selected common;
occupied = recursiveUpdate colors.active common;
urgent = recursiveUpdate (recursiveUpdate colors.active common) {
focused = recursiveUpdate common colors.selected;
occupied = recursiveUpdate common colors.active;
urgent = recursiveUpdate (recursiveUpdate common colors.active) {
background = colors.alert;
};
empty = recursiveUpdate (recursiveUpdate colors.normal common) {
empty = recursiveUpdate (recursiveUpdate common colors.normal) {
# text = "⏺";
padding = 1;
};