mirror of
https://github.com/swc-project/swc.git
synced 2024-12-12 02:59:49 +03:00
16 lines
171 B
CSS
16 lines
171 B
CSS
:root {
|
|
--main-color: #06c;
|
|
--accent-color: #006;
|
|
}
|
|
|
|
.foo {
|
|
--fg-color: blue;
|
|
}
|
|
|
|
#foo h1 {
|
|
color: var(--main-color);
|
|
}
|
|
|
|
@--custom {}
|
|
@--library1-custom {}
|