naive-ui/demo/styles/test-customize-style-scheme.scss

22 lines
400 B
SCSS
Raw Normal View History

2020-06-18 01:33:55 +08:00
@function get-primary-color ($theme) {
@if $theme == 'light' {
@return rgb(255, 0, 0);
}
@return null;
}
2020-07-08 22:11:02 +08:00
@function get-primary-hover-color ($theme) {
@if $theme == 'light' {
@return rgb(0, 255, 0);
}
@return null;
}
@function get-primary-active-color ($theme) {
@if $theme == 'light' {
@return rgb(0, 0, 255);
}
@return null;
}
2020-06-18 01:33:55 +08:00
@import '../../src/_styles/index.scss';