mirror of
https://github.com/DerTyp7/explainegy-nextjs.git
synced 2025-10-29 12:52:13 +01:00
14 lines
140 B
CSS
14 lines
140 B
CSS
:root {
|
|
--test-test: red;
|
|
}
|
|
|
|
.dark {
|
|
--test-test: black;
|
|
}
|
|
|
|
.test {
|
|
background-color: var(--test-test);
|
|
height: 100px;
|
|
width: 100px;
|
|
}
|