diff --git a/apps/stage-web/src/pages/settings/themes/index.vue b/apps/stage-web/src/pages/settings/themes/index.vue index 7ef499be2..5d1556c8c 100644 --- a/apps/stage-web/src/pages/settings/themes/index.vue +++ b/apps/stage-web/src/pages/settings/themes/index.vue @@ -46,12 +46,12 @@ const settings = useSettings()
-
+
Primary color
- +
@@ -111,6 +111,20 @@ const settings = useSettings() .primary-color-bar { @apply w-full h-full flex-1 flex items-center justify-center; } + +.theme-hue-slider { + @apply flex-1 w-32 h-2 rounded-full appearance-none; + background: linear-gradient( + to right, + oklch(85% 0.2 0), + oklch(85% 0.2 60), + oklch(85% 0.2 120), + oklch(85% 0.2 180), + oklch(85% 0.2 240), + oklch(85% 0.2 300), + oklch(85% 0.2 360) + ); +}