124 lines
1.6 KiB
CSS
124 lines
1.6 KiB
CSS
@define-color bg #1e1e2e;
|
|
@define-color accent #ffffff;
|
|
|
|
* {
|
|
min-height: 0;
|
|
min-width: 0;
|
|
font-family: "Adwaita Sans", "JetBrainsMono Nerd Font";
|
|
font-size: 13px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
window#waybar {
|
|
min-height: 0;
|
|
background: transparent;
|
|
}
|
|
|
|
window#waybar.empty #window {
|
|
background-color: transparent;
|
|
}
|
|
|
|
|
|
#workspaces button {
|
|
padding: 0.1rem 0.6rem;
|
|
margin: 0.1rem 0.25rem;
|
|
border-radius: 6px;
|
|
background-color: alpha(@bg, 0.6);
|
|
color: #cdd6f4;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
color: #1e1e2e;
|
|
background-color: alpha(#cdd6f4, 0.3);
|
|
}
|
|
|
|
#workspaces button.active {
|
|
background-color: alpha(@accent, 0.6);
|
|
color: black
|
|
}
|
|
|
|
#workspaces button.urgent {
|
|
background-color: alpha(@bg, 0.5);
|
|
color: #f38ba8;
|
|
}
|
|
|
|
#clock,
|
|
#pulseaudio,
|
|
#custom-logo,
|
|
#custom-power,
|
|
#custom-spotify,
|
|
#custom-notification,
|
|
#cpu,
|
|
#tray,
|
|
#memory,
|
|
#battery,
|
|
#network,
|
|
#window,
|
|
#mpris {
|
|
padding: 0.1rem 0.6rem;
|
|
margin: 0.1rem 0.25rem;
|
|
border-radius: 6px;
|
|
/* background-color: #181825; */
|
|
background-color: alpha(@bg, 0.6);
|
|
}
|
|
|
|
#mpris.playing {
|
|
color: #a6e3a1;
|
|
}
|
|
|
|
#mpris.paused {
|
|
color: #9399b2;
|
|
}
|
|
|
|
#custom-sep {
|
|
padding: 0px;
|
|
color: #585b70;
|
|
}
|
|
/*
|
|
#cpu {
|
|
color: #94e2d5;
|
|
}
|
|
|
|
#memory {
|
|
color: #cba6f7;
|
|
}
|
|
|
|
#clock {
|
|
color: #74c7ec;
|
|
}
|
|
|
|
#clock.simpleclock {
|
|
color: #89b4fa;
|
|
}
|
|
|
|
|
|
#pulseaudio {
|
|
color: #b4befe;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #a6adc8;
|
|
}
|
|
|
|
#custom-logo {
|
|
color: #89b4fa;
|
|
}
|
|
|
|
#custom-power {
|
|
color: #f38ba8;
|
|
}
|
|
|
|
#battery {
|
|
color: #94e2d5;
|
|
}
|
|
|
|
#battery.critical {
|
|
color: red;
|
|
}
|
|
|
|
tooltip {
|
|
background-color: #181825;
|
|
border: 2px solid #89b4fa;
|
|
}
|
|
*/
|