// 白天主题色变量
|
$mainBgColor: #fff;
|
$mainTextColor: #333;
|
$mainbgWhiteColor: #fff;
|
|
$main_background: #fff; // 主背景色改为浅灰色
|
$main2_background: #e8ebf0; // 次级背景色
|
$text_color: #333; // 主要文字颜色改为深色
|
$text_color1: #666; // 次要文字颜色
|
$text_color2: #fff; // 白色文字保持不变
|
$text_color3: #555; // 其他文字颜色
|
$text_color4: #333;
|
$text_color5: #999;
|
$text_color6: #777;
|
|
$tab_background: #fff; // tab背景改为白色
|
$active_line: #1194F7; // 激活状态颜色保持不变
|
$footer_background: #fff; // 底部改为白色
|
$btn_main: #1194F7; // 主按钮颜色保持不变
|
$color_main: #1194F7;
|
$btn_background: #f0f2f5; // 按钮背景改为浅灰色
|
$input_background: #fff; // 输入框背景改为白色
|
$cont_background: #fff; // 内容区域背景
|
$title_color: #444; // 标题颜色
|
$line_color: #e0e0e0; // 线条颜色改为浅灰色
|
$bg_dark: #f0f2f5;
|
$border_color: #e0e0e0;
|
$divi_line: #f0f0f0; // 分割线颜色
|
|
// ... 其他变量保持类似的浅色调整 ...
|
|
// 类名映射保持不变,会自动使用新的颜色变量
|
.mainBackground{
|
background: $main_background;
|
}
|
.textColor{color:$text_color}
|
.textColor1{color:$text_color1}
|
// ... 其他类保持不变 ...
|