blue.scss 630 B

12345678910111213141516171819202122
  1. $primary-color: #1A3B7F;
  2. $background-color: #1A3B7F;
  3. $text-color: #ffffff;
  4. $bgopacity-color: rgba(0, 187, 212, 0.145);
  5. :root {
  6. --primary-color: #{$primary-color};
  7. --background-color: #{$background-color};
  8. --text-color: #{$text-color};
  9. --bgopacity-color: #{$bgopacity-color};
  10. --header-bg: #ffffff;
  11. --header-text-color: #303133;
  12. --content-bg: #f5f7fa;
  13. --text-cyan: #303133;
  14. --panel-bg: #ffffff;
  15. --input-bg: #ffffff;
  16. --input-border: #dcdfe6;
  17. --table-header-bg: #{$primary-color};
  18. --success-color: #{$primary-color};
  19. --table-header-text: #ffffff;
  20. --table-row-bg: #ffffff;
  21. --table-cell-text: #606266;
  22. }