44 lines
758 B
CSS
44 lines
758 B
CSS
@define-color foreground #eff0f1;
|
|||
|
|
@define-color foreground-inactive #7f8c8d;
|
||
|
|
@define-color background #232629;
|
||
|
|
@define-color background-alt #31363b;
|
||
|
|
|
||
|
|
* {
|
||
|
|
font-family: UbuntuMono Nerd Font;
|
||
|
|
font-size: 16px;
|
||
|
|
padding: 0;
|
||
|
|
margin: 0;
|
||
|
|
}
|
||
|
|
|
||
|
|
#waybar {
|
||
|
|
color: @foreground;
|
||
|
|
background-color: @background;
|
||
|
|
}
|
||
|
|
|
||
|
|
#workspaces button {
|
||
|
|
color: @foreground-inactive;
|
||
|
|
padding-left: 2px;
|
||
|
|
padding-right: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#workspaces button.active {
|
||
|
|
color: @foreground;
|
||
|
|
background-color: @background-alt;
|
||
|
|
border-radius: 2px;
|
||
|
|
}
|
||
|
|
|
||
|
|
#wireplumber,
|
||
|
|
#bat,
|
||
|
|
#net {
|
||
|
|
background-color: @background-alt;
|
||
|
|
border-radius: 3px;
|
||
|
|
padding-left: 0.5em;
|
||
|
|
padding-right: 0.5em;
|
||
|
|
margin-left: 0.3em;
|
||
|
|
}
|
||
|
|
|
||
|
|
#battery,
|
||
|
|
#network {
|
||
|
|
margin-right: 0.8em;
|
||
|
|
}
|