From cd8fd1d2bcc101e6e3066f142a61f92babb191d2 Mon Sep 17 00:00:00 2001 From: Mark Otto Date: Mon, 2 Oct 2017 20:43:47 -0700 Subject: [PATCH] change away from vars --- docs/4.0/getting-started/theming.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md index b74a8b38df..d03a254224 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 %} -- 2.47.2