naive-ui/demo/styles/test-customize-style-scheme.scss
2020-07-08 22:11:02 +08:00

22 lines
400 B
SCSS

@function get-primary-color ($theme) {
@if $theme == 'light' {
@return rgb(255, 0, 0);
}
@return null;
}
@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;
}
@import '../../src/_styles/index.scss';