Just learning how to make a basic extension. Creating an interface and setting up some basic plumbing.
16 lines
217 B
CSS
16 lines
217 B
CSS
:root {
|
|
color-scheme: light dark;
|
|
}
|
|
|
|
body {
|
|
width: 500px;
|
|
padding: 10px;
|
|
|
|
font-family: system-ui;
|
|
text-align: center;
|
|
}
|
|
|
|
@media (prefers-color-scheme: dark) {
|
|
/* Dark Mode styles go here. */
|
|
}
|