BZPT.JKFZJC_FrontEnd/src/assets/scss/themes/_light.scss

14 lines
242 B
SCSS
Raw Normal View History

2025-07-07 14:14:38 +08:00
@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};
}
}