aboutsummaryrefslogtreecommitdiff
path: root/docs/4.0/getting-started
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-10-01 12:26:02 -0700
committerMark Otto <[email protected]>2017-10-02 20:44:23 -0700
commit04298fcd105da4e11c0ef84eb0d38eba8dd75390 (patch)
treeaf2b9ec98fa31e57d779e48c24ad4f70f47f5174 /docs/4.0/getting-started
parent201303a9d9a311f4edacd659463451f89255e4b1 (diff)
downloadbootstrap-04298fcd105da4e11c0ef84eb0d38eba8dd75390.tar.xz
bootstrap-04298fcd105da4e11c0ef84eb0d38eba8dd75390.zip
quote those to match source code
Diffstat (limited to 'docs/4.0/getting-started')
-rw-r--r--docs/4.0/getting-started/theming.md26
1 files changed, 13 insertions, 13 deletions
diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md
index aac906f71..f40ae51f4 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 %}