42 lines
953 B
CSS
42 lines
953 B
CSS
@define-color base #e9e3d5;
|
|
@define-color text #2a2822;
|
|
@define-color border #8d8578;
|
|
@define-color image #a85f1d;
|
|
@define-color label #a85f1d;
|
|
@define-color progress #6a4c72;
|
|
|
|
|
|
/* 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(141, 133, 120, 0.6);
|
|
border: 1px solid rgba(168, 95, 29, 0.22);
|
|
border-radius: 3px;
|
|
}
|
|
|
|
progress {
|
|
border-radius: 3px;
|
|
}
|