feat: add ash light/dark omarchy themes derived from harbor

This commit is contained in:
Richard Zink
2026-09-22 11:11:39 +02:00
commit 99cef66d61
117 changed files with 14041 additions and 0 deletions
+41
View File
@@ -0,0 +1,41 @@
@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;
}