mirror of
https://github.com/fmhy/edit.git
synced 2025-11-28 00:41:20 +11:00
fix EVERYTHING unc
This commit is contained in:
parent
a424987ffa
commit
962a6bd66e
1 changed files with 46 additions and 130 deletions
|
|
@ -1,30 +1,8 @@
|
|||
<script setup lang="ts">
|
||||
import { colors } from '@fmhy/colors'
|
||||
import { useStorage, useStyleTag } from '@vueuse/core'
|
||||
import { watch, onMounted } from 'vue'
|
||||
import Switch from './Switch.vue'
|
||||
|
||||
// Add Halloween colors
|
||||
const halloweenColors = {
|
||||
50: '#fff7ed',
|
||||
100: '#ffedd5',
|
||||
200: '#fed7aa',
|
||||
300: '#fdba74',
|
||||
400: '#fb923c',
|
||||
500: '#FF6A00',
|
||||
600: '#ea580c',
|
||||
700: '#c2410c',
|
||||
800: '#9a3412',
|
||||
900: '#7c2d12',
|
||||
950: '#431407'
|
||||
}
|
||||
|
||||
// hall extend or something
|
||||
const extendedColors = {
|
||||
...colors,
|
||||
halloween: halloweenColors
|
||||
}
|
||||
|
||||
const colorScales = [
|
||||
'50',
|
||||
'100',
|
||||
|
|
@ -39,18 +17,18 @@ const colorScales = [
|
|||
'950'
|
||||
] as const
|
||||
|
||||
type ColorNames = keyof typeof extendedColors
|
||||
type ColorNames = keyof typeof colors
|
||||
const selectedColor = useStorage<ColorNames>('preferred-color', 'swarm')
|
||||
const isAmoledMode = useStorage('amoled-mode', false)
|
||||
|
||||
const colorOptions = Object.keys(extendedColors).filter(
|
||||
(key) => typeof extendedColors[key as keyof typeof extendedColors] === 'object'
|
||||
const colorOptions = Object.keys(colors).filter(
|
||||
(key) => typeof colors[key as keyof typeof colors] === 'object'
|
||||
) as Array<ColorNames>
|
||||
|
||||
const { css } = useStyleTag('', { id: 'brand-color' })
|
||||
|
||||
const updateThemeColor = (colorName: ColorNames, amoledEnabled: boolean) => {
|
||||
const colorSet = extendedColors[colorName]
|
||||
const colorSet = colors[colorName]
|
||||
|
||||
const cssVars = colorScales
|
||||
.map((scale) => `--vp-c-brand-${scale}: ${colorSet[scale]};`)
|
||||
|
|
@ -58,61 +36,17 @@ const updateThemeColor = (colorName: ColorNames, amoledEnabled: boolean) => {
|
|||
|
||||
const htmlElement = document.documentElement
|
||||
|
||||
// Manage theme classes
|
||||
if (colorName === 'halloween') {
|
||||
htmlElement.classList.add('theme-halloween')
|
||||
} else {
|
||||
htmlElement.classList.remove('theme-halloween')
|
||||
}
|
||||
|
||||
if (amoledEnabled) {
|
||||
htmlElement.classList.add('theme-amoled')
|
||||
} else {
|
||||
htmlElement.classList.remove('theme-amoled')
|
||||
}
|
||||
|
||||
// Determine dark background color based on AMOLED mode
|
||||
const darkBg = amoledEnabled ? '#000000' : 'rgb(26, 26, 26)'
|
||||
const darkBgAlt = amoledEnabled ? '#000000' : 'rgb(23, 23, 23)'
|
||||
const darkBgElv = amoledEnabled ? 'rgba(0, 0, 0, 0.9)' : 'rgba(23, 23, 23, 0.8)'
|
||||
const darkBgSoft = amoledEnabled ? '#000000' : 'rgb(23, 23, 23)'
|
||||
|
||||
// Apply Halloween theme backgrounds or normal backgrounds
|
||||
if (colorName === 'halloween') {
|
||||
const halloweenDarkBg = amoledEnabled ? '#000000' : 'rgb(15, 15, 15)'
|
||||
const halloweenDarkBgAlt = amoledEnabled ? '#000000' : 'rgb(12, 12, 12)'
|
||||
const halloweenDarkBgElv = amoledEnabled ? 'rgba(0, 0, 0, 0.9)' : 'rgba(12, 12, 12, 0.8)'
|
||||
|
||||
css.value = `
|
||||
:root {
|
||||
${cssVars}
|
||||
--vp-c-brand-1: ${colorSet[500]};
|
||||
--vp-c-brand-2: ${colorSet[600]};
|
||||
--vp-c-brand-3: ${colorSet[800]};
|
||||
--vp-c-brand-soft: ${colorSet[400]};
|
||||
}
|
||||
|
||||
.dark {
|
||||
${cssVars}
|
||||
--vp-c-brand-1: ${colorSet[400]};
|
||||
--vp-c-brand-2: ${colorSet[500]};
|
||||
--vp-c-brand-3: ${colorSet[700]};
|
||||
--vp-c-brand-soft: ${colorSet[300]};
|
||||
--vp-c-bg: ${halloweenDarkBg} !important;
|
||||
--vp-c-bg-alt: ${halloweenDarkBgAlt} !important;
|
||||
--vp-c-bg-elv: ${halloweenDarkBgElv} !important;
|
||||
--vp-c-bg-soft: ${halloweenDarkBgAlt} !important;
|
||||
}
|
||||
|
||||
.dark html, .dark body {
|
||||
background-color: ${halloweenDarkBg} !important;
|
||||
}
|
||||
|
||||
.dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app, .dark .vp-doc {
|
||||
background-color: ${halloweenDarkBg} !important;
|
||||
}
|
||||
`
|
||||
} else {
|
||||
css.value = `
|
||||
:root {
|
||||
${cssVars}
|
||||
|
|
@ -150,30 +84,13 @@ const updateThemeColor = (colorName: ColorNames, amoledEnabled: boolean) => {
|
|||
background-color: ${darkBg} !important;
|
||||
}
|
||||
|
||||
.dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app, .dark .vp-doc {
|
||||
.dark .VPApp, .dark .Layout, .dark .VPContent, .dark .VPHome, .dark .VPHero, .dark #app, .vp-doc {
|
||||
background-color: ${darkBg} !important;
|
||||
}
|
||||
`
|
||||
}
|
||||
}
|
||||
|
||||
onMounted(() => {
|
||||
// Set Halloween theme ASAP if its the pref (only in browser)
|
||||
if (typeof window !== 'undefined') {
|
||||
const storedTheme = localStorage.getItem('preferred-color')
|
||||
const storedAmoled = localStorage.getItem('amoled-mode')
|
||||
|
||||
if (!storedTheme || storedTheme === '"halloween"') {
|
||||
document.documentElement.classList.add('theme-halloween')
|
||||
}
|
||||
if (storedAmoled === 'true') {
|
||||
document.documentElement.classList.add('theme-amoled')
|
||||
}
|
||||
}
|
||||
|
||||
if (selectedColor.value === 'halloween') {
|
||||
document.documentElement.classList.add('theme-halloween')
|
||||
}
|
||||
if (isAmoledMode.value) {
|
||||
document.documentElement.classList.add('theme-amoled')
|
||||
}
|
||||
|
|
@ -203,10 +120,9 @@ const normalizeColorName = (colorName: string) =>
|
|||
:title="normalizeColorName(color)"
|
||||
>
|
||||
<span
|
||||
v-else
|
||||
class="inline-block w-6 h-6 rounded-full"
|
||||
:style="{ backgroundColor: extendedColors[color][500] }"
|
||||
/>
|
||||
:style="{ backgroundColor: colors[color][500] }"
|
||||
></span>
|
||||
</button>
|
||||
</div>
|
||||
</div>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue