Former-commit-id: f1da129af62daafbeecba3a8e8897b3ee21d8228 Former-commit-id: a91ec1952635c29e0ec1bee92c3fafba0abeb597 Former-commit-id: 5893dcefdbe8a770fac54118995009c80e28dfcb
38 lines
1.4 KiB
SCSS
38 lines
1.4 KiB
SCSS
// 主题名称
|
|
$theme-name: 'star';
|
|
// 主题背景颜色
|
|
$theme-bg-color: #EFF4F8;
|
|
// 主题背景图片
|
|
$theme-bg-image: '/static/image/bg/star.jpg';
|
|
// container组件的边框
|
|
$theme-container-border: 1px solid #d8dfea;
|
|
|
|
// 顶栏和侧边栏中展开的菜单 hover 状态下
|
|
$theme-menu-item-color-hover: #FFF;
|
|
$theme-menu-item-background-color-hover: #187181;
|
|
|
|
// 顶栏上的文字颜色
|
|
$theme-header-item-color: #FFF;
|
|
$theme-header-item-background-color: transparent;
|
|
// 顶栏上的项目在 hover 时
|
|
$theme-header-item-color-hover: #FFF;
|
|
$theme-header-item-background-color-hover: rgba(#FFF, .3);
|
|
// 顶栏上的项目在 focus 时
|
|
$theme-header-item-color-focus: #FFF;
|
|
$theme-header-item-background-color-focus: rgba(#FFF, .3);
|
|
// 顶栏上的项目在 active 时
|
|
$theme-header-item-color-active: #FFF;
|
|
$theme-header-item-background-color-active: rgba(#000, .3);
|
|
|
|
// 侧边栏上的文字颜色
|
|
$theme-aside-item-color: #FFF;
|
|
$theme-aside-item-background-color: transparent;
|
|
// 侧边栏上的项目在 hover 时
|
|
$theme-aside-item-color-hover: #FFF;
|
|
$theme-aside-item-background-color-hover: rgba(#FFF, .3);
|
|
// 侧边栏上的项目在 focus 时
|
|
$theme-aside-item-color-focus: #FFF;
|
|
$theme-aside-item-background-color-focus: rgba(#FFF, .3);
|
|
// 侧边栏上的项目在 active 时
|
|
$theme-aside-item-color-active: #FFF;
|
|
$theme-aside-item-background-color-active: rgba(#000, .3); |