fix: scrollbar ui theme colors (#27455)

This commit is contained in:
Mees Frensel
2026-04-02 17:18:47 +02:00
committed by GitHub
parent 2166f07b1f
commit b465f2b58f
+6 -7
View File
@@ -128,25 +128,24 @@
/* Track */ /* Track */
html::-webkit-scrollbar-track { html::-webkit-scrollbar-track {
background: #f1f1f1; background-color: var(--immich-ui-light-100);
border-radius: 16px; border-radius: 4px;
} }
/* Handle */ /* Handle */
html::-webkit-scrollbar-thumb { html::-webkit-scrollbar-thumb {
background: rgba(85, 86, 87, 0.408); background-color: color-mix(in oklab, var(--immich-ui-light-600) 40%, transparent);
border-radius: 16px; border-radius: 4px;
} }
/* Handle on hover */ /* Handle on hover */
html::-webkit-scrollbar-thumb:hover { html::-webkit-scrollbar-thumb:hover {
background: #4250afad; background-color: color-mix(in oklab, var(--immich-ui-primary-500) 70%, transparent);
border-radius: 16px;
} }
body { body {
margin: 0; margin: 0;
color: #3a3a3a; color: var(--immich-ui-dark);
} }
body.asset-viewer-open { body.asset-viewer-open {