generated from argyleink/vite-postcss-preset-env
-
Notifications
You must be signed in to change notification settings - Fork 205
Open
Labels
Description
@function --light-dark(--light, --dark) {
result: var(--light);
@container style(--theme: dark) {
result: var(--dark);
}
@container style(--theme: system) {
@media (prefers-color-scheme: dark) {
result: var(--dark);
}
}
}Creating a way to import these and even postcss-jit-prop them, will be amazing
mobalti and Blumedfelix-bohlin