diff options
| author | Mark Otto <[email protected]> | 2018-03-31 14:45:23 -0700 |
|---|---|---|
| committer | Mark Otto <[email protected]> | 2018-03-31 22:02:47 -0700 |
| commit | b72bd051ab605c5de9ed21764d8e696d3aba2e5c (patch) | |
| tree | 9312100f225c4a0460448dc3cc8571a9def97259 | |
| parent | 3417c54ad757294e9ff5ca68e99585f87803a089 (diff) | |
| download | bootstrap-b72bd051ab605c5de9ed21764d8e696d3aba2e5c.tar.xz bootstrap-b72bd051ab605c5de9ed21764d8e696d3aba2e5c.zip | |
document new text color utils
| -rw-r--r-- | docs/4.0/utilities/colors.md | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/4.0/utilities/colors.md b/docs/4.0/utilities/colors.md index 6eccb597d..acfcf2475 100644 --- a/docs/4.0/utilities/colors.md +++ b/docs/4.0/utilities/colors.md @@ -11,8 +11,11 @@ toc: true {% capture example %} {% for color in site.data.theme-colors %} <p class="text-{{ color.name }}{% if color.name == "light" %} bg-dark{% endif %}">.text-{{ color.name }}</p>{% endfor %} +<p class="text-body">.text-body</p> <p class="text-muted">.text-muted</p> <p class="text-white bg-dark">.text-white</p> +<p class="text-black-50">.text-black-50</p> +<p class="text-white-50 bg-dark">.text-white-50</p> {% endcapture %} {% include example.html content=example %} |
