52 lines
750 B
CSS
52 lines
750 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 Nerd Font", "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;
|
|
}
|
|
|
|
/* left modules */
|
|
#mode,
|
|
#window,
|
|
#custom-player {
|
|
margin-left: 10px;
|
|
}
|
|
#mode {
|
|
color: @primary;
|
|
}
|
|
|
|
#tray,
|
|
#custom-pacman-packages,
|
|
#pulseaudio,
|
|
#language,
|
|
#network,
|
|
#upower,
|
|
#backlight,
|
|
#clock {
|
|
margin: 8px;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: @primary;
|
|
}
|