From d1b4a2d4718d30f01fdecc59e55a544a5a06a5dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?V=C3=A1clav=20Van=C4=8Dura?= Date: Thu, 5 Feb 2026 14:40:56 +0100 Subject: [PATCH] feat(color-registry): add the violet Tailwind 4 color (#16076) * feat(color-registry): add the violet Tailwind 4 color Signed-off-by: Vaclav Vancura * refactor(tailwind): remove violet color from Tailwind configuration Signed-off-by: Vaclav Vancura --------- Signed-off-by: Vaclav Vancura --- tailwind-color-palette.json | 13 +++++++++++++ tailwind.config.cjs | 4 ---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/tailwind-color-palette.json b/tailwind-color-palette.json index d7e241bcdaa..21026b6e195 100644 --- a/tailwind-color-palette.json +++ b/tailwind-color-palette.json @@ -136,6 +136,19 @@ "900": "oklch(21.6% 0.006 56.043)", "950": "oklch(14.7% 0.004 49.25)" }, + "violet": { + "50": "oklch(0.969 0.016 293.756)", + "100": "oklch(0.943 0.029 294.588)", + "200": "oklch(0.894 0.057 293.283)", + "300": "oklch(0.811 0.111 293.571)", + "400": "oklch(0.702 0.183 293.541)", + "500": "oklch(0.606 0.25 292.717)", + "600": "oklch(0.541 0.281 293.009)", + "700": "oklch(0.491 0.27 292.581)", + "800": "oklch(0.432 0.232 292.759)", + "900": "oklch(0.38 0.189 293.745)", + "950": "oklch(0.283 0.141 291.089)" + }, "white": "#fff", "transparent": "transparent" } diff --git a/tailwind.config.cjs b/tailwind.config.cjs index 3996afda1c1..23399bef39f 100644 --- a/tailwind.config.cjs +++ b/tailwind.config.cjs @@ -51,10 +51,6 @@ module.exports = { 300: tailwindColors.zinc[300], 700: tailwindColors.zinc[700], }, - violet: { - 600: tailwindColors.violet[600], - 700: tailwindColors.violet[700], - }, }, }, plugins: [],