mirror of
https://gitee.com/dromara/go-view.git
synced 2026-04-23 00:00:12 +08:00
24 lines
642 B
SCSS
24 lines
642 B
SCSS
@import './var.scss';
|
|
|
|
$light: (
|
|
// 文字颜色
|
|
color: $--color-text,
|
|
// aside 背景
|
|
aside-background_color: $--color-light-fill-1,
|
|
//背景
|
|
background_color: $--color-light-fill-3,
|
|
//渐变背景
|
|
background-image:
|
|
linear-gradient(120deg, $--color-light-fill 0%, $--color-light-fill 100%),
|
|
// 斑点背景
|
|
background-point:
|
|
(
|
|
linear-gradient($--color-light-fill-1 14px, transparent 0),
|
|
linear-gradient(90deg, transparent 14px, $--color-dark-bg-5 0)
|
|
),
|
|
//毛玻璃
|
|
filter-color: $--filter-color-login-light,
|
|
// hover 边框颜色
|
|
hover-border-color: $--color-light-fill-1
|
|
);
|