52 lines
730 B
CSS
52 lines
730 B
CSS
/* Colors */
|
|
@define-color background #191e2a;
|
|
@define-color background-alt #202734;
|
|
@define-color foreground #cbccc6;
|
|
@define-color primary #ffa759;
|
|
|
|
window#waybar {
|
|
background: @background;
|
|
color: @foreground;
|
|
font-family: Iosevka, "Fira Code";
|
|
font-size: 14px;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: @foreground;
|
|
border-radius: 0;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
background: @background-alt;
|
|
color: @primary;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background: @primary;
|
|
}
|
|
|
|
#mode {
|
|
margin-left: 10px;
|
|
color: @primary;
|
|
}
|
|
|
|
#window {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#network {
|
|
font-family: "Font Awesome 6 Free Solid";
|
|
}
|
|
|
|
#tray,
|
|
#pulseaudio,
|
|
#language,
|
|
#network,
|
|
#clock {
|
|
margin: 8px;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: @primary;
|
|
}
|