You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

37 lines
856 B

  1. // 为了让用户能够自定义主题,会逐步弃用此文件,各颜色通过css提供
  2. // 为了给某些特殊场景使用和向后兼容,无需删除此文件(2020-06-20)
  3. let color = {
  4. primary: "#2979ff",
  5. primaryDark: "#2b85e4",
  6. primaryDisabled: "#a0cfff",
  7. primaryLight: "#ecf5ff",
  8. bgColor: "#f3f4f6",
  9. info: "#909399",
  10. infoDark: "#82848a",
  11. infoDisabled: "#c8c9cc",
  12. infoLight: "#f4f4f5",
  13. warning: "#ff9900",
  14. warningDark: "#f29100",
  15. warningDisabled: "#fcbd71",
  16. warningLight: "#fdf6ec",
  17. error: "#fa3534",
  18. errorDark: "#dd6161",
  19. errorDisabled: "#fab6b6",
  20. errorLight: "#fef0f0",
  21. success: "#19be6b",
  22. successDark: "#18b566",
  23. successDisabled: "#71d5a1",
  24. successLight: "#dbf1e1",
  25. mainColor: "#303133",
  26. contentColor: "#606266",
  27. tipsColor: "#909399",
  28. lightColor: "#c0c4cc",
  29. borderColor: "#e4e7ed"
  30. }
  31. export default color;