Skip to content

Commit d65dff8

Browse files
committed
readme update: typos
1 parent 8672b2e commit d65dff8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Tailwind CSS doesn't support themes by default, but they offer a "[dark mode](ht
1111
```html
1212
<!-- Card example w/ Tailwind CSS dark mode -->
1313

14-
<div class="bg-gray-900 dark:bg-gray p-12">
14+
<div class="bg-gray-900 dark:bg-gray-100 p-12">
1515
<h3>Card w/ light theme</h3>
1616
<p class="text-white dark:text-black">
1717
This card example is styled using Tailwind color values that were set up for
@@ -46,7 +46,7 @@ Tailwind CSS doesn't support themes by default, but they offer a "[dark mode](ht
4646
</div>
4747
```
4848

49-
This system significantly reduces CSS styling by avoiding dark classes altogether in favor of the theme classes. If you design your app using semantic color names, you can theming for free.
49+
This system avoids dark classes altogether in favor of the theme classes. If you design your app using semantic color names, you get theming for free. This results in a significant reduction in CSS styling because you're not writing color values directly into components.
5050

5151
# Usage
5252

0 commit comments

Comments
 (0)