1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
/**
* @copyright chuzhixin 1204505056@qq.com
* @description 全局主题变量配置
*/
@charset "utf-8";
$base-color-default: #4e68ff;
$base-z-index: 999;
$base-menu-background: #252C49;
$base-menu-children-background: #252C49;
$base-menu-background-active: #546184;
$base-menu-color: hsla(0, 0%, 100%, 0.95);
$base-menu-color-active: hsla(0, 0%, 100%, 0.95);
$base-title-color: #fff;
$base-font-size-small: 12px;
$base-font-size-default: 14px;
$base-font-size-big: 16px;
$base-font-size-bigger: 18px;
$base-font-size-max: 22px;
$base-color-header: $base-menu-background;
$base-color-blue: $base-color-default;
$base-color-green: #13ce66;
$base-color-white: #fff;
$base-color-black: #000;
$base-color-yellow: #ffba00;
$base-color-orange: #ff6700;
$base-color-red: #ff4d4f;
$base-color-gray: rgba(0, 0, 0, 0.65);
$base-main-width: 1279px;
$base-border-radius: 4px;
$base-border-color: #dcdfe6;
$base-form-width: 600px;
$base-input-height: 32px;
$base-pagination-height: 28px;
$base-padding: 15px;
$base-box-shadow: 0 1px 4px rgba(0, 21, 41, 0.08);
$base-font-color: #606266;
$base-left-menu-width: 188px;
$base-right-content-width: calc(100% - #{$base-left-menu-width});
$base-left-menu-width-min: 65px;
$base-right-content-width-min: calc(100% - #{$base-left-menu-width-min});
$base-transition: all 0.3s;
/* stylelint-disable */
:export {
menu-color: $base-menu-color;
menu-color-active: $base-menu-color-active;
menu-background: $base-menu-background;
menu-children-background: $base-menu-children-background;
menu-background-active: $base-menu-background-active;
tags-bar-background-active: $base-color-blue;
button-background: $base-color-blue;
pagination-background-active: $base-color-blue;
}