20 lines
439 B
JavaScript
20 lines
439 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#3b82f6',
|
|
secondary: '#64748b',
|
|
accent: '#06b6d4',
|
|
'subtle-bg': '#f8f7f4',
|
|
'subtle-active-bg': '#e7e5e4',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|