Skip to content

Commit 99ccadf

Browse files
committed
docs: update links
1 parent 3006217 commit 99ccadf

File tree

1 file changed

+22
-2
lines changed

1 file changed

+22
-2
lines changed

README.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,20 @@
22

33
Multiple themes support for tailwindcss and windicss. Developing with one theme and it will work with multiple themes, all you need is just to define your default (for shade `500`) color values for your theme. We will generate all shades from `50` to `900` for you, following the built-in shade name convention of the [default color values](https://tailwindcss.com/docs/customizing-colors).
44

5-
|Dracula (default theme), Demo Link|Material, Demo Link|
5+
|Dracula (default theme)|Material|
66
|-------|--------|
77
|![dracula](img/dracula.png)|![material](img/material.png)|
88

9+
Demo Link:
10+
11+
- Windi: https://upupming.site/tailwindcss-themeable/windi/
12+
- Tailwind: https://upupming.site/tailwindcss-themeable/tailwind/
13+
14+
Demo source code:
15+
16+
- [Windi](examples/windi/index.html)
17+
- [Tailwind](examples/tailwind/index.html)
18+
919
## Installation
1020

1121
```bash
@@ -181,14 +191,24 @@ plugins: [
181191

182192
</details>
183193

184-
Then you can wrap you HTML elements with `themeable-example-theme` class to use the `example` theme! All `text-themeable-*` class uses the CSS variable from the generated CSS of your configuration.
194+
Then you can wrap you HTML elements with `themeable-example-theme` class to use the `example-theme` theme! All `text-themeable-*` class uses the CSS variable from the generated CSS of your configuration. `tailwindcss-themeable` already has two themes (`dracula` and `material`) you can use directly.
185195

186196
```html
187197
<div class="themeable-example-theme">
188198
<div class="text-themeable-foreground">
189199
Hello world!
190200
</div>
191201
</div>
202+
<div class="themeable-dracula">
203+
<div class="text-themeable-foreground">
204+
Hello world!
205+
</div>
206+
</div>
207+
<div class="themeable-material">
208+
<div class="text-themeable-foreground">
209+
Hello world!
210+
</div>
211+
</div>
192212
```
193213

194214
<hr>

0 commit comments

Comments
 (0)