Improve colors

This commit is contained in:
Daniel 2018-09-17 19:31:33 +02:00
parent 0bb28b0e02
commit 5f63062f19
2 changed files with 9 additions and 3 deletions

View file

@ -1,12 +1,15 @@
body, .ui.header, h1, h2, h3, h4, h5, h6, p {
font-family: 'Roboto', 'Lato', 'Helvetica Neue', Arial, Helvetica, sans-serif;
}
a{
color: $primary;
color: $anchor;
}
a:hover{
color: $secondary;
color: $anchor_hover;
text-decoration: underline;
}
.color-primary {
color: $primary;
}

View file

@ -6,10 +6,13 @@ $fill_medium: #38465c !default;
$fill_dark: #222a37 !default;
// adaptions
$background_main: #e0e1e2 !default;
$background_main: #f7f7f7 !default;
$fill_lighter: #788294 !default;
$secondary: $fill_medium;
$anchor: #0078ff;
$anchor_hover: #258bff;
// other colors
$color_mine_shaft_approx: #333 !default;
$color_alto_approx: #ddd !default;