diff options
| author | Mark Otto <[email protected]> | 2017-10-01 12:54:24 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2017-10-02 20:44:23 -0700 |
| commit | 9db52f9a47453db8998d3619afd14995f00fb7d2 (patch) | |
| tree | 3659d69a7c9c8a7b22e7f1882ed0697872797449 | |
| parent | 04298fcd105da4e11c0ef84eb0d38eba8dd75390 (diff) | |
| download | bootstrap-9db52f9a47453db8998d3619afd14995f00fb7d2.tar.xz bootstrap-9db52f9a47453db8998d3619afd14995f00fb7d2.zip | |
add new thing to a map
| -rw-r--r-- | docs/4.0/getting-started/theming.md | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md index f40ae51f4..cc5bdfe7d 100644 --- a/docs/4.0/getting-started/theming.md +++ b/docs/4.0/getting-started/theming.md @@ -91,9 +91,13 @@ $theme-colors: ( ); {% endhighlight %} -**TODO:** -- Adding an option -- Removing an option (replacing the map wholesale) +To add a new color to `$theme-colors`, add the new key and value: + +{% highlight scss %} +$theme-colors: ( + "custom-color": #900 +); +{% endhighlight %} ### Functions |
