You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
571 B
17 lines
571 B
import Plain from './plain'; |
|
import { light, dark, grey } from './color'; |
|
|
|
export default class Plainb extends Plain { |
|
name = 'plainb'; //总体样式名称 |
|
i18n = 'styles.3'; //样式提示i18n配置 |
|
// bodyBg = light[0]; //全局背景颜色 |
|
bodyBg = light[0]; //全局背景颜色 |
|
titleColor = light[3]; //标题颜色 |
|
subTitleColor = '#424242'; //二级标题颜色 |
|
color = grey[0]; //全局字体颜色 |
|
selectionBg = '#9255f4'; //全局文字选中后背景 |
|
|
|
headBg = '#6200ee'; //头部背景颜色 |
|
|
|
menuBg = '#ebebeb'; //菜单背景颜色 |
|
}
|
|
|