From 2ee55cc5a4def2f515120dcc88e57a07905f6560 Mon Sep 17 00:00:00 2001 From: Suraj Air Date: Fri, 23 Feb 2024 22:35:38 +0530 Subject: [PATCH] feat: added chaiBuilderTheme api to ui sub package --- src/ui/index.ts | 1 + src/ui/tailwind-config.ts | 58 ++++++++++++++++++++++++++++++++++++++ tailwind.config.js | 59 ++------------------------------------- 3 files changed, 62 insertions(+), 56 deletions(-) create mode 100644 src/ui/tailwind-config.ts diff --git a/src/ui/index.ts b/src/ui/index.ts index a5dbbef6..bfcef1d6 100644 --- a/src/ui/index.ts +++ b/src/ui/index.ts @@ -26,3 +26,4 @@ export * from "./radix/components/ui/skeleton"; export * from "./radix/components/ui/command"; export * from "./radix/components/ui/context-menu"; export * from "./widgets/index.ts"; +export { chaiBuilderTheme } from "./tailwind-config"; diff --git a/src/ui/tailwind-config.ts b/src/ui/tailwind-config.ts new file mode 100644 index 00000000..81830063 --- /dev/null +++ b/src/ui/tailwind-config.ts @@ -0,0 +1,58 @@ +export function chaiBuilderTheme() { + return { + colors: { + border: "hsl(var(--border))", + input: "hsl(var(--input))", + ring: "hsl(var(--ring))", + background: "hsl(var(--background))", + foreground: "hsl(var(--foreground))", + primary: { + DEFAULT: "hsl(var(--primary))", + foreground: "hsl(var(--primary-foreground))", + }, + secondary: { + DEFAULT: "hsl(var(--secondary))", + foreground: "hsl(var(--secondary-foreground))", + }, + destructive: { + DEFAULT: "hsl(var(--destructive))", + foreground: "hsl(var(--destructive-foreground))", + }, + muted: { + DEFAULT: "hsl(var(--muted))", + foreground: "hsl(var(--muted-foreground))", + }, + accent: { + DEFAULT: "hsl(var(--accent))", + foreground: "hsl(var(--accent-foreground))", + }, + popover: { + DEFAULT: "hsl(var(--popover))", + foreground: "hsl(var(--popover-foreground))", + }, + card: { + DEFAULT: "hsl(var(--card))", + foreground: "hsl(var(--card-foreground))", + }, + }, + borderRadius: { + lg: `var(--radius)`, + md: `calc(var(--radius) - 2px)`, + sm: "calc(var(--radius) - 4px)", + }, + keyframes: { + "accordion-down": { + from: { height: "0" }, + to: { height: "var(--radix-accordion-content-height)" }, + }, + "accordion-up": { + from: { height: "var(--radix-accordion-content-height)" }, + to: { height: "0" }, + }, + }, + animation: { + "accordion-down": "accordion-down 0.2s ease-out", + "accordion-up": "accordion-up 0.2s ease-out", + }, + }; +} diff --git a/tailwind.config.js b/tailwind.config.js index 228211ab..fc13200f 100644 --- a/tailwind.config.js +++ b/tailwind.config.js @@ -1,3 +1,5 @@ +import { chaiBuilderTheme } from "./src/ui/tailwind-config"; + /** @type {import('tailwindcss').Config} */ export default { @@ -11,62 +13,7 @@ export default { "2xl": "1400px", }, }, - extend: { - colors: { - border: "hsl(var(--border))", - input: "hsl(var(--input))", - ring: "hsl(var(--ring))", - background: "hsl(var(--background))", - foreground: "hsl(var(--foreground))", - primary: { - DEFAULT: "hsl(var(--primary))", - foreground: "hsl(var(--primary-foreground))", - }, - secondary: { - DEFAULT: "hsl(var(--secondary))", - foreground: "hsl(var(--secondary-foreground))", - }, - destructive: { - DEFAULT: "hsl(var(--destructive))", - foreground: "hsl(var(--destructive-foreground))", - }, - muted: { - DEFAULT: "hsl(var(--muted))", - foreground: "hsl(var(--muted-foreground))", - }, - accent: { - DEFAULT: "hsl(var(--accent))", - foreground: "hsl(var(--accent-foreground))", - }, - popover: { - DEFAULT: "hsl(var(--popover))", - foreground: "hsl(var(--popover-foreground))", - }, - card: { - DEFAULT: "hsl(var(--card))", - foreground: "hsl(var(--card-foreground))", - }, - }, - borderRadius: { - lg: `var(--radius)`, - md: `calc(var(--radius) - 2px)`, - sm: "calc(var(--radius) - 4px)", - }, - keyframes: { - "accordion-down": { - from: { height: "0" }, - to: { height: "var(--radix-accordion-content-height)" }, - }, - "accordion-up": { - from: { height: "var(--radix-accordion-content-height)" }, - to: { height: "0" }, - }, - }, - animation: { - "accordion-down": "accordion-down 0.2s ease-out", - "accordion-up": "accordion-up 0.2s ease-out", - }, - }, + extend: chaiBuilderTheme(), }, // eslint-disable-next-line no-undef plugins: [require("tailwindcss-animate")],