53 lines
827 B
CSS
53 lines
827 B
CSS
|
* {
|
||
|
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 */
|
||
|
#clock, #cpu, #memory, #battery, #pulseaudio, #tray {
|
||
|
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;
|
||
|
}
|