diff --git a/src/tokens.css b/src/tokens.css index ae3206d..0933b63 100644 --- a/src/tokens.css +++ b/src/tokens.css @@ -54,8 +54,8 @@ --accent: 240 3.7% 15.9%; --accent-foreground: 0 0% 98%; - --destructive: 0 62.8% 30.6%; - --destructive-foreground: 0 0% 98%; + --destructive: 0, 84%, 60%; + --destructive-foreground: 240 10% 3.9%; --border: 240 3.7% 15.9%; --input: 240 3.7% 15.9%; diff --git a/stories/shadcn/button.stories.tsx b/stories/shadcn/button.stories.tsx index 018ae7d..54200a5 100644 --- a/stories/shadcn/button.stories.tsx +++ b/stories/shadcn/button.stories.tsx @@ -8,5 +8,5 @@ const meta: Meta = { export default meta; export const Default: StoryObj = { - args: { children: "Button Text" }, + args: { children: "Button Text", variant: "destructive" }, };