diff --git a/src/components/Settings/components/Appearance.vue b/src/components/Settings/components/Appearance.vue index 6899ffea..44901a67 100644 --- a/src/components/Settings/components/Appearance.vue +++ b/src/components/Settings/components/Appearance.vue @@ -25,6 +25,9 @@ const themeColorOptions = computed>(() => { '#fda4af', ] }) +const isCustomColor = computed(() => { + return !themeColorOptions.value.includes(settings.value.themeColor) +}) const wallpapers = computed>(() => { return [ { @@ -105,6 +108,25 @@ function changeWallpaper(url: string) { }" @click="changeThemeColor(color)" /> +
+ + +