fix(waybar): increased transparency value

This commit is contained in:
2025-07-22 18:28:38 +02:00
parent fbba63fbf7
commit 2884ae4978

View File

@@ -113,7 +113,7 @@ button:hover {
}
#custom-power {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#window {
@@ -121,21 +121,21 @@ button:hover {
}
#clock {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#battery {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
transition-property: background-color;
transition-duration: .5s;
}
#battery.charging, #battery.plugged {
background-color: alpha(#29ad60, 0.8);
background-color: alpha(#29ad60, 0.2);
}
#battery.warning:not(.charging){
background-color: alpha(#ffa000, 0.6);
background-color: alpha(#ffa000, 0.2);
}
@keyframes blink {
@@ -146,7 +146,7 @@ button:hover {
}
#battery.critical:not(.charging) {
background-color: alpha(#f53c3c, 0.8);
background-color: alpha(#f53c3c, 0.2);
color: #ffffff;
animation-name: blink;
animation-duration: 0.5s;
@@ -156,43 +156,43 @@ button:hover {
}
label:focus {
background-color: alpha(#000000, 0.6);
background-color: alpha(#000000, 0.2);
}
#cpu {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#memory {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#memory.warning {
background-color: alpha(#ffa000, 0.6);
background-color: alpha(#ffa000, 0.2);
}
#memory.critical {
background-color: alpha(#f53c3c, 0.6);
background-color: alpha(#f53c3c, 0.2);
}
#disk {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#backlight {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#network {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#network.disconnected {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#pulseaudio {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#pulseaudio.muted {
@@ -222,17 +222,17 @@ label:focus {
}
#temperature {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
transition-property: background-color;
transition-duration: .5s;
}
#temperature.critical {
background-color: alpha(#eb4d4b, 0.6);
background-color: alpha(#eb4d4b, 0.2);
}
#tray {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
}
#tray > .passive {
@@ -245,13 +245,13 @@ label:focus {
}
#idle_inhibitor {
background-color: rgba(10, 10, 10, 0.6);
background-color: rgba(10, 10, 10, 0.2);
transition-property: background-color;
transition-duration: 1s;
}
#idle_inhibitor.activated {
background-color: alpha(#ecf0f1, 0.6);
background-color: alpha(#ecf0f1, 0.2);
color: rgb(10, 10, 10);
}