summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHaoran S. Diao <0@hairydiode.xyz>2019-05-05 19:42:36 -0400
committerHaoran S. Diao <0@hairydiode.xyz>2019-05-05 19:42:36 -0400
commit68a10effca46b70d692b984f7922ee93e1e41a30 (patch)
treed066f49de9c0f9cd27a09546c11313418c36fc8d
parenteb0cb7d4c8aa9f528e4004b1e8cceabb540baa7e (diff)
Changed colorscheme to something more accessible
-rw-r--r--style.css12
1 files changed, 8 insertions, 4 deletions
diff --git a/style.css b/style.css
index d9ec5eb..de3bbef 100644
--- a/style.css
+++ b/style.css
@@ -1,3 +1,6 @@
+/*
+ * Colors from randoma11y.com for accessibility.
+ */
/* use local iokalant fontface */
@font-face {
font-family:
@@ -20,7 +23,8 @@
}
* {
font-family: Console, iol, io, monospace;
- color: #000000;
+ color: #ffffff;
+ background-color: #241f3b;
margin: 0px; /*default margins get in the way*/
/*font size sets font height, assuming font width = 1/2 font height,
* then fh /2 * 80 = 60vw
@@ -31,12 +35,12 @@
}
a {
text-decoration: none; /*no underline*/
- color: #801040;
+ color: #89bdcd;
}
a:hover {
- color: #ffffff;
- background-color: #801040;
+ color: #241f3b;
+ background-color: #89bdcd;
}
.content {
display: block;