aboutsummaryrefslogtreecommitdiff
path: root/docs/4.0/getting-started
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-10-02 20:43:47 -0700
committerMark Otto <[email protected]>2017-10-02 20:44:23 -0700
commitcd8fd1d2bcc101e6e3066f142a61f92babb191d2 (patch)
treebeec6de2e753fe0b2202f7d69f9d2a1d5a9ff322 /docs/4.0/getting-started
parentad255cf725bd7af62a322a3f500b7079fa26d3e8 (diff)
downloadbootstrap-cd8fd1d2bcc101e6e3066f142a61f92babb191d2.tar.xz
bootstrap-cd8fd1d2bcc101e6e3066f142a61f92babb191d2.zip
change away from vars
Diffstat (limited to 'docs/4.0/getting-started')
-rw-r--r--docs/4.0/getting-started/theming.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md
index b74a8b38d..d03a25422 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": #0074d9,
+ "danger": #ff4136
);
{% endhighlight %}