mirror of
https://github.com/arthur-pbty/arthur-os.git
synced 2026-08-01 20:28:16 +02:00
31 lines
688 B
CSS
31 lines
688 B
CSS
@define-color background-color #101315;
|
|
@define-color border-color #2f353b;
|
|
@define-color label #cacccc;
|
|
@define-color image #cacccc;
|
|
@define-color progress #d9dbdc;
|
|
|
|
|
|
/* Cancel out Omarchy settings */
|
|
window:not(:backdrop),
|
|
window:backdrop {
|
|
border: none;
|
|
border-width: 0;
|
|
border-radius: 4px;
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
padding: 12px;
|
|
}
|
|
|
|
|
|
/* Draw a new background */
|
|
window:not(:backdrop) #container,
|
|
window:backdrop #container {
|
|
border: 2px solid @border-color;
|
|
border-radius: 6px;
|
|
background-color: @background-color;
|
|
padding: 12px;
|
|
background-clip: padding-box;
|
|
box-shadow: 2px 2px 9px 0px rgba(22, 22, 22, 1);
|
|
|
|
}
|