6 lines
82 B
CSS
6 lines
82 B
CSS
|
:root {
|
||
|
--bgcolour: #313131;
|
||
|
}
|
||
|
body {
|
||
|
background-color: var(--bgcolour);
|
||
|
}
|