summaryrefslogtreecommitdiff
path: root/style.scss
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2017-09-01 12:28:24 +0200
committerJonas Smedegaard <dr@jones.dk>2017-09-01 12:28:24 +0200
commita7a9df0b74ac10cd038f09fa9ae0bd0867bdba39 (patch)
tree48413d937cdbd8431930910df9f73cfece2ee6f1 /style.scss
parent1f6d907a7bd287ae9b243648634901c192452a1d (diff)
Use color palette from Paletton.com.
Diffstat (limited to 'style.scss')
-rw-r--r--style.scss11
1 files changed, 6 insertions, 5 deletions
diff --git a/style.scss b/style.scss
index 6f76956..e85731e 100644
--- a/style.scss
+++ b/style.scss
@@ -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;
}