61 lines
1.3 KiB
CSS
61 lines
1.3 KiB
CSS
@import "colors.css";
|
|
|
|
* {
|
|
font-family: "SF Pro Display", "Inter", sans-serif;
|
|
font-size: 11px;
|
|
font-weight: bold;
|
|
color: #ffffff;
|
|
border: none;
|
|
box-shadow: none;
|
|
text-shadow: none;
|
|
min-height: 0;
|
|
}
|
|
|
|
window#waybar {
|
|
background-color: #000000; /* Solid black bar */
|
|
border-bottom: 1px solid rgba(255, 255, 255, 0.1);
|
|
}
|
|
|
|
#workspaces,
|
|
#clock,
|
|
#temperature.cpu,
|
|
#temperature.gpu,
|
|
#custom-backlight,
|
|
#pulseaudio {
|
|
background-color: transparent;
|
|
padding: 0px 12px;
|
|
}
|
|
|
|
#workspaces {
|
|
margin-left: 10px;
|
|
}
|
|
|
|
#pulseaudio {
|
|
margin-right: 10px;
|
|
}
|
|
|
|
/* Base state for all workspace buttons */
|
|
#workspaces button {
|
|
background-color: transparent;
|
|
color: #666666;
|
|
padding: 2px 10px; /* Padded to look like a proper pill when active */
|
|
margin: 4px 2px; /* Slight gap between buttons */
|
|
border-radius: 12px; /* Smooth rounded pill edges */
|
|
transition: all 0.2s ease;
|
|
}
|
|
|
|
/* Active workspace: Solid pill using the extracted wallpaper color */
|
|
#workspaces button.active {
|
|
background-color: @accent;
|
|
color: #000000; /* Black text pops better against vibrant accent colors */
|
|
}
|
|
|
|
/* Hover state */
|
|
#workspaces button:hover {
|
|
color: #ffffff;
|
|
background-color: rgba(255, 255, 255, 0.15);
|
|
}
|
|
|
|
#temperature.critical {
|
|
color: #ff3333;
|
|
}
|