77 lines
1.4 KiB
CSS
77 lines
1.4 KiB
CSS
* {
|
|
all: unset;
|
|
font-family: "Iosevka Term", "Symbols Nerd Font";
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
padding-right: 1.5px;
|
|
padding-left: 1.5px;
|
|
background: transparent;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: #121218;
|
|
color: #e0e0e0;
|
|
border-radius: 12px;
|
|
margin: 8px; /* pull bar in so corners show properly */
|
|
padding: 4px; /* lil inner breathing room */
|
|
border: 1px solid #646496;
|
|
}
|
|
|
|
/* Workspaces */
|
|
#workspaces {
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: #5e6a86;
|
|
padding: 0 6px;
|
|
border-radius: 8px;
|
|
margin: 4px;
|
|
background: transparent;
|
|
border: none;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #ffffff;
|
|
background: rgba(100, 100, 150, 0.2);
|
|
border: 2px solid #4f4f78;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
color: #807fa0;
|
|
background: rgba(100, 100, 150, 0.1);
|
|
border: 1px dashed #646496;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
/* Modules */
|
|
#workspaces, #clock, #cpu, #battery, #pulseaudio, #tray {
|
|
background-color: rgba(20, 18, 22, 0.2);
|
|
margin: 6px;
|
|
padding: 2px 8px;
|
|
border-radius: 8px;
|
|
color: #b8b8d0;
|
|
border: 1px solid #30303E;
|
|
transition-duration: 120ms;
|
|
}
|
|
|
|
/* 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;
|
|
}
|
|
|