51 lines
1.1 KiB
JavaScript
51 lines
1.1 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', 'sans-serif'],
|
|
},
|
|
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: [],
|
|
}
|