From c44ae5ccd3696926d0f66197a991fd5f92ca7d88 Mon Sep 17 00:00:00 2001 From: mbaharip <62494292+mbahArip@users.noreply.github.com> Date: Thu, 6 Mar 2025 10:11:02 +0700 Subject: [PATCH] fix: Use `import` instead of `require` --- tailwind.config.ts | 223 +++++++++++++++++++++++++-------------------- 1 file changed, 125 insertions(+), 98 deletions(-) diff --git a/tailwind.config.ts b/tailwind.config.ts index 2209800..92fe347 100644 --- a/tailwind.config.ts +++ b/tailwind.config.ts @@ -1,4 +1,7 @@ +import twTypography from '@tailwindcss/typography'; +import twVidstack from "@vidstack/react/tailwind.cjs"; import type { Config } from "tailwindcss"; +import twAnimate from "tailwindcss-animate"; import tw from "tailwindcss/defaultTheme"; export default { @@ -7,107 +10,131 @@ export default { content: ["./pages/**/*.{ts,tsx}", "./components/**/*.{ts,tsx}", "./app/**/*.{ts,tsx}", "./src/**/*.{ts,tsx}"], prefix: "", theme: { - container: { - center: true, - padding: { - DEFAULT: "0.5rem", - mobile: "1rem", - tablet: "1.5rem", - desktop: "2rem", - }, - screens: { - mobile: "480px", - tablet: "768px", - desktop: "1280px", - }, - }, - extend: { - fontFamily: { - sans: ["var(--font-outfit)", ...tw.fontFamily.sans], - mono: ["var(--font-jetbrains-mono)", ...tw.fontFamily.mono], - }, - 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))", - }, - chart: { - "1": "hsl(var(--chart-1))", - "2": "hsl(var(--chart-2))", - "3": "hsl(var(--chart-3))", - "4": "hsl(var(--chart-4))", - "5": "hsl(var(--chart-5))", - }, - }, - screens: { - mobile: "480px", - tablet: "768px", - desktop: "1280px", - }, - 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", - }, - }, + container: { + center: true, + padding: { + DEFAULT: '0.5rem', + mobile: '1rem', + tablet: '1.5rem', + desktop: '2rem' + }, + screens: { + mobile: '480px', + tablet: '768px', + desktop: '1280px' + } + }, + extend: { + fontFamily: { + sans: [ + 'var(--font-outfit)', + ...tw.fontFamily.sans + ], + mono: [ + 'var(--font-jetbrains-mono)', + ...tw.fontFamily.mono + ] + }, + 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))' + }, + chart: { + '1': 'hsl(var(--chart-1))', + '2': 'hsl(var(--chart-2))', + '3': 'hsl(var(--chart-3))', + '4': 'hsl(var(--chart-4))', + '5': 'hsl(var(--chart-5))' + } + }, + screens: { + mobile: '480px', + tablet: '768px', + desktop: '1280px' + }, + 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' + } + }, + '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', + 'accordion-down': 'accordion-down 0.2s ease-out', + 'accordion-up': 'accordion-up 0.2s ease-out' + } + } }, plugins: [ - require("tailwindcss-animate"), - require("@tailwindcss/typography"), - require("@vidstack/react/tailwind.cjs")({ + twAnimate, + twTypography, + twVidstack({ selector: ".media-player", prefix: "media", }), ], -} satisfies Config; +} satisfies Config; \ No newline at end of file