From 9db52f9a47453db8998d3619afd14995f00fb7d2 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Sun, 1 Oct 2017 12:54:24 -0700 Subject: [PATCH] add new thing to a map --- docs/4.0/getting-started/theming.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md index f40ae51f47..cc5bdfe7d3 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