From eade72e2c6b0b28763abdee42cb8ff760947a7ae Mon Sep 17 00:00:00 2001 From: miloschwartz Date: Tue, 13 Jan 2026 09:36:53 -0800 Subject: [PATCH] set text-destructive color --- src/app/globals.css | 2 ++ src/lib/themeColors.ts | 2 ++ 2 files changed, 4 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 731e1bff..bbb165c2 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -21,6 +21,7 @@ --accent: oklch(0.967 0.001 286.375); --accent-foreground: oklch(0.21 0.006 285.885); --destructive: oklch(0.577 0.245 27.325); + --destructive-foreground: oklch(0.985 0 0); --border: oklch(0.91 0.004 286.32); --input: oklch(0.92 0.004 286.32); --ring: oklch(0.705 0.213 47.604); @@ -55,6 +56,7 @@ --accent: oklch(0.274 0.006 286.033); --accent-foreground: oklch(0.985 0 0); --destructive: oklch(0.5382 0.1949 22.216); + --destructive-foreground: oklch(0.985 0 0); --border: oklch(1 0 0 / 13%); --input: oklch(1 0 0 / 18%); --ring: oklch(0.646 0.222 41.116); diff --git a/src/lib/themeColors.ts b/src/lib/themeColors.ts index 7c6bb46e..66fee55b 100644 --- a/src/lib/themeColors.ts +++ b/src/lib/themeColors.ts @@ -15,6 +15,7 @@ const defaultTheme = { accent: "oklch(0.967 0.001 286.375)", "accent-foreground": "oklch(0.21 0.006 285.885)", destructive: "oklch(0.577 0.245 27.325)", + "destructive-foreground": "oklch(0.985 0 0)", border: "oklch(0.92 0.004 286.32)", input: "oklch(0.92 0.004 286.32)", ring: "oklch(0.705 0.213 47.604)", @@ -41,6 +42,7 @@ const defaultTheme = { accent: "oklch(0.274 0.006 286.033)", "accent-foreground": "oklch(0.985 0 0)", destructive: "oklch(0.704 0.191 22.216)", + "destructive-foreground": "oklch(0.985 0 0)", border: "oklch(1 0 0 / 10%)", input: "oklch(1 0 0 / 15%)", ring: "oklch(0.646 0.222 41.116)",