We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f4c6916 commit 78df9f3Copy full SHA for 78df9f3
app/components/Brand/Customize.vue
@@ -12,7 +12,9 @@ const customLogoRef = useTemplateRef('customLogoRef')
12
const activeAccentId = computed(() => customAccent.value ?? selectedAccentColor.value ?? 'sky')
13
14
// Use the palette matching the preview background, not the site theme
15
-const previewPalette = computed(() => customBgDark.value ? ACCENT_COLORS.dark : ACCENT_COLORS.light)
+const previewPalette = computed(() =>
16
+ customBgDark.value ? ACCENT_COLORS.dark : ACCENT_COLORS.light,
17
+)
18
19
const activeAccentColor = computed(() => {
20
return previewPalette.value[activeAccentId.value as AccentColorId] ?? previewPalette.value.sky
0 commit comments