Former-commit-id: eb3c3dd8dfec3bd9a88a114af3db44847f1d8643 Former-commit-id: 541fb1af65045b53a5683f99f1ee88f1f3ababb9 Former-commit-id: 6f819bc1ba1fc2836bf2e663bc2e017561915a09 Former-commit-id: b8b9b3b39bf13a8084237eca938127023b363c6e
42 lines
1.7 KiB
SCSS
42 lines
1.7 KiB
SCSS
// 主题名称
|
|
$theme-name: 'line';
|
|
// 主题背景颜色
|
|
$theme-bg-color: $color-bg;
|
|
// 主题背景图片
|
|
$theme-bg-image: '/static/image/bg/line-squashed.jpg';
|
|
|
|
// container组件
|
|
$theme-container-background-color: rgba(#FFF, .8);
|
|
$theme-container-header-footer-background-color: rgba(#FFF, .6);
|
|
$theme-container-border-inner: 1px solid $color-border-2;
|
|
$theme-container-border-outer: 1px solid $color-border-1;
|
|
|
|
// 顶栏和侧边栏中展开的菜单 hover 状态下
|
|
$theme-menu-item-color-hover: #293849;
|
|
$theme-menu-item-background-color-hover: #ecf5ff;
|
|
|
|
// 顶栏上的文字颜色
|
|
$theme-header-item-color: $color-text-normal;
|
|
$theme-header-item-background-color: transparent;
|
|
// 顶栏上的项目在 hover 时
|
|
$theme-header-item-color-hover: $color-text-main;
|
|
$theme-header-item-background-color-hover: rgba(#000, .02);
|
|
// 顶栏上的项目在 focus 时
|
|
$theme-header-item-color-focus: $color-text-main;
|
|
$theme-header-item-background-color-focus: rgba(#000, .02);
|
|
// 顶栏上的项目在 active 时
|
|
$theme-header-item-color-active: $color-text-main;
|
|
$theme-header-item-background-color-active: rgba(#000, .03);
|
|
|
|
// 侧边栏上的文字颜色
|
|
$theme-aside-item-color: $color-text-normal;
|
|
$theme-aside-item-background-color: transparent;
|
|
// 侧边栏上的项目在 hover 时
|
|
$theme-aside-item-color-hover: $color-text-main;
|
|
$theme-aside-item-background-color-hover: rgba(#000, .02);
|
|
// 侧边栏上的项目在 focus 时
|
|
$theme-aside-item-color-focus: $color-text-main;
|
|
$theme-aside-item-background-color-focus: rgba(#000, .02);
|
|
// 侧边栏上的项目在 active 时
|
|
$theme-aside-item-color-active: $color-text-main;
|
|
$theme-aside-item-background-color-active: rgba(#000, .03); |