feat: add auto theme mode (follow system preference)

- Add 'auto' to Theme type
- Implement cycleTheme (light -> dark -> auto)
- Add autoTheme icon (sun with half-filled center)
- Listen to system theme changes in auto mode

Also includes some Prettier formatting fixes.
This commit is contained in:
XYenon
2025-12-24 00:02:59 +08:00
parent 561e06503c
commit 5f7df33469
3 changed files with 134 additions and 60 deletions

View File

@@ -2,7 +2,7 @@
* 通用类型定义
*/
export type Theme = 'light' | 'dark';
export type Theme = 'light' | 'dark' | 'auto';
export type Language = 'zh-CN' | 'en';