This commit is contained in:
Matt Nish-Lapidus 2025-03-18 11:20:39 -04:00
parent f7777a492b
commit 5e59a054e5
2 changed files with 19 additions and 15 deletions

View file

@ -71,13 +71,13 @@ in
width = 2560; width = 2560;
height = 1600; height = 1600;
}; };
background-color = "#000000"; background-color = strPalette.normal.background;
scale = 1; scale = 1;
variable-refresh-rate = true; variable-refresh-rate = true;
}; };
"HDMI-A-1" = { "HDMI-A-1" = {
background-color = "#000000"; background-color = strPalette.normal.background;
scale = 1; scale = 1;
}; };
@ -86,7 +86,7 @@ in
width = 3840; width = 3840;
height = 2160; height = 2160;
}; };
background-color = "#000000"; background-color = strPalette.normal.background;
scale = 1; scale = 1;
}; };
}; };
@ -130,10 +130,9 @@ in
focus-ring = { focus-ring = {
enable = true; enable = true;
active.color = active.color = with pkgs.rice.colorPalette.normal.border;
with pkgs.rice.colorPalette.normal.border;
"rgba(${toString r} ${toString g} ${toString b} ${toString a})"; "rgba(${toString r} ${toString g} ${toString b} ${toString a})";
width = 2; width = pkgs.rice.border-width;
}; };
border = { border = {
@ -141,13 +140,17 @@ in
inactive = { inactive = {
gradient = { gradient = {
from = "#333333"; from = "#333333";
to = "#000000"; to = "#111111";
angle = 180; angle = 180;
in' = "srgb-linear"; in' = "srgb-linear";
}; };
}; };
active.color = "#000"; active.color = "#000";
width = 2; width = pkgs.rice.border-width + 1;
};
shadow = {
enable = true;
}; };
}; };

View file

@ -7,9 +7,9 @@ in {
normal = palette.defaultPalette // { normal = palette.defaultPalette // {
background = { background = {
a = 1.0; a = 1.0;
r = 5; r = 0;
g = 5; g = 0;
b = 5; b = 0;
}; };
black = theme.color0; black = theme.color0;
red = theme.color1; red = theme.color1;
@ -25,7 +25,7 @@ in {
cyan = theme.color6; cyan = theme.color6;
white = theme.color7; white = theme.color7;
border = { border = {
a = 0.5; a = 0.75;
r = 198; r = 198;
g = 120; g = 120;
b = 221; b = 221;
@ -34,9 +34,9 @@ in {
bright = palette.brighten 10 normal // { bright = palette.brighten 10 normal // {
background = { background = {
a = 1.0; a = 1.0;
r = 17; r = 5;
g = 17; g = 5;
b = 17; b = 5;
}; };
black = theme.color8; black = theme.color8;
red = theme.color9; red = theme.color9;
@ -71,5 +71,6 @@ in {
name = "Bibata-Modern-Classic"; name = "Bibata-Modern-Classic";
}; };
corner-radius = 8.0; corner-radius = 8.0;
border-width = 2;
}; };
} }