88 lines
1.7 KiB
CSS
Raw Permalink Normal View History

2026-02-19 20:27:50 +01:00
/* Base font for Waybar, matching your Alacritty settings */
* {
font-size: 14px; /* matches Alacritty font size */
font-weight: normal;
}
window#waybar {
background-color: rgba(80, 80, 80, 0.150);
/* border-bottom: 4px solid rgba(89, 100, 108, 0.367); */
color: #ffffff;
transition-property: background-color;
transition-duration: .5s;
}
#window {
background-color: rgba(63, 63, 63, 0.6);
padding: 6px 16px;
margin: 4px 0px;
border-radius: 6px;
}
#workspaces {
margin: 0 0px;
}
button {
box-shadow: inset 0 -3px transparent;
border: none;
border-radius: 0;
}
button:hover {
background: inherit;
box-shadow: inset 0 -2px #ffffff;
}
#workspaces button {
padding: 4px 10px;
margin: 4px 2px;
border-radius: 6px;
min-width: 40px;
background-color: rgba(63, 63, 63, 0.6);
color: #ffffff;
}
#workspaces button:hover {
background: rgba(0, 0, 0, 0.2);
}
#workspaces button.focused {
background-color: #64727D;
/* box-shadow: inset 0 -1px #ffffff; */
}
#workspaces button.active {
background-color: #64727D;
box-shadow: inset 0 -2px #ffffff;
}
#workspaces button.urgent {
background-color: #eb4d4b;
}
#clock,
#pulseaudio,
#language,
#custom-notification,
#custom-power,
#tray {
background-color: rgba(63, 63, 63, 0.6);
padding: 4px 8px;
margin: 4px 0px;
border-radius: 6px;
min-width: 20px;
/* color: #000000; */
}
/* If workspaces is the leftmost module, omit left margin */
.modules-left > widget:first-child > #workspaces {
margin-left: 0;
}
/* If workspaces is the rightmost module, omit right margin */
.modules-right > widget:last-child > #workspaces {
margin-right: 0;
}