dotfiles/.config/waybar/style.css
2020-12-23 21:37:36 +01:00

107 lines
1.6 KiB
CSS

* {
border: none;
border-radius: 0;
font-family: monospace;
font-size: 14px;
min-height: 0;
}
window#waybar {
background: #3b4252;
color: white;
}
#workspaces {
background-color: #4c566a;
margin: 5px;
margin-left: 10px;
border-radius: 5px;
}
#workspaces button {
padding: 0 10px;
color: #eceff4;
}
#workspaces button.focused {
color: #2e3440;
background-color: #88c0d0;
border-radius: 5px;
}
#workspaces button:hover {
background-color: #5e81ac;
border-radius: 5px;
}
#custom-headset, #cpu, #memory, #backlight, #clock, #battery, #pulseaudio, #network {
background-color: #4c566a;
padding: 0px 10px;
margin: 5px 0px;
}
#custom-date {
color: #8fbcbb;
}
#custom-power {
color: #2e3440;
background-color: #bf616a;
border-radius: 5px;
margin-right: 10px;
margin-top: 5px;
margin-bottom: 5px;
margin-left: 0px;
padding: 0px 10px;
}
#clock {
color: #b48ead;
border-radius: 0px 5px 5px 0px;
margin-right: 10px;
}
#battery {
color: #a3be8c;
}
@keyframes blink {
to {
background-color: #ffffff;
color: black;
}
}
#battery.charging {
color: #a3be8c;
}
#battery.critical:not(.charging) {
background-color: #f53c3c;
color: #ffffff;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#network {
color: #d08770;
}
#pulseaudio {
color: #ebcb8b;
border-radius: 5px 0px 0px 5px;
}
#idle_inhibitor {
background-color: #4c566a;
border-radius: 5px ;
margin: 5px;
padding: 0 10px;
}
#tray {
margin-right: 10px;
}