testes/tailwind.config.js

48 lines
1003 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
border: "#e2e8f0",
input: "#e2e8f0",
ring: "#3b82f6",
background: "#f8fafc",
foreground: "#020617",
primary: {
DEFAULT: "#3b82f6",
foreground: "#ffffff",
},
secondary: {
DEFAULT: "#f1f5f9",
foreground: "#0f172a",
},
destructive: {
DEFAULT: "#ef4444",
foreground: "#ffffff",
},
muted: {
DEFAULT: "#f1f5f9",
foreground: "#64748b",
},
accent: {
DEFAULT: "#f1f5f9",
foreground: "#0f172a",
},
popover: {
DEFAULT: "#ffffff",
foreground: "#020617",
},
card: {
DEFAULT: "#ffffff",
foreground: "#020617",
},
},
},
},
plugins: [],
}