diff --git a/scripts/targets/__snapshots__/tailwind-v4_test.ts.snap b/scripts/targets/__snapshots__/tailwind-v4_test.ts.snap index 8c4b4d6..92b6d75 100644 --- a/scripts/targets/__snapshots__/tailwind-v4_test.ts.snap +++ b/scripts/targets/__snapshots__/tailwind-v4_test.ts.snap @@ -5,6 +5,9 @@ snapshot[`Tailwind v4 palette theme override 1`] = ` @theme { --color-*: initial; + --color-white: #fff; + --color-black: #000; + --color-red-100:oklch(0.966797 0.0171875 20); --color-red-500:oklch(0.742188 0.151562 20); diff --git a/scripts/targets/tailwind-v4.ts b/scripts/targets/tailwind-v4.ts index 5c7d9e0..7ba2619 100644 --- a/scripts/targets/tailwind-v4.ts +++ b/scripts/targets/tailwind-v4.ts @@ -19,6 +19,9 @@ export const buildTailwindv4Palette: ExportTarget = async ( @theme { --color-*: initial; + --color-white: #fff; + --color-black: #000; + ${vars.join("\n ")} }`;