]> git.ipfire.org Git - thirdparty/bootstrap.git/commitdiff
Changed hex values to follow bootstrap coding guidelines
authorMoris Zen Pasic <moris.pasic@gmail.com>
Thu, 21 Sep 2017 17:44:13 +0000 (19:44 +0200)
committerJohann-S <johann.servoire@gmail.com>
Wed, 27 Sep 2017 07:36:42 +0000 (09:36 +0200)
docs/4.0/getting-started/options.md

index a830d81af80cff09221c4dad8efa673e5aefc945..3b9629f7fb7be5418c68d9e3f4e1e88966a26744 100644 (file)
@@ -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";