diff options
| author | Mark Otto <[email protected]> | 2017-10-01 12:26:02 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-02 20:44:23 -0700 |
| commit | 04298fcd105da4e11c0ef84eb0d38eba8dd75390 (patch) | |
| tree | af2b9ec98fa31e57d779e48c24ad4f70f47f5174 /docs | |
| parent | 201303a9d9a311f4edacd659463451f89255e4b1 (diff) | |
| download | bootstrap-04298fcd105da4e11c0ef84eb0d38eba8dd75390.tar.xz bootstrap-04298fcd105da4e11c0ef84eb0d38eba8dd75390.zip | |
quote those to match source code
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/4.0/getting-started/theming.md | 26 |
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 %} |
