39 lines
No EOL
565 B
CSS
39 lines
No EOL
565 B
CSS
@define-color foreground #eeeeee;
|
|
@define-color foreground-inactive #aaaaaa;
|
|
@define-color background #000000;
|
|
|
|
* {
|
|
font-family: JetBrainsMono Nerd Font;
|
|
font-size: 17px;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#waybar {
|
|
color: @foreground;
|
|
background-color: @background;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: @foreground;
|
|
padding-right: .5em
|
|
}
|
|
|
|
#workspaces button.empty {
|
|
color: @foreground-inactive;
|
|
}
|
|
|
|
#memory,
|
|
#custom-platform-profile {
|
|
padding-left: 1em
|
|
}
|
|
|
|
#wireplumber,
|
|
#battery,
|
|
#idle_inhibitor,
|
|
#language,
|
|
#network,
|
|
#bluetooth,
|
|
#tray {
|
|
padding-right: 1em
|
|
} |