dotfiles/waybar/style.css

130 lines
1.9 KiB
CSS

* {
all: initial;
border: none;
border-radius: 0;
min-height: 20px;
font-family: "Symbols Nerd Font", monospace;
}
#waybar {
background-color: transparent;
}
#waybar.hidden {
opacity: 0.2;
}
tooltip {
background-color: #383c4a;
border-radius: 10px;
}
tooltip label {
color: white;
}
#custom-pacman,
#custom-recorder,
#mode,
#clock,
#battery,
#pulseaudio,
#disk,
#privacy,
#memory,
#bluetooth,
#network,
#backlight {
transition: none;
border-radius: 10px;
background-color: #383c4a;
color: #ffffff;
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 8px;
margin-right: 4px;
margin-left: 4px;
}
#workspaces {
transition: none;
border-radius: 10px;
background-color: #383c4a;
color: #7c818c;
margin-right: 4px;
margin-left: 4px;
}
#workspaces button {
padding-top: 4px;
padding-bottom: 4px;
padding-left: 8px;
padding-right: 8px;
}
#workspaces button:hover {
border-radius: inherit;
background-color: #666768;
}
#bluetooth.connected,
#bluetooth.on {
background-color: #26a65b;
}
#bluetooth.disabled,
#bluetooth.off {
background-color: #f53c3c;
}
#idle_inhibitor.activated {
background-color: #26a65b;
}
#pulseaudio.muted,
#pulseaudio.source-muted {
background-color: #f53c3c;
color: white;
}
#battery.charging {
color: #ffffff;
background-color: #26a65b;
}
#battery.warning:not(.charging) {
background-color: #ffbe61;
color: black;
}
#battery.critical:not(.charging) {
background-color: #383c4a;
color: #ffffff;
animation-name: redblink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#network.wifi,
#network.ethener {
background-color: #26a65b;
}
#network.disabled,
#network.disconnected {
background-color: #f53c3c;
}
@keyframes redblink {
to {
background-color: #f53c3c;
}
}
#custom-recorder {
background-color: #26a65b;
}