Files
dotfiles/.config/waybar/style.css
2024-07-28 11:21:57 +02:00

159 lines
2.1 KiB
CSS

* {
font-family: "Mono";
font-size: 9pt;
font-weight: 600;
margin: 0.2em 0 0.2em 0;
padding: 0;
}
#waybar {
background-color: transparent;
color: #ffffff;
}
#clock,
#battery,
#cpu,
#memory,
#disk,
#network,
#pulseaudio,
#wireplumber,
#custom-screenshot_t,
#tray,
#mode,
#idle_inhibitor,
#bluetooth,
#custom-hyprPicker,
#custom-power-menu,
#custom-power {
padding-right: 15px;
padding-left: 15px;
background-color: #1e1e1e;
}
.modules-right > widget:last-child > * {
border-top-right-radius: 15px;
border-bottom-right-radius: 15px;
}
.modules-right > widget:first-child > * {
border-top-left-radius: 15px;
border-bottom-left-radius: 15px;
}
.modules-left > widget > * {
border-radius: 20px;
margin-left: 0.2em;
margin-right: 0.2em;
}
#workspaces {
border-radius: 20px;
padding: 0px 10px;
background-color: #1e1e1e;
}
#workspaces button {
color: #7984a4;
background-color: transparent;
}
#workspaces button.focused {
background-color: transparent;
}
#workspace button.hover {
background-color: transparent;
}
#workspaces button.active {
color: #ffffff;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#cpu {
color: #fb958b;
}
#memory {
color: #ebcb8b;
}
#pulseaudio {
color: #629e67;
}
#clock {
color: #c8d2e0;
}
#battery {
color: #c0caf5;
}
#battery.charging,
#battery.full,
#battery.plugged {
color: #26a65b;
}
@keyframes blink {
to {
background-color: rgba(30, 34, 42, 0.5);
color: #abb2bf;
}
}
#battery.critical:not(.charging) {
color: #f53c3c;
animation-name: blink;
animation-duration: 0.5s;
animation-timing-function: linear;
animation-iteration-count: infinite;
animation-direction: alternate;
}
label:focus {
background-color: #000000;
}
#bluetooth {
color: #707d9d;
}
#network {
color: #b48ead;
}
#tray > .passive {
-gtk-icon-effect: dim;
}
#tray > .needs-attention {
-gtk-icon-effect: highlight;
background-color: #eb4d4b;
}
#idle_inhibitor.activated {
background-color: #ffffff;
color: #2d3436;
}