调整配色

This commit is contained in:
2021-06-14 00:58:13 +08:00
parent 14aa41a400
commit 0e10454095
6 changed files with 20 additions and 12 deletions

View File

@@ -4,5 +4,7 @@ $--font-path: '~element-ui/lib/theme-chalk/fonts';
// 颜色
$--color-primary: #2196F3;
$--color-success: #4CAF50;
$--color-text-primary: #555555;
$--color-text-secondary: #909090;
@import "~element-ui/packages/theme-chalk/src/index";

View File

@@ -13,10 +13,10 @@
::-webkit-scrollbar-thumb {
border-radius: 1rem;
background-color: #DDD;
background-color: #DFDFDF;
&:hover {
background-color: #BBB;
background-color: #CCCCCC;
}
}
@@ -34,7 +34,7 @@ html {
}
body {
color: #555;
color: @textPrimary;
overflow: hidden;
user-select: none;
-webkit-tap-highlight-color: transparent;
@@ -98,7 +98,7 @@ body {
.loading-link {
background-color: rgba(255, 255, 255, 0.5) !important;
backdrop-filter: blur(.2rem);
backdrop-filter: blur(0.2rem);
.el-loading-spinner {
transform: translateY(-50%);

View File

@@ -3,9 +3,14 @@
@headerHeight: 4rem;
@colorPrimary: #2196F3;
@colorSecondary: #67C23A;
@colorGrey: #9E9E9E;
@colorPrimaryDark: #1976D2;
@colorPrimaryLight: #BBDEFB;
@colorSecondary: #4CAF50;
@colorGrey: #BDBDBD;
@colorRed: #F44336;
@colorWhite: #F9F9F9;
@transitionTime: .25s;
@textPrimary: #555555;
@textSecondary: #909090;
@transitionTime: 0.25s;