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.
26 lines
827 B
26 lines
827 B
2 years ago
|
import NoobStyle from './noob';
|
||
|
import { light, dark, grey } from './color';
|
||
|
|
||
|
export default class Dark extends NoobStyle {
|
||
|
bodyBg = dark[3]; //全局背景颜色
|
||
|
titleColor = light[0]; //标题颜色
|
||
|
color = grey[5]; //全局字体颜色
|
||
|
|
||
|
headBg = dark[2]; //头部背景颜色
|
||
|
menuBg = dark[2]; //菜单背景颜色
|
||
|
menuActiveBg = dark[6]; //菜单激活背景颜色
|
||
|
menuColor = light[0]; //菜单文字颜色
|
||
|
menuActiveColor = '#328ae3'; //激活菜单文字颜色
|
||
|
|
||
|
mainShadowColor = light[8]; //主窗口阴影颜色
|
||
|
|
||
|
searchRowBg = dark[3];
|
||
|
itemBg = dark[7];
|
||
|
|
||
|
tableBg = dark[2]; //表格背景颜色
|
||
|
tableHeadBg = dark[4]; //表头行背景颜色
|
||
|
tableCurBg = dark[5]; //当前行背景颜色
|
||
|
tableColor = light[0]; //表格字体颜色
|
||
|
tableBorderColor = dark[7]; //行底部边框颜色
|
||
|
}
|