Files
config/.config/waybar/style.css
2025-07-22 16:18:19 +01:00

129 lines
1.9 KiB
CSS

* {
border: none;
padding: 0;
margin: 0;
font-size: 14px;
font-family: "FiraMono Nerd Font" ;
min-height: 24px;
}
window#waybar {
background: transparent;
margin: 0px 0px;
}
#custom-logo {
padding: 0 10px;
color: #89b4fa;
}
.modules-right {
padding-left: 5px;
border-radius: 15px 0 0 15px;
margin-top: 0px;
background: #000000;
}
.modules-center {
padding: 0 15px;
margin-top: 0px;
border-radius: 15px 15px 15px 15px;
background: #000000;
}
.modules-left {
border-radius: 0 15px 15px 0;
margin-top: 0px;
background: #000000;
}
#battery,
#custom-clipboard,
#custom-colorpicker,
#custom-powerDraw,
#bluetooth,
#pulseaudio,
#network {
color: #f38ba8;
}
#cpu {
color: #fab387;
}
#memory {
color: #f9e2af;
}
#disk {
color: #a6e3a1;
}
#backlight,
#temperature,
#custom-weather,
#idle_inhibitor,
#jack,
#tray,
#window {
color: #cdd6f4;
}
#workspaces button {
color: #b4befe;
border-radius: 15px;
padding: 0 5px;
box-shadow: none;
}
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
background-color: #313244;
color: #6c7086;
}
#workspaces button.active {
background-color: #cba6f7;
color: #313244;
}
#clock {
padding: 0 5px;
}
#pulseaudio {
padding-top: 0px;
}
#temperature.critical,
#pulseaudio.muted {
color: #FF0000;
padding-top: 0;
}
#clock{
color: #74c7ec;
}
#battery.charging {
color: #ffffff;
background-color: #26A65B;
}
#battery.warning:not(.charging) {
background-color: #ffbe61;
color: black;
}
#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;
}
@keyframes blink {
to {
background-color: #ffffff;
color: #000000;
}
}