refactor: update theme color handling and toggle component

- Modify color scheme to resolve theme-color issues
- Refactor theme toggle component and icon
This commit is contained in:
radishzzz 2025-01-21 04:08:00 +00:00
parent eae55b7477
commit 6ea0644928
7 changed files with 30 additions and 50 deletions

7
src/types/global.d.ts vendored Normal file
View file

@ -0,0 +1,7 @@
declare global {
interface Document {
startViewTransition: (callback: () => void) => void
}
}
export {}