94 lines
1.6 KiB
CSS
94 lines
1.6 KiB
CSS
@define-color base #191724;
|
|
@define-color surface #1f1d2e;
|
|
@define-color overlay #26233a;
|
|
|
|
@define-color muted #6e6a86;
|
|
@define-color subtle #908caa;
|
|
@define-color text #e0def4;
|
|
|
|
@define-color love #eb6f92;
|
|
@define-color gold #f6c177;
|
|
@define-color rose #ebbcba;
|
|
@define-color pine #31748f;
|
|
@define-color foam #9ccfd8;
|
|
@define-color iris #c4a7e7;
|
|
|
|
@define-color highlightLow #21202e;
|
|
@define-color highlightMed #403d52;
|
|
@define-color highlightHigh #524f67;
|
|
|
|
* {
|
|
font-size: 13px;
|
|
min-height: 0;
|
|
font-family: "Iosevka Nerd Font Mono";
|
|
}
|
|
window#waybar {
|
|
all: unset;
|
|
}
|
|
.modules-left,
|
|
.modules-center,
|
|
.modules-right {
|
|
background: transparent;
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
tooltip {
|
|
background: @base;
|
|
color: @text;
|
|
}
|
|
#clock,
|
|
#bluetooth,
|
|
#network,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#temperature,
|
|
#tray,
|
|
#pulseaudio,
|
|
#window,
|
|
#workspaces {
|
|
border-radius: 8px;
|
|
background: alpha(@base, 0.75);
|
|
box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.75);
|
|
color: @text;
|
|
padding: 2px 8px;
|
|
margin: 3px;
|
|
}
|
|
#clock:hover,
|
|
#bluetooth:hover,
|
|
#network:hover,
|
|
#battery:hover,
|
|
#cpu:hover,
|
|
#memory:hover,
|
|
#temperature:hover,
|
|
#pulseaudio:hover,
|
|
#tray:hover,
|
|
#window:hover,
|
|
#workspaces:hover {
|
|
transition: all 0.3s ease;
|
|
background: @base;
|
|
}
|
|
|
|
#network {
|
|
min-width: 100px;
|
|
}
|
|
|
|
#cpu,
|
|
#memory {
|
|
min-width: 40px;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 1px;
|
|
margin: 1px;
|
|
color: @text;
|
|
border-radius: 50%;
|
|
}
|
|
#workspaces button:hover {
|
|
background: @text;
|
|
color: @base;
|
|
}
|
|
#workspaces button.focused {
|
|
background: @gold;
|
|
color: @base;
|
|
}
|