11 lines
199 B
SCSS
11 lines
199 B
SCSS
@use '../tools';
|
|
|
|
@include tools.layer('utilities.theme-base') {
|
|
.v-theme-on-light {
|
|
color: rgb(var(--v-theme-on-light));
|
|
}
|
|
.v-theme-on-dark {
|
|
color: rgb(var(--v-theme-on-dark));
|
|
}
|
|
}
|