From 9c1a807dd6e49a7b00435100d0126b779b442128 Mon Sep 17 00:00:00 2001 From: "Pheng Heong, Tan" Date: Sun, 28 Jun 2020 09:30:01 +0800 Subject: [PATCH] Style various parts of the web-page I adapt the colour scheme called Solarized. Resources: - https://en.wikipedia.org/wiki/Solarized_(color_scheme) - https://ethanschoonover.com/solarized/ --- solarized_light.css | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/solarized_light.css b/solarized_light.css index e596925..c65ac09 100644 --- a/solarized_light.css +++ b/solarized_light.css @@ -1,7 +1,40 @@ :root { + /* a rose by any other name smells as sweet */ --base3: #fdf6e3; + --bg: #fdf6e3; + + /* other flowers */ + --base2: #eee8d5; + --base0: #839496; + --baseEm: #586e75; + + --blue: #268bd2; + --green: #859900; + --cyan: #2aa198; } body { background-color: var(--base3); +} + +p { + color: var(--base0); +} + +a:link { + background-color: var(--base2); + color: var(--blue); +} + +/* mouse over link*/ +a:hover { + color: var(--green); +} + +a:visited { + color: var(--cyan); +} + +h3 { + color: var(--baseEm); } \ No newline at end of file