| 12345678910111213141516171819202122 |
- $primary-color: #1A3B7F;
- $background-color: #1A3B7F;
- $text-color: #ffffff;
- $bgopacity-color: rgba(0, 187, 212, 0.145);
- :root {
- --primary-color: #{$primary-color};
- --background-color: #{$background-color};
- --text-color: #{$text-color};
- --bgopacity-color: #{$bgopacity-color};
- --header-bg: #ffffff;
- --header-text-color: #303133;
- --content-bg: #f5f7fa;
- --text-cyan: #303133;
- --panel-bg: #ffffff;
- --input-bg: #ffffff;
- --input-border: #dcdfe6;
- --table-header-bg: #{$primary-color};
- --success-color: #{$primary-color};
- --table-header-text: #ffffff;
- --table-row-bg: #ffffff;
- --table-cell-text: #606266;
- }
|