style: 深色模式改用微信官方配色 #191919,导航栏与页面背景统一

This commit is contained in:
2026-08-06 17:00:37 +08:00
parent 501f633102
commit 1624e33f5e
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' ? '#000000' : '#ffffff'
return theme === 'dark' ? '#191919' : '#ffffff'
}
/**