[TASK] Improve night colors

This commit is contained in:
Xaver Maierhofer 2018-07-25 23:46:32 +02:00
parent 81a26b5560
commit bfb1111744
No known key found for this signature in database
GPG Key ID: 7FDCE23FD2EC9FE8
1 changed files with 15 additions and 2 deletions

View File

@ -2,13 +2,17 @@
@import 'modules/variables'; @import 'modules/variables';
@import 'custom/variables'; @import 'custom/variables';
$color-white: #111; $color-white: #1c1c13;
$color-black: #fefefe; $color-black: #fefefe;
$color-map-background: #0d151c; $color-map-background: #0d151c;
$color-online: lighten($color-online, 25%);
html { html {
//@import 'modules/base'; //@import 'modules/base';
body { body,
textarea,
input {
background: $color-white; background: $color-white;
color: lighten($color-black, 100); color: lighten($color-black, 100);
} }
@ -18,6 +22,15 @@ html {
border-bottom-color: lighten($color-white, 10%); border-bottom-color: lighten($color-white, 10%);
} }
a {
color: $color-online;
text-decoration: none;
&:focus {
color: darken($color-online, 15%);
}
}
//@import 'modules/leaflet'; //@import 'modules/leaflet';
.leaflet-container { .leaflet-container {
background: $color-map-background; background: $color-map-background;