dotfiles/config/waybar/style.css

53 lines
818 B
CSS
Raw Normal View History

2025-06-29 21:22:43 +03:30
* {
all: unset;
font-family: "Iosevka Term", "Symbols Nerd Font";
font-size: 14px;
font-weight: 500;
}
window#waybar {
background-color: #121218;
color: #e0e0e0;
border-bottom: 1px solid #646496;
}
/* Workspaces */
#workspaces button {
color: #6e6a86;
padding: 0 6px;
}
#workspaces button.active {
color: #ffffff;
background: rgba(100, 100, 150, 0.2);
}
#workspaces button.urgent {
color: #eb6f92;
}
/* Modules */
2025-06-30 00:20:13 +03:30
#clock, #cpu, #battery, #pulseaudio, #tray {
2025-06-29 21:22:43 +03:30
padding: 0 8px;
margin: 0 2px;
}
/* Battery states */
#battery.warning {
color: #f6c177;
}
#battery.critical {
color: #eb6f92;
animation: blink 1s linear infinite;
}
@keyframes blink {
50% { opacity: 0; }
}
/* Pulseaudio muted state */
#pulseaudio.muted {
color: #6e6a86;
}