136 lines
2.0 KiB
CSS
136 lines
2.0 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 {
|
|
color: #94e2d5;
|
|
}
|
|
#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: #313244;
|
|
background-color: #74c7ec;
|
|
margin-left: 5px;
|
|
margin-right: 5px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
#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;
|
|
}
|
|
}
|