14 lines
242 B
SCSS
14 lines
242 B
SCSS
|
@use '../variables' as v;
|
||
|
|
||
|
$theme-colors: (
|
||
|
'background': #ffffff,
|
||
|
'text': #333333,
|
||
|
'border': #e5e5e5
|
||
|
);
|
||
|
|
||
|
// 导出主题变量
|
||
|
:root[data-theme='light'] {
|
||
|
@each $name, $color in $theme-colors {
|
||
|
--theme-#{$name}: #{$color};
|
||
|
}
|
||
|
}
|