Commit 04298fcd authored by Mark Otto's avatar Mark Otto Committed by Mark Otto
Browse files

quote those to match source code

parent 201303a9
Showing with 13 additions and 13 deletions
+13 -13
...@@ -86,8 +86,8 @@ For example, to modify an existing color in our `$theme-colors` map, add the fol ...@@ -86,8 +86,8 @@ For example, to modify an existing color in our `$theme-colors` map, add the fol
{% highlight scss %} {% highlight scss %}
$theme-colors: ( $theme-colors: (
primary: $red, "primary": $red,
danger: $orange "danger": $orange
); );
{% endhighlight %} {% endhighlight %}
...@@ -186,17 +186,17 @@ Within `_variables.scss`, you'll find our color variables and Sass map. Here's a ...@@ -186,17 +186,17 @@ Within `_variables.scss`, you'll find our color variables and Sass map. Here's a
{% highlight scss %} {% highlight scss %}
$colors: ( $colors: (
red: $red, "red": $red,
orange: $orange, "orange": $orange,
yellow: $yellow, "yellow": $yellow,
green: $green, "green": $green,
teal: $teal, "teal": $teal,
blue: $blue, "blue": $blue,
pink: $pink, "pink": $pink,
purple: $purple, "purple": $purple,
white: $white, "white": $white,
gray: $gray-600, "gray": $gray-600,
gray-dark: $gray-900 "gray-dark": $gray-900
) !default; ) !default;
{% endhighlight %} {% endhighlight %}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment