feat: sync theme background tokens

This commit is contained in:
2026-08-07 15:32:38 +08:00
parent 3e350f67dc
commit 0762e7bb3d
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -2,7 +2,7 @@ import Taro from '@tarojs/taro'
/** 实际生效主题对应的窗口/页面背景色 */
export function themePageColor(theme: 'light' | 'dark'): string {
return theme === 'dark' ? '#191919' : '#ffffff'
return theme === 'dark' ? '#191919' : '#faf7f2'
}
/**