document new text color utils

This commit is contained in:
Mark Otto 2018-03-31 14:45:23 -07:00 committed by Mark Otto
parent 3417c54ad7
commit b72bd051ab
1 changed files with 3 additions and 0 deletions

View File

@ -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 %}