84 lines
1.3 KiB
CSS
84 lines
1.3 KiB
CSS
* {
|
|
font-family: "Iosevka Nerd Font", "Font Awesome 6 Free", "monospace";
|
|
font-size: 16px;
|
|
}
|
|
|
|
@define-color background #282828;
|
|
@define-color foreground #ebdbb2;
|
|
@define-color black #282828;
|
|
@define-color red #cc241d;
|
|
@define-color green #98971a;
|
|
@define-color yellow #d79921;
|
|
@define-color blue #458588;
|
|
@define-color magenta #b16286;
|
|
@define-color cyan #689d6a;
|
|
@define-color white #a89984;
|
|
@define-color aqua #689d6a;
|
|
@define-color orange #d65d0e;
|
|
|
|
window#waybar {
|
|
background-color: @background;
|
|
color: @foreground;
|
|
}
|
|
|
|
.modules-left {
|
|
background-color: @background;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
#custom-scratch {
|
|
background-color: @background;
|
|
color: #b8b8b8;
|
|
padding: 0px 9px 0px 9px;
|
|
}
|
|
|
|
#workspaces button {
|
|
border-radius: 0px;
|
|
color: @foreground;
|
|
}
|
|
|
|
#workspaces button.focused {
|
|
background-color: @orange;
|
|
color: @foreground;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background-color: @orange;
|
|
color: @foreground;
|
|
}
|
|
|
|
#mode {
|
|
background-color: @red;
|
|
color: @foreground;
|
|
padding: 0 10px;
|
|
}
|
|
|
|
#scratchpad,
|
|
#tray,
|
|
#idle_inhibitor,
|
|
#network,
|
|
#temperature,
|
|
#backlight,
|
|
#pulseaudio,
|
|
#battery,
|
|
#clock,
|
|
#tray,
|
|
#memory,
|
|
#cpu,
|
|
#power-profiles-daemon {
|
|
padding: 0 20px;
|
|
}
|
|
|
|
#battery.critical {
|
|
color: @red;
|
|
}
|
|
|
|
#battery.charging {
|
|
color: @green;
|
|
}
|
|
|
|
#network.disconnected {
|
|
color: @red;
|
|
}
|