mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-25 16:07:19 +08:00
27 lines
518 B
SCSS
27 lines
518 B
SCSS
@import "./transition";
|
|
@import "./element-plus";
|
|
@import "./sidebar";
|
|
@import "./dark";
|
|
|
|
/* 自定义全局 CssVar */
|
|
:root {
|
|
/* 左侧菜单展开、收起动画时长 */
|
|
--pure-transition-duration: 0.3s;
|
|
|
|
/* 常用border-color 需要时可取用 */
|
|
--pure-border-color: rgb(5 5 5 / 6%);
|
|
|
|
/* switch关闭状态下的color 需要时可取用 */
|
|
--pure-switch-off-color: #a6a6a6;
|
|
}
|
|
|
|
/* 灰色模式 */
|
|
.html-grey {
|
|
filter: grayscale(100%);
|
|
}
|
|
|
|
/* 色弱模式 */
|
|
.html-weakness {
|
|
filter: invert(80%);
|
|
}
|