update pay ui

This commit is contained in:
2025-12-11 17:23:53 +08:00
parent 0599e2dad3
commit 3f87a3d1af
4 changed files with 13 additions and 13 deletions

View File

@@ -67,12 +67,12 @@ export default function SettingsPage() {
const { colorMode, toggleColorMode } = useColorMode();
const toast = useToast();
// 深色模式适配颜色
const headingColor = useColorModeValue('gray.800', 'white');
const textColor = useColorModeValue('gray.800', 'gray.100');
const subTextColor = useColorModeValue('gray.600', 'gray.400');
const cardBg = useColorModeValue('white', 'gray.800');
const borderColor = useColorModeValue('gray.200', 'gray.600');
// 深色模式固定颜色Settings 页面始终使用深色主题)
const headingColor = 'white';
const textColor = 'gray.100';
const subTextColor = 'gray.400';
const cardBg = 'gray.800';
const borderColor = 'gray.600';
// 🎯 初始化设置页面埋点Hook
const profileEvents = useProfileEvents({ pageType: 'settings' });