66 lines
886 B
CSS
66 lines
886 B
CSS
@import "mocha.css";
|
|
|
|
* {
|
|
font-family: "Inter", "Font Awesome 6 Free";
|
|
font-size: 1rem;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: @base;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#disk,
|
|
#temperature,
|
|
#backlight,
|
|
#network,
|
|
#pulseaudio,
|
|
#wireplumber,
|
|
#custom-media,
|
|
#tray,
|
|
#mode,
|
|
#idle_inhibitor,
|
|
#scratchpad,
|
|
#mpd {
|
|
padding: 0 0.5rem;
|
|
color: #ffffff;
|
|
}
|
|
|
|
#cpu {
|
|
color: @mauve;
|
|
}
|
|
|
|
#memory {
|
|
color: @peach;
|
|
}
|
|
|
|
#clock {
|
|
color: @red;
|
|
}
|
|
|
|
#window,
|
|
#workspaces {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
/* If workspaces is the leftmost module, omit left margin */
|
|
.modules-left > widget:first-child > #workspaces {
|
|
margin-left: 0;
|
|
}
|
|
|
|
/* If workspaces is the rightmost module, omit right margin */
|
|
.modules-right > widget:last-child > #workspaces {
|
|
margin-right: 0;
|
|
}
|
|
|
|
#workspaces button{
|
|
border-radius:0;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background-color: @surface0;
|
|
}
|