60 lines
908 B
CSS
60 lines
908 B
CSS
@define-color panel rgba(24, 26, 29, 0.76);
|
|
@define-color text #f0eee8;
|
|
@define-color muted #a8abb2;
|
|
@define-color accent #d4c5a5;
|
|
@define-color red #dc7a78;
|
|
|
|
* {
|
|
border: none;
|
|
border-radius: 0;
|
|
min-height: 0;
|
|
font-family: "Noto Sans CJK SC", "Noto Sans", "FontAwesome";
|
|
font-size: 13px;
|
|
font-weight: 500;
|
|
}
|
|
|
|
window#waybar {
|
|
background: @panel;
|
|
color: @text;
|
|
border: 1px solid rgba(255, 255, 255, 0.10);
|
|
border-radius: 10px;
|
|
}
|
|
|
|
#custom-launcher,
|
|
#tray,
|
|
#network,
|
|
#pulseaudio,
|
|
#battery,
|
|
#clock,
|
|
#custom-lock,
|
|
#custom-power {
|
|
padding: 0 10px;
|
|
color: @text;
|
|
}
|
|
|
|
#custom-launcher {
|
|
color: @accent;
|
|
font-size: 16px;
|
|
}
|
|
|
|
#network.disconnected,
|
|
#battery.critical {
|
|
color: @red;
|
|
}
|
|
|
|
#custom-lock,
|
|
#custom-power {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
#custom-power {
|
|
color: @red;
|
|
}
|
|
|
|
tooltip {
|
|
background: #202226;
|
|
color: @text;
|
|
border: 1px solid rgba(255, 255, 255, 0.12);
|
|
border-radius: 6px;
|
|
}
|