109 lines
2.0 KiB
CSS
109 lines
2.0 KiB
CSS
@define-color base #1e1e2e;
|
|
@define-color mantle #181825;
|
|
@define-color crust #11111b;
|
|
|
|
@define-color text #cdd6f4;
|
|
@define-color subtext0 #a6adc8;
|
|
@define-color subtext1 #bac2de;
|
|
|
|
@define-color surface0 #313244;
|
|
@define-color surface1 #45475a;
|
|
@define-color surface2 #585b70;
|
|
|
|
@define-color overlay0 #6c7086;
|
|
@define-color overlay1 #7f849c;
|
|
@define-color overlay2 #9399b2;
|
|
|
|
@define-color blue #89b4fa;
|
|
@define-color lavender #b4befe;
|
|
@define-color sapphire #74c7ec;
|
|
@define-color sky #89dceb;
|
|
@define-color teal #94e2d5;
|
|
@define-color green #a6e3a1;
|
|
@define-color yellow #f9e2af;
|
|
@define-color peach #fab387;
|
|
@define-color maroon #eba0ac;
|
|
@define-color red #f38ba8;
|
|
@define-color mauve #cba6f7;
|
|
@define-color pink #f5c2e7;
|
|
@define-color flamingo #f2cdcd;
|
|
@define-color rosewater #f5e0dc;
|
|
|
|
* {
|
|
font-family: ZedMonoNerdFont;
|
|
font-size: 12px;
|
|
}
|
|
|
|
window > box {
|
|
margin: 4px 4px 4px 0px;
|
|
}
|
|
|
|
window#waybar {
|
|
background: shade(alpha(@base, 0.0), 0);/*.95);*/
|
|
border-radius: 3px;
|
|
}
|
|
|
|
/* Modules */
|
|
|
|
#workspaces, #clock, #battery, #cpu, #memory, #disk, #temperature, #backlight, #network, #pulseaudio, #custom-media, #custom-launcher, #custom-power, #tray, #mode, #idle_inhibitor , #mpd, #mpris, #custom-aggietimed {
|
|
background: @base;
|
|
border-radius: 8px;
|
|
border: 2px solid @text;
|
|
margin-right: 5px;
|
|
margin-left: 5px;
|
|
padding-left: 5px;
|
|
padding-right: 5px;
|
|
color: @text;
|
|
}
|
|
|
|
#workspaces {
|
|
background: @mantle;
|
|
padding: 2px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
#workspaces button {
|
|
color: @text;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
background: @green;
|
|
color: @mantle;
|
|
}
|
|
|
|
#battery {
|
|
background-color: @teal;
|
|
color: @mantle;
|
|
}
|
|
|
|
#battery.charging, #battery.plugged {
|
|
background-color: @green;
|
|
}
|
|
|
|
#network {
|
|
background-color: @sky;
|
|
color: @mantle;
|
|
}
|
|
|
|
#network.disconnected {
|
|
background-color: @red;
|
|
}
|
|
|
|
#temperature {
|
|
background-color: @sky;
|
|
color: @mantle;
|
|
}
|
|
|
|
#temperature.critical {
|
|
background-color: @red;
|
|
color: @mantle;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
background-color: @red;
|
|
}
|
|
|
|
tooltip {
|
|
background: @mantle;
|
|
}
|