summaryrefslogtreecommitdiff
path: root/site/style.css
diff options
context:
space:
mode:
Diffstat (limited to 'site/style.css')
-rw-r--r--site/style.css26
1 files changed, 26 insertions, 0 deletions
diff --git a/site/style.css b/site/style.css
index b8be0dd..08f22a6 100644
--- a/site/style.css
+++ b/site/style.css
@@ -30,3 +30,29 @@ textarea {
resize: vertical;
min-height: 2em;
}
+
+
+@media screen and (prefers-color-scheme: dark) {
+
+ html {
+ background-color: black;
+ color: white;
+ }
+
+ body {
+ background-color: black;
+ box-shadow: none;
+ border: 2px solid white;
+ border-radius: 1em;
+ }
+
+ .error {
+ color: red;
+ }
+
+ textarea {
+ color: white;
+ background-color: black;
+ }
+
+}