import type { Config } from "tailwindcss"; const config: Config = { darkMode: ["class"], content: [ "./src/pages/**/*.{js,ts,jsx,tsx,mdx}", "./src/components/**/*.{js,ts,jsx,tsx,mdx}", "./src/app/**/*.{js,ts,jsx,tsx,mdx}", ], theme: { 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))", }, pulse: { pink: "#F92B9B", "pink-light": "#FF6EC7", "pink-dark": "#CC1A7A", violet: "#8B22CC", lavender: "#C084FC", teal: "#03A4A8", "deep-space": "#08001C", midnight: "#1A003A", glow: "#470070", border: "#1E2D4A", muted: "#8B92A8", }, horny: { pink: "#F92B9B", purple: "#8B22CC", dark: "#08001C", surface: "#1A003A", }, }, borderRadius: { lg: "var(--radius)", md: "calc(var(--radius) - 2px)", sm: "calc(var(--radius) - 4px)", pill: "9999px", }, backgroundImage: { "pulse-gradient": "linear-gradient(135deg, #FF2D9B 0%, #C084FC 50%, #FF2D9B 100%)", "pulse-gradient-bold": "linear-gradient(135deg, #FF2D9B 0%, #9B30FF 100%)", "horny-gradient": "linear-gradient(135deg, #FF2D9B 0%, #C084FC 50%, #FF2D9B 100%)", }, boxShadow: { "pulse-glow": "0 0 16px rgba(249, 43, 155, 0.4), 0 0 32px rgba(249, 43, 155, 0.15)", "pulse-card": "0 12px 40px rgba(249, 43, 155, 0.12)", }, fontFamily: { sans: ["var(--font-manrope)", "system-ui", "sans-serif"], }, }, }, plugins: [require("tailwindcss-animate")], }; export default config;