diff --git a/docs/.vitepress/constants.ts b/docs/.vitepress/constants.ts index 01942c889..f014cd850 100644 --- a/docs/.vitepress/constants.ts +++ b/docs/.vitepress/constants.ts @@ -158,6 +158,7 @@ export const socialLinks: DefaultTheme.SocialLink[] = [ ] export const nav: DefaultTheme.NavItem[] = [ + { text: '📑 Changelog', link: 'https://changes.fmhy.bid/' }, { text: '📖 Glossary', link: 'https://rentry.org/The-Piracy-Glossary' }, { text: '💾 Backups', @@ -332,4 +333,4 @@ export const sidebar: DefaultTheme.Sidebar | DefaultTheme.NavItemWithLink[] = [ } ] } -] \ No newline at end of file +] diff --git a/docs/.vitepress/theme/components/ColorPicker.vue b/docs/.vitepress/theme/components/ColorPicker.vue index 61814b1a0..a4102dace 100644 --- a/docs/.vitepress/theme/components/ColorPicker.vue +++ b/docs/.vitepress/theme/components/ColorPicker.vue @@ -117,8 +117,8 @@ const generateThemeFromColor = (colorName: ColorNames): Theme => { }, home: { heroNameColor: 'transparent', - heroNameBackground: `-webkit-linear-gradient(120deg, ${colorSet[400]} 30%, ${colorSet[500]})`, - heroImageBackground: `linear-gradient(-45deg, ${colorSet[400]} 50%, ${colorSet[500]} 50%)`, + heroNameBackground: '-webkit-linear-gradient(120deg, #c4b5fd 30%, #7bc5e4)', + heroImageBackground: 'linear-gradient(-45deg, #c4b5fd 50%, #47caff 50%)', heroImageFilter: 'blur(44px)' } }, @@ -182,8 +182,8 @@ const generateThemeFromColor = (colorName: ColorNames): Theme => { }, home: { heroNameColor: 'transparent', - heroNameBackground: `-webkit-linear-gradient(120deg, ${colorSet[400]} 30%, ${colorSet[500]})`, - heroImageBackground: `linear-gradient(-45deg, ${colorSet[400]} 50%, ${colorSet[500]} 50%)`, + heroNameBackground: '-webkit-linear-gradient(120deg, #c4b5fd 30%, #7bc5e4)', + heroImageBackground: 'linear-gradient(-45deg, #c4b5fd 50%, #47caff 50%)', heroImageFilter: 'blur(44px)' } } diff --git a/docs/.vitepress/theme/components/Feedback.vue b/docs/.vitepress/theme/components/Feedback.vue index 014c757db..391cc111f 100644 --- a/docs/.vitepress/theme/components/Feedback.vue +++ b/docs/.vitepress/theme/components/Feedback.vue @@ -166,7 +166,7 @@ const toggleCard = () => (isCardShown.value = !isCardShown.value)