aboutsummaryrefslogtreecommitdiff
path: root/docs/4.0
diff options
context:
space:
mode:
authorMark Otto <[email protected]>2017-06-29 23:15:16 -0700
committerMark Otto <[email protected]>2017-06-29 23:15:27 -0700
commit964e06800a52a6a267f3f06aaffb3b72390adb3d (patch)
tree81436b6ddc8a6c95582f1480de748abfec8622e1 /docs/4.0
parenta21a9f341b96c7dea3814dbc43690cdf4ead063a (diff)
downloadbootstrap-964e06800a52a6a267f3f06aaffb3b72390adb3d.tar.xz
bootstrap-964e06800a52a6a267f3f06aaffb3b72390adb3d.zip
Drop the old $gray- variables for the new color range
Diffstat (limited to 'docs/4.0')
-rw-r--r--docs/4.0/getting-started/options.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/docs/4.0/getting-started/options.md b/docs/4.0/getting-started/options.md
index 4dfac50cb..387b68a54 100644
--- a/docs/4.0/getting-started/options.md
+++ b/docs/4.0/getting-started/options.md
@@ -13,8 +13,8 @@ Every Sass variable in Bootstrap 4 includes the `!default` flag, meaning you can
For example, to change out the `background-color` and `color` for the `<body>`, you'd do the following:
{% highlight scss %}
-$body-bg: $gray-dark;
-$body-color: $gray-light;
+$body-bg: $gray-900;
+$body-color: $gray-600;
{% endhighlight %}
Do the same for any variable you need to override, including the global options listed below.
@@ -103,8 +103,8 @@ $colors: (
pink: $pink,
purple: $purple,
white: $white,
- gray: $gray-light,
- gray-dark: $gray-dark
+ gray: $gray-600,
+ gray-dark: $gray-900
) !default;
{% endhighlight %}