Waybar: fix calendar module colour to use base16 scheme

This commit is contained in:
Evie Litherland-Smith 2024-07-08 12:08:24 +01:00
parent 7533532e2f
commit 269e682651

View file

@ -169,12 +169,14 @@
weeks-pos = "left";
on-scroll = 1;
on-click-right = "mode";
format = {
months = "<span color='#ffead3'><b>{}</b></span>";
days = "<span color='#ecc6d9'><b>{}</b></span>";
weeks = "<span color='#99ffdd'><b>W{}</b></span>";
weekdays = "<span color='#ffcc66'><b>{}</b></span>";
today = "<span color='#ff6699'><b><u>{}</u></b></span>";
format = let
sc = config.scheme.withHashtag;
in {
months = "<span color='${sc.red}'><b>{}</b></span>";
weeks = "<span color='${sc.cyan}'><b>W{}</b></span>";
weekdays = "<span color='${sc.orange}'><b>{}</b></span>";
days = "<span color='${sc.base05}'><b>{}</b></span>";
today = "<span color='${sc.${accentColourName}}'><b><u>{}</u></b></span>";
};
};
actions = {