Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorJesse Mandel <jesse.mandel@gmail.com>2017-10-13 13:34:27 +0300
committerXhmikosR <xhmikosr@gmail.com>2017-10-13 13:34:27 +0300
commit991cbe74d0004f443fc14c748dd1d8da424d7dde (patch)
tree6ce49b4b0c30872e482acfb893ff1c74d5725f52 /docs
parentc8ee8509cb72edd2f758398664bed8a0eeeb2dc4 (diff)
Update colors in _data and theming.md to match _variables.scss (#24355)
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/theming.md10
1 files changed, 6 insertions, 4 deletions
diff --git a/docs/4.0/getting-started/theming.md b/docs/4.0/getting-started/theming.md
index c4c50dc4b1..15c5caa0be 100644
--- a/docs/4.0/getting-started/theming.md
+++ b/docs/4.0/getting-started/theming.md
@@ -228,17 +228,19 @@ Within `_variables.scss`, you'll find our color variables and Sass map. Here's a
{% highlight scss %}
$colors: (
+ "blue": $blue,
+ "indigo": $indigo,
+ "purple": $purple,
+ "pink": $pink,
"red": $red,
"orange": $orange,
"yellow": $yellow,
"green": $green,
"teal": $teal,
- "blue": $blue,
- "pink": $pink,
- "purple": $purple,
+ "cyan": $cyan,
"white": $white,
"gray": $gray-600,
- "gray-dark": $gray-900
+ "gray-dark": $gray-800
) !default;
{% endhighlight %}