mirror of
https://github.com/yattee/yattee.git
synced 2024-12-23 05:53:41 +00:00
16 lines
217 B
CSS
16 lines
217 B
CSS
|
:root {
|
||
|
color-scheme: light dark;
|
||
|
}
|
||
|
|
||
|
body {
|
||
|
width: 100px;
|
||
|
padding: 10px;
|
||
|
|
||
|
font-family: system-ui;
|
||
|
text-align: center;
|
||
|
}
|
||
|
|
||
|
@media (prefers-color-scheme: dark) {
|
||
|
/* Dark Mode styles go here. */
|
||
|
}
|