mirror of
https://github.com/tusen-ai/naive-ui.git
synced 2024-12-09 04:31:35 +08:00
22 lines
400 B
SCSS
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'; |