aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMoris Zen Pasic <[email protected]>2017-09-21 19:44:13 +0200
committerJohann-S <[email protected]>2017-09-27 09:36:42 +0200
commit4cfe228151bf75a932537b01e14466d9a2d45807 (patch)
tree5d5dc60f10211fbc5e978569cbc61809c0530f26 /docs
parentbc2db58b7309c654a2169d1340c34035d146bbe2 (diff)
downloadbootstrap-4cfe228151bf75a932537b01e14466d9a2d45807.tar.xz
bootstrap-4cfe228151bf75a932537b01e14466d9a2d45807.zip
Changed hex values to follow bootstrap coding guidelines
Diffstat (limited to 'docs')
-rw-r--r--docs/4.0/getting-started/options.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/4.0/getting-started/options.md b/docs/4.0/getting-started/options.md
index a830d81af..3b9629f7f 100644
--- a/docs/4.0/getting-started/options.md
+++ b/docs/4.0/getting-started/options.md
@@ -12,8 +12,8 @@ Every Sass variable in Bootstrap 4 includes the `!default` flag, meaning you can
{% highlight scss %}
// Your variable overwrite first or a Sass file containing the modifications
-$body-bg: #000000;
-$body-color: #ffffff;
+$body-bg: #000;
+$body-color: #111;
// Then import Bootstrap
@import "node_modules/bootstrap/scss/bootstrap";