From 04298fcd105da4e11c0ef84eb0d38eba8dd75390 Mon Sep 17 00:00:00 2001
From: Mark Otto <markdotto@gmail.com>
Date: Sun, 1 Oct 2017 12:26:02 -0700
Subject: [PATCH] quote those to match source code

---
 docs/4.0/getting-started/theming.md | 26 +++++++++++++-------------
 1 file changed, 13 insertions(+), 13 deletions(-)

diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md
index aac906f71b..f40ae51f47 100644
--- a/docs/4.0/getting-started/theming.md
+++ b/docs/4.0/getting-started/theming.md
@@ -86,8 +86,8 @@ For example, to modify an existing color in our `$theme-colors` map, add the fol
 
 {% highlight scss %}
 $theme-colors: (
-  primary: $red,
-  danger: $orange
+  "primary": $red,
+  "danger": $orange
 );
 {% endhighlight %}
 
@@ -186,17 +186,17 @@ Within `_variables.scss`, you'll find our color variables and Sass map. Here's a
 
 {% highlight scss %}
 $colors: (
-  red: $red,
-  orange: $orange,
-  yellow: $yellow,
-  green: $green,
-  teal: $teal,
-  blue: $blue,
-  pink: $pink,
-  purple: $purple,
-  white: $white,
-  gray: $gray-600,
-  gray-dark: $gray-900
+  "red": $red,
+  "orange": $orange,
+  "yellow": $yellow,
+  "green": $green,
+  "teal": $teal,
+  "blue": $blue,
+  "pink": $pink,
+  "purple": $purple,
+  "white": $white,
+  "gray": $gray-600,
+  "gray-dark": $gray-900
 ) !default;
 {% endhighlight %}
 
-- 
GitLab