Path: blob/master/webhooks/webhook_preview/tailwind.config.ts
1085 views
import type { Config } from "tailwindcss";12const config = {3darkMode: ["class"],4content: [5"./pages/**/*.{ts,tsx}",6"./components/**/*.{ts,tsx}",7"./app/**/*.{ts,tsx}",8"./src/**/*.{ts,tsx}",9"*.{js,ts,jsx,tsx,mdx}",10],11theme: {12container: {13center: true,14padding: "2rem",15screens: {16"2xl": "1400px",17},18},19extend: {20colors: {21border: "hsl(var(--border))",22input: "hsl(var(--input))",23ring: "hsl(var(--ring))",24background: "hsl(var(--background))",25foreground: "hsl(var(--foreground))",26primary: {27DEFAULT: "hsl(var(--primary))",28foreground: "hsl(var(--primary-foreground))",29},30secondary: {31DEFAULT: "hsl(var(--secondary))",32foreground: "hsl(var(--secondary-foreground))",33},34destructive: {35DEFAULT: "hsl(var(--destructive))",36foreground: "hsl(var(--destructive-foreground))",37},38muted: {39DEFAULT: "hsl(var(--muted))",40foreground: "hsl(var(--muted-foreground))",41},42accent: {43DEFAULT: "hsl(var(--accent))",44foreground: "hsl(var(--accent-foreground))",45},46popover: {47DEFAULT: "hsl(var(--popover))",48foreground: "hsl(var(--popover-foreground))",49},50card: {51DEFAULT: "hsl(var(--card))",52foreground: "hsl(var(--card-foreground))",53},54},55borderRadius: {56lg: "var(--radius)",57md: "calc(var(--radius) - 2px)",58sm: "calc(var(--radius) - 4px)",59},60keyframes: {61"accordion-down": {62from: { height: "0" },63to: { height: "var(--radix-accordion-content-height)" },64},65"accordion-up": {66from: { height: "var(--radix-accordion-content-height)" },67to: { height: "0" },68},69"plate-fade-in": {70"0%": {71opacity: "0",72transform: "scale(0.95)",73backgroundColor: "rgba(59, 130, 246, 0.2)", // azul claro (bg temporário)74},75"50%": {76opacity: "0.8",77transform: "scale(1.02)",78backgroundColor: "rgba(59, 130, 246, 0.4)", // mais azul no meio79},80"100%": {81opacity: "1",82transform: "scale(1)",83backgroundColor: "transparent", // volta ao normal84},85},86},87animation: {88"accordion-down": "accordion-down 0.2s ease-out",89"accordion-up": "accordion-up 0.2s ease-out",90"plate-highlight": "plate-fade-in 0.8s ease-out",91},92},93},94plugins: [require("tailwindcss-animate")],95} satisfies Config;9697export default config;9899100