26 lines
342 B
SCSS
26 lines
342 B
SCSS
$--colors: (
|
|
"primary": (
|
|
"base": #2F9688,
|
|
),
|
|
"success": (
|
|
"base": #21ba45,
|
|
),
|
|
"warning": (
|
|
"base": #f2711c,
|
|
),
|
|
"danger": (
|
|
"base": #db2828,
|
|
),
|
|
"error": (
|
|
"base": #db2828,
|
|
),
|
|
"info": (
|
|
"base": #909399,
|
|
)
|
|
);
|
|
|
|
|
|
@forward "element-plus/theme-chalk/src/dark/var.scss" with (
|
|
$colors: $--colors
|
|
);
|