luoxin.ts 416 B

1234567891011121314151617
  1. import type { ConfigProviderThemeVars } from 'wot-design-uni'
  2. export const luoxinTheme = {
  3. theme: 'light',
  4. themeVars: {
  5. colorTheme: '#07c160',
  6. buttonPrimaryBgColor: '#07c160',
  7. buttonPrimaryColor: '#ffffff',
  8. // 你可以在这里加 LUOXIN 的品牌色
  9. colorSuccess: '#07c160',
  10. colorWarning: '#faad14',
  11. },
  12. } satisfies {
  13. theme: 'light' | 'dark'
  14. themeVars: ConfigProviderThemeVars
  15. }