Update .config/waybar/style.css

This commit is contained in:
Yarne Coppens 2026-02-05 19:45:46 +01:00
parent ac7fe4796d
commit b45568aa71

View file

@ -5,13 +5,14 @@
font-size: 14px; font-size: 14px;
} }
@define-color background_color #233142; @define-color primary_color rgba(0,0,0,0);
@define-color module_container_color #455d7a; @define-color secondary_color #393e46;
@define-color text_color #f95959; @define-color tertiary_color deepskyblue;
@define-color quaternary_color #eeeeee;
window#waybar { window#waybar {
background-color: @background_color; background-color: @primary_color;
color: @text_color; color: @tertiary_color;
transition-property: background-color; transition-property: background-color;
transition-duration: .5s; transition-duration: .5s;
} }
@ -61,7 +62,7 @@ button:hover {
.modules-center, .modules-center,
.modules-right .modules-right
{ {
background: @module_container_color; background: @secondary_color;
margin: 4px 10px; margin: 4px 10px;
padding: 0 10px; padding: 0 10px;
border-radius: 15px; border-radius: 15px;
@ -145,7 +146,7 @@ button:hover {
} }
#cava { #cava {
color: @text_color; color: @quaternary_color;
opacity: 0.3; opacity: 0.3;
} }