586785091edfc3000df2767a02926c1fda3e14b2.svn-base 819 B

12345678910111213141516171819202122232425262728293031
  1. /**
  2. * I think element-ui's default theme color is too light for long-term use.
  3. * So I modified the default color and you can modify it to your liking.
  4. **/
  5. /* theme color */
  6. $--color-primary: #1890ff;
  7. $--color-success: #13ce66;
  8. $--color-warning: #FFBA00;
  9. $--color-danger: #ff4949;
  10. // $--color-info: #1E1E1E;
  11. $--button-font-weight: 400;
  12. // $--color-text-regular: #1f2d3d;
  13. $--border-color-light: #dfe4ed;
  14. $--border-color-lighter: #e6ebf5;
  15. $--table-border:1px solid#dfe6ec;
  16. /* icon font path, required */
  17. $--font-path: '~element-ui/lib/theme-chalk/fonts';
  18. @import "~element-ui/packages/theme-chalk/src/index";
  19. // the :export directive is the magic sauce for webpack
  20. // https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
  21. :export {
  22. theme: $--color-primary;
  23. }