8 lines
91 B
CSS
8 lines
91 B
CSS
|
:root {
|
||
|
--bg: #242424;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
background-color: var(--bg);
|
||
|
color: #ffffff;
|
||
|
}
|