25 lines
522 B
JavaScript
25 lines
522 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
accent: '#1a6b3c',
|
|
'accent-light': '#e8f5ee',
|
|
'accent-dark': '#134d2b',
|
|
dark: '#111827',
|
|
warm: '#fafaf8',
|
|
sand: '#f5f0e8',
|
|
muted: '#6b7280',
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|