non important commit

This commit is contained in:
benstrb 2026-01-31 11:28:09 +01:00
parent 665e4b0b9d
commit b991122643

View file

@ -22,40 +22,90 @@
"clock" = { "clock" = {
interval = 1; interval = 1;
format = "{:%H:%M} "; format = "{:%H:%M:%S} ";
format-alt = "{:%d/%m/%Y %H:%M:%S}";
}; };
}; };
}; };
style = '' style = ''
/* Rose Pine Color Definitions */
@define-color base #191724;
@define-color subtle #908caa;
@define-color text #e0def4;
@define-color love #eb6f92;
@define-color gold #f6c177;
/* Global Settings */
* { * {
font-family: monospace; font-family: 'JetBrainsMono Nerd Font';
font-size: 13px; font-size: 12px;
font-weight: bold;
min-height: 0px;
} }
/* Waybar */
window#waybar { window#waybar {
background-color: #1e1e2e; background-color: transparent;
color: #cdd6f4; transition-property: background-color;
transition-duration: .5s;
}
/* Workspaces */
#workspaces {
background-color: @base;
border-radius: 8px;
border: 1px solid alpha(@text, 0.15);
} }
#workspaces button { #workspaces button {
padding: 0 8px; padding: 3px;
color: #cdd6f4; border-radius: 2px;
background-color: transparent; background-color: transparent;
color: @text;
opacity: 1;
} }
#workspaces button.active { #workspaces button.active {
background-color: #89b4fa; color: @love;
color: #1e1e2e; opacity: 1;
} }
#workspaces button:hover { #workspaces button.empty {
background-color: #313244; color: alpha(@text, 0.4);
opacity: 0.45;
transition: all 0.15s ease-in-out;
} }
#workspaces button.empty.active {
color: @love;
}
/* Clock */
#clock { #clock {
padding: 0 10px; background-color: @base;
color: #cdd6f4; border-radius: 8px;
border: 1px solid alpha(@text, 0.15);
color: @gold;
min-width: 16px;
margin: 1px 3px 1px 3px;
padding-left: 6px;
padding-right: 6px;
}
/* Tooltip */
tooltip {
opacity: 1;
padding: 4px;
background-color: @base;
border: 1px solid alpha(@text, 0.15);
border-radius: 8px;
font-size: 12px;
}
tooltip label {
color: @subtle;
font-weight: normal;
} }
''; '';
}; };