summaryrefslogtreecommitdiffstats
path: root/static/css/colours.css
diff options
context:
space:
mode:
Diffstat (limited to 'static/css/colours.css')
-rw-r--r--static/css/colours.css66
1 files changed, 66 insertions, 0 deletions
diff --git a/static/css/colours.css b/static/css/colours.css
new file mode 100644
index 0000000..74bdb84
--- /dev/null
+++ b/static/css/colours.css
@@ -0,0 +1,66 @@
+body {
+ background-color: #fffff8;
+ color: #171d30;
+}
+
+.generated-by {
+ color: #505561;
+}
+
+a {
+ color: #00c266;
+}
+
+a:hover {
+ text-decoration: underline;
+}
+
+nav a, .logo a, .post-title a, .social a, .rightcolumn a, dt a {
+ color: #171d30;
+}
+
+nav a:hover, .logo a:hover, .post-title a:hover, .social a:hover, .rightcolumn a:hover, dt a:hover {
+ color: #00c266;
+ text-decoration: none;
+}
+
+th {
+ color: #171d30;
+ border-bottom: 0.1rem solid #60646b;
+}
+
+.codeblock {
+ background-color: #fdf6e3;
+}
+
+.post-meta {
+ color: #505561;
+}
+
+@media (prefers-color-scheme: dark) {
+ body {
+ background-color: #171d30;
+ color: #fffff8;
+ }
+
+ nav a, .logo a, .post-title a, .social a, .rightcolumn a, dt a {
+ color: #fffff8;
+ }
+
+ .generated-by {
+ color: #fffff8;
+ }
+
+ th {
+ color: #fffff8;
+ border-bottom: 0.1rem solid #fffff8;
+ }
+
+ .codeblock {
+ background-color: #1f2538;
+ }
+
+ .post-meta {
+ color: #fffff8;
+ }
+}