42 lines
734 B
CSS
Executable File
42 lines
734 B
CSS
Executable File
@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.sink,
|
|
#wireplumber.source,
|
|
#bat,
|
|
#net {
|
|
background-color: @background-alt;
|
|
border-radius: 3px;
|
|
padding-left: 0.5em;
|
|
padding-right: 0.5em;
|
|
}
|
|
|
|
#battery,
|
|
#network {}
|