[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 '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;