theme.ts 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. import { GlobalThemeOverrides } from 'naive-ui'
  2. export const themeOverrides: GlobalThemeOverrides = {
  3. common: {
  4. baseColor: '#ffffff',
  5. primaryColor: '#0960bd',
  6. primaryColorHover: '#1478e3',
  7. primaryColorPressed: '#064282',
  8. primaryColorSuppl: '#0960bd'
  9. // successColor: '#0960bd',
  10. // successColorHover: '#1478e3',
  11. // successColorPressed: '#0960bd',
  12. // successColorSuppl: '#0960bd'
  13. },
  14. Drawer: {
  15. color: 'rgb(24, 24, 28)'
  16. },
  17. Select: {
  18. optionColorActive: '#ffffff'
  19. },
  20. Menu: {
  21. itemTextColor: '#ffffff',
  22. itemColorHover: 'rgba(255,255,255,0.1)',
  23. // pressedColor: '#ffffff',
  24. // // itemColorHoverInverted: 'rgb(24, 24, 28)',
  25. // itemTextColorHover: '#ffffff',
  26. itemTextColorActive: '#0960bd',
  27. itemColorActiveCollapsed: '#0960bd'
  28. // itemIconColor: '#ffffff',
  29. // itemIconColorHover: '#ffffff',
  30. // itemIconColorActive: '#ffffff',
  31. // itemIconColorChildActive: '#ffffff',
  32. // itemTextColorActiveHover: 'rgba(255,255,255,0.2)'
  33. // itemTextColorActiveHover: '#ffffff',
  34. // itemTextColorChildActive: '#ffffff'
  35. },
  36. Button: {
  37. // textColor: '#ffffff'
  38. }
  39. // Button: {
  40. // textColor: '#FF0000'
  41. // }
  42. }
  43. export default themeOverrides