Files
huangguo_admin/src/styles/variables.scss
T
2025-06-10 17:11:41 +07:00

83 lines
2.1 KiB
SCSS
Executable File

// base color
$blue:#324157;
$light-blue:#3A71A8;
$red:#C03639;
$pink: #E65D6E;
$green: #30B08F;
$tiffany: #4AB7BD;
$yellow:rgb(254,184,94);
$panGreen: #30B08F;
$blackText: #333;
$white:#fff;
// $cadetblue:cadetblue;//登陆界面背景色
$cadetblue:#362720;//登陆界面背景色
$menuFontColor:#ffffff;
$loginBtnColor:#6954E7;//登陆页登陆按钮颜色
$gray:$white;
// theme
$themeShallowColor: #362720;//头部header背景色
$themeColor:#fff; //header部分字体颜色
// $themeBtnColor:#13ce66;//header部分button颜色
$themeBtnColor:#6954E7;
$themeDeepColor:#6954E7;
$themeBg :$gray;
// $themeTableTitlebgColor:#30B08F;// 表单头部颜色
$themeTableTitlebgColor:#6954E7;
$themeTableTitleColor:#fff;//表单头部字体颜色
$themeTableFooterColor:#6954E7;
// sidebar
$menuText:$white; // 主菜单字体颜色
$secondMenuText:#fff;//二级菜单字体颜色
$submenuText:$blackText;
$menuHoverText:$white;
$subMenuHoverText:$white;
$menuActiveText:red;
$subMenuActiveText:rgba(#6954E7,0.5); // https://github.com/ElemeFE/element/issues/12951
// $selectMenuBg:#13ce66;// 选中的子菜单背景色
// $noselectMenuBg:hsl(148, 66%, 94%);// 未选中子菜单背景色
$selectMenuBg:#6954E7;
$noselectMenuBg:#F6E9C7;
$mainContainerViewBgColor:#362720; // 主内容显示区域背景颜色
$mainContainerViewTableColor :$themeBg; // 主内容显示内部表单背景颜色
$menuBg:#362720;//侧边菜单背景
$menuHover:$themeDeepColor;//侧边栏hover颜色
// $menuHover:rgba(241, 237, 237, 0.1);//侧边栏hover颜色
$subMenuBg:$themeColor;
$subMenuHover:$themeColor;
$sideBarWidth: 180px;
// the :export directive is the magic sauce for webpack
// https://www.bluematador.com/blog/how-to-share-variables-between-js-and-sass
:export {
menuText: $menuText;
menuActiveText: $menuActiveText;
subMenuActiveText: $subMenuActiveText;
menuBg: $menuBg;
menuHover: $menuHover;
subMenuBg: $subMenuBg;
subMenuHover: $subMenuHover;
sideBarWidth: $sideBarWidth;
selectMenuBg:$selectMenuBg;
noselectMenuBg:$noselectMenuBg;
themeColor:$themeColor;
themeShallowColor:$themeShallowColor;
themeBg:$themeBg;
themeDeepColor:$themeDeepColor;
}