10 lines
155 B
CSS
10 lines
155 B
CSS
:root {
|
|
--foreground-rgb: 255, 255, 255;
|
|
--background: 0, 0, 0;
|
|
}
|
|
|
|
body {
|
|
color: rgb(var(--foreground-rgb));
|
|
background: rgb(var(--background));
|
|
}
|