This repository has been archived on 2022-05-11. You can view files and clone it, but cannot push or open issues or pull requests.
misc/.config/waybar/style.css

130 lines
1.9 KiB
CSS

* {
border: none;
font-family: Iosevka Nerd Font, sans-serif;
font-size: 13px;
}
window#waybar {
/* background-color: rgba(18, 21, 29, 0.98); */
background-color: #161320;
/* background-color: rgba(0, 0, 0, 0); */
border-bottom: 3px solid #1A1826;
color: #D9E0EE;
transition-property: background-color;
transition-duration: .5s;
}
window#waybar.hidden {
opacity: 0.2;
}
#workspaces,
#mode,
#cpu,
#memory,
#temperature,
#custom-media,
#custom-fans,
#clock,
#idle_inhibitor,
#language,
#pulseaudio,
#backlight,
#battery,
#network,
#tray {
background-color: #1E1E2E;
padding: 0 10px;
margin: 2px 4px 5px 4px;
border: 3px solid rgba(0, 0, 0, 0);
border-radius: 90px;
background-clip: padding-box;
}
#workspaces button {
padding: 0 5px;
min-width: 20px;
color: #575268;
}
#workspaces button:hover {
background-color: rgba(0, 0, 0, 0.2)
}
#workspaces button.focused {
color: #F2CDCD;
}
#workspaces button.urgent {
color: #F28FAD;
}
#cpu {
color: #FAE3B0;
}
#memory {
color: #F5C2E7;
}
#temperature {
color: #F8BD96;
}
#temperature.critical {
background-color: #F28FAD;
color: #1A1826;
}
#clock {
color: #D9E0EE;
}
#pulseaudio {
color: #B5E8E0;
}
#pulseaudio.muted {
background-color: #E8A2AF;
color: #1e222a;
}
#backlight {
color: #89DCEB;
}
#battery {
color: #ABE9B3;
}
#battery.charging, #battery.plugged {
background-color: #ABE9B3;
color: #1e222a;
}
@keyframes blink {
to {
background-color: #1e222a;
color: #F28FAD;
}
}
#battery.critical:not(.charging) {
background-color: #F28FAD;
color: #1e222a;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
#network {
color: #DDB6F2;
}
#network.disconnected {
background-color: #F28FAD;
color: #1e222a;
}