Commit b72bd051 authored by Mark Otto's avatar Mark Otto Committed by Mark Otto
Browse files

document new text color utils

parent 3417c54a
Showing with 3 additions and 0 deletions
+3 -0
...@@ -11,8 +11,11 @@ toc: true ...@@ -11,8 +11,11 @@ toc: true
{% capture example %} {% capture example %}
{% for color in site.data.theme-colors %} {% 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-{{ 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-muted">.text-muted</p>
<p class="text-white bg-dark">.text-white</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 %} {% endcapture %}
{% include example.html content=example %} {% include example.html content=example %}
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment