nix-files/hosts/common/programs/swaynotificationcenter/style.css

27 lines
828 B
CSS

/* these color definitions are used by the built-in style */
/* noti-bg defaults `rgb(48, 48, 48)` and is the default button/slider/grid background */
@define-color noti-bg rgb(36, 36, 36);
@define-color noti-bg-darker rgb(24, 24, 24);
/* avoid black-on-black text that the default style ships */
window {
color: rgb(255, 255, 255);
}
/* window behind entire control center. defaults to 25% opacity. */
.blank-window {
background: rgba(0, 0, 0, 0.5);
}
.widget-buttons-grid button.toggle {
/* text color for inactive buttons, and "Clear All" button.*/
color: rgb(172, 172, 172);
/* padding defaults to 16px; tighten, so i can squish it all onto one row */
padding-left: 0px;
padding-right: 0px;
}
.widget-buttons-grid button.toggle:checked {
color: rgb(255, 255, 255);
background-color: rgb(0, 110, 190);
}