fix calendar colours to use stylix theme

This commit is contained in:
Gabriella Bere 2025-04-30 21:52:21 +01:00
parent 25d5844850
commit 913d96b5f7

View file

@ -1,10 +1,4 @@
{
config,
pkgs,
lib,
inputs,
...
}: {
{config, ...}: {
programs.waybar = {
enable = true;
systemd.enable = true; # using these instead of exec-once beacuse SOME packages (swaync) dont let you disable them
@ -32,10 +26,9 @@
"calendar" = {
"mode" = "month";
"format" = {
"months" = "<span color='#ff6699'><b>{}</b></span>";
"days" = "<span color='#cdd6f4'><b>{}</b></span>";
"weekdays" = "<span color='#7CD37C'><b>{}</b></span>";
"today" = "<span color='#ffcc66'><b>{}</b></span>";
"months" = "<span color='#${config.lib.stylix.colors.base0E}'><b>{}</b></span>";
"weekdays" = "<span color='#${config.lib.stylix.colors.base08}'><b>{}</b></span>";
"today" = "<span color='#${config.lib.stylix.colors.base09}'><b>{}</b></span>";
};
};
};