From 9be55ab6dcddcca9db80ecae0bf31b4178fe2518 Mon Sep 17 00:00:00 2001 From: Captain ALM Date: Wed, 27 Jul 2022 00:18:34 +0100 Subject: [PATCH] Add light theme. --- dark.css | 15 +++------------ index.go.html | 5 +++++ light.css | 35 +++++++++++++++++++++++++++++++++++ 3 files changed, 43 insertions(+), 12 deletions(-) create mode 100644 light.css diff --git a/dark.css b/dark.css index 32609de..933eacc 100644 --- a/dark.css +++ b/dark.css @@ -6,22 +6,13 @@ body{ a{ color: #b0b0f0; } -.header, .nav{ +.header, .nav, footer{ background-color: #1d1d1e; } -.home-button{ +.home-button, .menu a{ color: #e0e0e0; } -.home-button:hover{ - background-color: #606061; -} -.menu a{ - color: #e0e0e0; -} -.menu a:hover{ - background-color: #606061; -} -.hmb:hover{ +.home-button:hover, .menu a:hover, .hmb:hover{ background-color: #606061; } .hmb-line, .hmb-line::before, .hmb-line::after{ diff --git a/index.go.html b/index.go.html index 7915dbb..57aa812 100644 --- a/index.go.html +++ b/index.go.html @@ -86,5 +86,10 @@ {{ end }} + \ No newline at end of file diff --git a/light.css b/light.css new file mode 100644 index 0000000..3871dea --- /dev/null +++ b/light.css @@ -0,0 +1,35 @@ +body{ + color: #060606; + background-color: #fafaf9; + border-color: #969696; +} +a{ + color: #4f4fff; +} +.header, .nav, footer{ + background-color: #e2e2e1; +} +.home-button, .menu a{ + color: #1f1f1f; +} +.home-button:hover, .menu a:hover, .hmb:hover{ + background-color: #9f9f9e; +} +.hmb-line, .hmb-line::before, .hmb-line::after{ + background: #1f1f1f; +} +.main-box{ + background-color: #f0f0f0; +} +.item-table{ + background-color: #c0c0c0; +} +.item-table > div > div, .item-table-caption{ + border-color: #0a214c; +} +.image-box{ + background-color: #b0b0b0; +} +.image-box > a{ + border-color: #4f4f0f; +} \ No newline at end of file