From b521938d3801599cfd2aee6e5eda3baedef44d37 Mon Sep 17 00:00:00 2001 From: Samidy Date: Thu, 2 Oct 2025 11:49:57 +0300 Subject: [PATCH] make halloween theme the preffered theme and change FMHY name gradient --- docs/.vitepress/theme/components/ColorPicker.vue | 2 +- docs/.vitepress/theme/style.scss | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/docs/.vitepress/theme/components/ColorPicker.vue b/docs/.vitepress/theme/components/ColorPicker.vue index f54ef0f03..e4a9ba54c 100644 --- a/docs/.vitepress/theme/components/ColorPicker.vue +++ b/docs/.vitepress/theme/components/ColorPicker.vue @@ -39,7 +39,7 @@ const colorScales = [ ] as const type ColorNames = keyof typeof extendedColors -const selectedColor = useStorage('preferred-color', 'swarm') +const selectedColor = useStorage('preferred-color', 'halloween') const colorOptions = Object.keys(extendedColors).filter( (key) => typeof extendedColors[key as keyof typeof extendedColors] === 'object' diff --git a/docs/.vitepress/theme/style.scss b/docs/.vitepress/theme/style.scss index cf68b7aa2..94b57448d 100644 --- a/docs/.vitepress/theme/style.scss +++ b/docs/.vitepress/theme/style.scss @@ -163,14 +163,14 @@ --vp-home-hero-name-color: transparent; --vp-home-hero-name-background: -webkit-linear-gradient( 120deg, - #c4b5fd 30%, - #7bc5e4 + #ff8c3a 30%, + #FF6A00 ); --vp-home-hero-image-background-image: linear-gradient( -45deg, - #c4b5fd 50%, - #47caff 50% + #ff8c3a 50%, + #ea580c 50% ); --vp-home-hero-image-filter: blur(44px); }