57 lines
934 B
CSS
57 lines
934 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: "Font Awesome 5 Free Solid", Iosevka, "Fira Code";
|
|
font-size: 14px;
|
|
}
|
|
|
|
#workspaces {
|
|
/* background: @background-alt; */
|
|
/* margin: 10px; */
|
|
/* border-radius: 8px; */
|
|
}
|
|
|
|
#workspaces button {
|
|
background: transparent;
|
|
border-radius: 0;
|
|
font-size: 0.9rem;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
background: @background-alt;
|
|
color: @primary;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background: @primary;
|
|
}
|
|
|
|
#mode {
|
|
margin-left: 10px;
|
|
color: @primary;
|
|
}
|
|
|
|
#tray,
|
|
#custom-weather,
|
|
#custom-dnd,
|
|
#pulseaudio,
|
|
#language,
|
|
#network,
|
|
#clock,
|
|
#custom-power-menu {
|
|
/* background: @background-alt; */
|
|
margin: 8px;
|
|
/* padding: 7px; */
|
|
/* border-radius: 8px; */
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: @primary;
|
|
}
|