From bfb11117440f610b2e26715d511c89ea87d6d70c Mon Sep 17 00:00:00 2001 From: Xaver Maierhofer Date: Wed, 25 Jul 2018 23:46:32 +0200 Subject: [PATCH] [TASK] Improve night colors --- scss/night.scss | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/scss/night.scss b/scss/night.scss index 38a7adf..12590b8 100644 --- a/scss/night.scss +++ b/scss/night.scss @@ -2,13 +2,17 @@ @import 'modules/variables'; @import 'custom/variables'; -$color-white: #111; +$color-white: #1c1c13; $color-black: #fefefe; $color-map-background: #0d151c; +$color-online: lighten($color-online, 25%); + html { //@import 'modules/base'; - body { + body, + textarea, + input { background: $color-white; color: lighten($color-black, 100); } @@ -18,6 +22,15 @@ html { border-bottom-color: lighten($color-white, 10%); } + a { + color: $color-online; + text-decoration: none; + + &:focus { + color: darken($color-online, 15%); + } + } + //@import 'modules/leaflet'; .leaflet-container { background: $color-map-background;