From b72bd051ab605c5de9ed21764d8e696d3aba2e5c Mon Sep 17 00:00:00 2001
From: Mark Otto <markdotto@gmail.com>
Date: Sat, 31 Mar 2018 14:45:23 -0700
Subject: [PATCH] document new text color utils

---
 docs/4.0/utilities/colors.md | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/docs/4.0/utilities/colors.md b/docs/4.0/utilities/colors.md
index 6eccb597da..acfcf2475a 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 %}
 
-- 
GitLab