30 lines
572 B
JavaScript
30 lines
572 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./App.tsx",
|
|
"./index.tsx",
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif'],
|
|
},
|
|
colors: {
|
|
primary: '#2563eb',
|
|
secondary: '#64748b',
|
|
slate: {
|
|
50: '#f8fafc',
|
|
100: '#f1f5f9',
|
|
200: '#e2e8f0',
|
|
800: '#1e293b',
|
|
900: '#0f172a',
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|