7 lines
101 B
CSS
7 lines
101 B
CSS
* {
|
|
color: var(--test3);
|
|
--test1: test;
|
|
--test2: var(--test1, red);
|
|
--test3: var(--test2);
|
|
}
|