Homer : Style with stylix.

This commit is contained in:
Dmitry Voronin 2024-08-20 17:00:38 +03:00
parent 248bcfb988
commit 2c87fb6659
Signed by: voronind
SSH key fingerprint: SHA256:3kBb4iV2ahufEBNq+vFbUe4QYfHt98DHQjN7QaptY9k

View file

@ -21,19 +21,21 @@
theme = "default"; theme = "default";
colors = let colors = let
colors = { colors = let
background = "#1b1b1b"; cfg = config.style.color;
card-background = "#2b2b2b"; in {
card-shadow = "#2b2b2b"; background = "#${cfg.bg.dark}";
highlight-hover = "#003006"; card-background = "#${cfg.bg.regular}";
highlight-primary = "#004016"; card-shadow = "#${cfg.bg.regular}";
highlight-secondary = "#004016"; highlight-hover = "#${cfg.accent}";
link = "#666666"; highlight-primary = "#${cfg.bg.regular}";
link-hover = "#ffdd57"; highlight-secondary = "#${cfg.bg.dark}";
text = "#eaeaea"; link = "#${cfg.link}";
text-header = "#ffffff"; link-hover = "#${cfg.accent}";
text-subtitle = "#f5f5f5"; text = "#${cfg.fg.regular}";
text-title = "#fafafa"; text-header = "#${cfg.fg.regular}";
text-subtitle = "#${cfg.fg.light}";
text-title = "#${cfg.fg.light}";
}; };
in { in {
light = colors; light = colors;