style: 深色模式统一改为纯黑背景,去除泛紫

This commit is contained in:
2026-08-06 16:43:46 +08:00
parent e01951cd0e
commit 501f633102
9 changed files with 26 additions and 26 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import Taro from '@tarojs/taro'
/** 实际生效主题对应的窗口/页面背景色 */
export function themePageColor(theme: 'light' | 'dark'): string {
return theme === 'dark' ? '#1e1e2f' : '#ffffff'
return theme === 'dark' ? '#000000' : '#ffffff'
}
/**