diff options
author | Jonas Smedegaard <dr@jones.dk> | 2017-09-01 12:28:24 +0200 |
---|---|---|
committer | Jonas Smedegaard <dr@jones.dk> | 2017-09-01 12:28:24 +0200 |
commit | a7a9df0b74ac10cd038f09fa9ae0bd0867bdba39 (patch) | |
tree | 48413d937cdbd8431930910df9f73cfece2ee6f1 /style.scss | |
parent | 1f6d907a7bd287ae9b243648634901c192452a1d (diff) |
Use color palette from Paletton.com.
Diffstat (limited to 'style.scss')
-rw-r--r-- | style.scss | 11 |
1 files changed, 6 insertions, 5 deletions
@@ -25,7 +25,7 @@ max-width: 45em; margin: 0 auto; padding: .5em 2em; - background-color: $background_color; + background-color: $color-primary-1; } // layout - main content @@ -94,7 +94,7 @@ a { color: transparent; &:hover { - color: $spot_primary_color; + color: $color-complement-0; text-decoration: none; } } @@ -104,14 +104,15 @@ // // Grey underlay, Helvetica text body { - background-color: $spot_primary_color; + background-color: $color-primary-0; font-family: Helvetica Neue, Helvetica, Arial, sans-serif; } -// Anchors +// Links // -// Underlined only when hovered +// Use primary color; underlined only when hovered a { + @include link-colors($color-complement-0, $color-complement-2); @include hover-link; } |