From f593b889e12c596c9caa93c69f9c85b8286658a5 Mon Sep 17 00:00:00 2001 From: Jonah Aragon Date: Mon, 3 May 2021 14:17:00 -0500 Subject: [PATCH] Expose additional colors --- _includes/blog-card.html | 4 ++-- _includes/breadcrumbs.html | 2 +- _layouts/post.html | 2 +- _sass/variables.scss | 18 ++++++++++++++++++ 4 files changed, 22 insertions(+), 4 deletions(-) diff --git a/_includes/blog-card.html b/_includes/blog-card.html index 3f1fbc4c..b0619921 100644 --- a/_includes/blog-card.html +++ b/_includes/blog-card.html @@ -1,6 +1,6 @@ -
+
-
+ diff --git a/_layouts/post.html b/_layouts/post.html index bb2298fc..8568a35e 100644 --- a/_layouts/post.html +++ b/_layouts/post.html @@ -2,7 +2,7 @@ layout: default --- -
+
diff --git a/_sass/variables.scss b/_sass/variables.scss index 3ba4d3bf..372603da 100644 --- a/_sass/variables.scss +++ b/_sass/variables.scss @@ -42,6 +42,24 @@ $dropdown-link-color: $navbar-light-color; $navbar-light-active-color: $dark; $dropdown-link-hover-color: $navbar-light-active-color; +/* Extra Colors */ +$theme-colors: (); +$theme-colors: map-merge( + ( + "gray": $gray-600, + "blue": $blue, + "indigo": $indigo, + "purple": $purple, + "red": $red, + "orange": $orange, + "yellow": $yellow, + "green": $green, + "teal": $teal, + "cyan": $cyan + ), + $theme-colors +); + /* Cards */ $card-shadow: 0 3px 10px 0 rgba(150, 150, 150, .2); $card-success-border: rgba(40, 167, 69, .5);