21 lines
406 B
JavaScript
21 lines
406 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
"./index.html",
|
|
"./src/**/*.{vue,js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#2563eb', // blue-700
|
|
muted: '#6b7280', // gray-500
|
|
},
|
|
fontFamily: {
|
|
'deserta': ['Deserta', 'serif'],
|
|
'inter': ['Inter', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|