| 1234567891011121314151617 |
- import type { ConfigProviderThemeVars } from 'wot-design-uni'
- export const luoxinTheme = {
- theme: 'light',
- themeVars: {
- colorTheme: '#07c160',
- buttonPrimaryBgColor: '#07c160',
- buttonPrimaryColor: '#ffffff',
- // 你可以在这里加 LUOXIN 的品牌色
- colorSuccess: '#07c160',
- colorWarning: '#faad14',
- },
- } satisfies {
- theme: 'light' | 'dark'
- themeVars: ConfigProviderThemeVars
- }
|