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.
21 lines
677 B
21 lines
677 B
import Plain from './plain'; |
|
import { light, dark, grey } from './color'; |
|
|
|
export default class ZhuBeiDong extends Plain { |
|
name = 'zhuBeiDong'; //总体样式名称 |
|
i18n = 'styles.4'; //样式提示i18n配置 |
|
bodyBg = light[0]; //全局背景颜色 |
|
titleColor = dark[0]; //标题颜色 |
|
subTitleColor = dark[3];//二级标题颜色 |
|
|
|
headBg = light[0]; //头部背景颜色 |
|
|
|
searchRowBg = light[0]; |
|
itemBg = light[1]; |
|
|
|
tableBg = light[0]; //表格背景颜色 |
|
tableHeadBg = light[0]; //表头行背景颜色 |
|
tableCurBg = light[2]; //当前行背景颜色 |
|
tableColor = dark[0]; //表格字体颜色 |
|
tableBorderColor = light[9]; //行底部边框颜色 |
|
}
|
|
|