59 lines
837 B
CSS
59 lines
837 B
CSS
/*
|
|
* style.css
|
|
* Copyright (C) 2021 Vintage Salt
|
|
*
|
|
* Distributed under terms of the MIT license.
|
|
*/
|
|
|
|
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
font-family: IBM Plex Sans Medium;
|
|
font-size: 13px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: @theme_base_color;
|
|
border-bottom: 4px solid #32302f;
|
|
}
|
|
|
|
/* swaywm stuff */
|
|
#workspaces {
|
|
padding: 0 6px;
|
|
}
|
|
#workspaces button {
|
|
background: transparent;
|
|
padding: 0 0.9em;
|
|
}
|
|
#workspaces button.focused {
|
|
background: #83a598;
|
|
color: @theme_base_color;
|
|
}
|
|
#mode {
|
|
background: #fb4934;
|
|
color: @theme_base_color;
|
|
padding: 0 1em;
|
|
}
|
|
|
|
/* widgets */
|
|
#pulseaudio {
|
|
padding: 0 1em;
|
|
}
|
|
#battery {
|
|
padding: 0 1em;
|
|
font-size: 16px;
|
|
}
|
|
#battery.charging {
|
|
color: #b8bb26;
|
|
}
|
|
#battery.warning {
|
|
color: #fabd2f;
|
|
}
|
|
#battery.criticcal {
|
|
color: #fb4934;
|
|
}
|
|
#clock {
|
|
border-left: 1px solid #32302f;
|
|
padding: 0 1em;
|
|
}
|