Skip to content

Commit

Permalink
🩹 Invert pure color
Browse files Browse the repository at this point in the history
  • Loading branch information
siguici committed Sep 24, 2024
1 parent 1b5e5ed commit 7b89857
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions packages/colorwind/src/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -155,8 +155,8 @@ export const cssColors = {

export default {
pure: {
light: tailwindColors.white,
dark: tailwindColors.black,
light: tailwindColors.black,
dark: tailwindColors.white,
},
slate: tailwindColors.slate[500],
'slate-4': {
Expand Down
4 changes: 2 additions & 2 deletions website/src/content/docs/guides/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -107,13 +107,13 @@ With **Colorwind**, you can easily define and apply color utilities that adjust
<Tabs>
<TabItem label="Code">
```html
<button class="bg-green-4 text-pure-reverse border-green-4">
<button class="bg-green-4 text-pure border-green-4">
Primary Button
</button>
```
</TabItem>
<TabItem label="Render">
<button class="bg-green-4 text-pure-reverse border-green-4">
<button class="bg-green-4 text-pure border-green-4">
Primary Button
</button>
</TabItem>
Expand Down

0 comments on commit 7b89857

Please sign in to comment.