59 lines
761 B
CSS
59 lines
761 B
CSS
@define-color light #FFF;
|
|
@define-color dark #333;
|
|
|
|
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
#waybar {
|
|
background: #000;
|
|
color: @light;
|
|
font-family: "Ubuntu Mono";
|
|
font-size: 14px;
|
|
}
|
|
|
|
#workspaces {
|
|
padding: 0 8px 0 8px;
|
|
background: @light;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: #000;
|
|
}
|
|
|
|
#window {
|
|
background: @dark;
|
|
padding: 0 8px 0 8px;
|
|
}
|
|
|
|
#clock.date {
|
|
padding: 0 8px 0 8px;
|
|
background: @dark;
|
|
color: @light;
|
|
}
|
|
|
|
#clock.time {
|
|
padding: 0 8px 0 8px;
|
|
background: @light;
|
|
color: #000;
|
|
}
|
|
|
|
#custom-left-arrow-dark,
|
|
#custom-right-arrow-dark {
|
|
color: @dark;
|
|
}
|
|
|
|
#custom-left-arrow-light,
|
|
#custom-right-arrow-light {
|
|
color: @light;
|
|
background: @dark;
|
|
}
|
|
|
|
#pulseaudio {
|
|
padding: 0 8px 0 0px;
|
|
}
|