color.js 674 B

12345678910111213141516171819202122232425262728293031323334
  1. const color = {
  2. primary: "#83C225",
  3. primaryDark: "#2b85e4",
  4. primaryDisabled: "#a0cfff",
  5. primaryLight: "#ecf5ff",
  6. bgColor: "#f3f4f6",
  7. info: "#909399",
  8. infoDark: "#82848a",
  9. infoDisabled: "#c8c9cc",
  10. infoLight: "#f4f4f5",
  11. warning: "#ff9900",
  12. warningDark: "#f29100",
  13. warningDisabled: "#fcbd71",
  14. warningLight: "#fdf6ec",
  15. error: "#fa3534",
  16. errorDark: "#dd6161",
  17. errorDisabled: "#fab6b6",
  18. errorLight: "#fef0f0",
  19. success: "#19be6b",
  20. successDark: "#18b566",
  21. successDisabled: "#71d5a1",
  22. successLight: "#dbf1e1",
  23. mainColor: "#303133",
  24. contentColor: "#606266",
  25. tipsColor: "#909399",
  26. lightColor: "#c0c4cc",
  27. borderColor: "#e4e7ed"
  28. }
  29. export default color