variables.scss 774 B

12345678910111213141516171819202122232425262728293031323334353637
  1. /* just override what you need */
  2. @forward 'element-plus/theme-chalk/src/common/var.scss' with (
  3. $colors: (
  4. 'primary': (
  5. 'base': #7a6dff,
  6. ),
  7. 'success': (
  8. 'base': #0bbd87,
  9. )
  10. ),
  11. $button:(
  12. 'font-weight':500
  13. ),
  14. $button-font-size:(
  15. 'default':13px
  16. ),
  17. $button-border-radius:(
  18. 'default':8px
  19. ),
  20. $menu:(
  21. 'base-level-padding':5px,
  22. 'bg-color':transparent,
  23. 'item-height': 40px,
  24. 'hover-bg-color': var(--el-color-primary-light-8),
  25. ),
  26. $text-color:(
  27. 'primary': #354052,
  28. 'regular': #3c485d,
  29. 'secondary': #676f83,
  30. 'placeholder': #a8abb2,
  31. 'disabled': #c0c4cc,
  32. )
  33. );
  34. // If you just import on demand, you can ignore the following content.
  35. // 如果你想导入所有样式:
  36. @use "element-plus/theme-chalk/src/index.scss" as *;