Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add .text-gray-light to docs #1067

Merged
merged 2 commits into from
Apr 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
21 changes: 12 additions & 9 deletions docs/content/utilities/colors.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -55,34 +55,37 @@ You can set the color inheritance on an element by using the `text-inherit` clas

```html live
<div class="text-blue mb-2">
.text-blue on white
.text-blue
</div>
<div class="text-gray-dark mb-2">
.text-gray-dark on white
.text-gray-dark
</div>
<div class="text-gray mb-2">
.text-gray on white
.text-gray
</div>
<div class="text-gray-light mb-2">
.text-gray-light
</div>
<div class="text-red mb-2">
.text-red on white
.text-red
</div>
<div class="text-orange mb-2">
.text-orange on white
.text-orange
</div>
<div class="text-orange-light mb-2">
.text-orange-light on white
.text-orange-light
<span class="tooltipped tooltipped-n" aria-label="Does not meet accessibility standards">⚠️</span>
</div>
<div class="text-yellow mb-2">
.text-yellow on white
.text-yellow
<span class="tooltipped tooltipped-n" aria-label="Does not meet accessibility standards">⚠️</span>
</div>
<div class="text-green mb-2">
.text-green on white
.text-green
<span class="tooltipped tooltipped-n" aria-label="Does not meet accessibility standards">⚠️</span>
</div>
<div class="text-purple mb-2">
.text-purple on white
.text-purple
</div>
```

Expand Down