27 lines
363 B
SCSS
27 lines
363 B
SCSS
$-colors: (
|
|
'primary': (
|
|
'base': #E93323,
|
|
),
|
|
'success': (
|
|
'base': #67c23a,
|
|
),
|
|
'warning': (
|
|
'base': #e6a23c,
|
|
),
|
|
'danger': (
|
|
'base': #f56c6c,
|
|
),
|
|
'error': (
|
|
'base': #E93323,
|
|
),
|
|
'info': (
|
|
'base': #909399,
|
|
),
|
|
);
|
|
|
|
@forward 'element-plus/theme-chalk/src/common/var.scss' with (
|
|
$colors: $-colors
|
|
);
|
|
|
|
@use './dark.scss';
|