Files
omarchy-ash-theme/tools/reference/light/swayosd.css
T

42 lines
954 B
CSS

@define-color base #dfe4c4;
@define-color text #1c2d28;
@define-color border #7d8794;
@define-color image #5e81ac;
@define-color label #5e81ac;
@define-color progress #8a5b81;
/* Cancel out Omarchy settings */
window:not(:backdrop),
window:backdrop {
border: none;
border-width: 0;
border-radius: 6px;
background-color: transparent;
box-shadow: none;
padding: 12px;
}
/* Draw a new background (solid — like moodpeak, no blur) */
window:not(:backdrop) #container,
window:backdrop #container {
border: 2px solid @border;
border-radius: 6px;
background-color: @base;
padding: 12px;
background-clip: padding-box;
box-shadow: 2px 2px 9px 0px rgba(0, 0, 0, 0.25);
}
/* Volume / brightness bar: subtle track + accent edge */
progressbar trough {
background-color: rgba(125, 135, 148, 0.6);
border: 1px solid rgba(94, 129, 172, 0.22);
border-radius: 3px;
}
progress {
border-radius: 3px;
}