86 lines
1.7 KiB
CSS
86 lines
1.7 KiB
CSS
/* ╔═══════════════════════════════════════════════════════════════════╗
|
|
║ HYPRARCH - Waybar Style ║
|
|
║ Nord Color Scheme ║
|
|
╚═══════════════════════════════════════════════════════════════════╝ */
|
|
|
|
* {
|
|
font-family: "JetBrainsMono Nerd Font";
|
|
font-size: 13px;
|
|
min-height: 0;
|
|
border: none;
|
|
border-radius: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background: rgba(46, 52, 64, 0.95);
|
|
color: #eceff4;
|
|
}
|
|
|
|
#workspaces {
|
|
margin: 0 4px;
|
|
}
|
|
|
|
#workspaces button {
|
|
padding: 0 12px;
|
|
color: #d8dee9;
|
|
background: transparent;
|
|
border-bottom: 3px solid transparent;
|
|
}
|
|
|
|
#workspaces button.active {
|
|
color: #88c0d0;
|
|
border-bottom: 3px solid #88c0d0;
|
|
}
|
|
|
|
#workspaces button:hover {
|
|
background: rgba(136, 192, 208, 0.1);
|
|
}
|
|
|
|
#window {
|
|
margin: 0 8px;
|
|
color: #d8dee9;
|
|
font-weight: normal;
|
|
}
|
|
|
|
#clock,
|
|
#battery,
|
|
#cpu,
|
|
#memory,
|
|
#network,
|
|
#pulseaudio {
|
|
padding: 0 12px;
|
|
margin: 4px 2px;
|
|
background: rgba(59, 66, 82, 0.8);
|
|
border-radius: 8px;
|
|
color: #eceff4;
|
|
}
|
|
|
|
#battery.charging {
|
|
color: #a3be8c;
|
|
}
|
|
|
|
#battery.warning:not(.charging) {
|
|
color: #ebcb8b;
|
|
}
|
|
|
|
#battery.critical:not(.charging) {
|
|
color: #bf616a;
|
|
}
|
|
|
|
#pulseaudio.muted {
|
|
color: #bf616a;
|
|
}
|
|
|
|
#tray {
|
|
padding: 0 8px;
|
|
}
|
|
|
|
#tray > .passive {
|
|
-gtk-icon-effect: dim;
|
|
}
|
|
|
|
#tray > .needs-attention {
|
|
-gtk-icon-effect: highlight;
|
|
background-color: #bf616a;
|
|
}
|