60 lines
984 B
CSS
60 lines
984 B
CSS
/* Colors */
|
|
@define-color background #191e2a;
|
|
@define-color background-alt #202734;
|
|
@define-color primary #ffa759;
|
|
@define-color primary-1 #ffa759;
|
|
@define-color primary-2 #ffad65;
|
|
@define-color primary-3 #ffb371;
|
|
@define-color primary-4 #ffba7c;
|
|
@define-color primary-5 #ffc088;
|
|
|
|
window#waybar {
|
|
background: @background;
|
|
color: #cbccc6;
|
|
font-family: "Fira Code", "Font Awesome 5 Free Solid";
|
|
font-size: 13px;
|
|
}
|
|
|
|
#workspaces {
|
|
background: @background-alt;
|
|
margin: 10px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: #fff;
|
|
background: transparent;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
color: @primary;
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background: @primary;
|
|
}
|
|
|
|
#mode {
|
|
color: @primary;
|
|
}
|
|
|
|
#custom-dnd,
|
|
#custom-player,
|
|
#custom-weather,
|
|
#custom-pacman-updates,
|
|
#clock,
|
|
#network,
|
|
#language,
|
|
#pulseaudio,
|
|
#tray,
|
|
#custom-power-menu {
|
|
background: @background-alt;
|
|
margin: 10px;
|
|
padding: 7px 10px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: @primary;
|
|
}
|