aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/theming.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md
index c4c50dc4b..15c5caa0b 100644
--- a/docs/4.0/getting-started/theming.md
+++ b/docs/4.0/getting-started/theming.md
@@ -228,17 +228,19 @@ Within `_variables.scss`, you'll find our color variables and Sass map. Here's a
{% highlight scss %}
$colors: (
+ "blue": $blue,
+ "indigo": $indigo,
+ "purple": $purple,
+ "pink": $pink,
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"teal": $teal,
- "blue": $blue,
- "pink": $pink,
- "purple": $purple,
+ "cyan": $cyan,
"white": $white,
"gray": $gray-600,
- "gray-dark": $gray-900
+ "gray-dark": $gray-800
) !default;
{% endhighlight %}