40 lines
1.0 KiB
JavaScript
40 lines
1.0 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Brand colors from brand.md
|
|
primary: {
|
|
yellow: '#FFD84D',
|
|
dark: '#111111',
|
|
white: '#FFFFFF',
|
|
},
|
|
secondary: {
|
|
gray: '#F5F5F5',
|
|
'light-gray': '#E5E5E5',
|
|
blue: '#2F80ED',
|
|
brown: '#6B4A2B',
|
|
},
|
|
},
|
|
fontFamily: {
|
|
sans: ['Inter', 'system-ui', 'sans-serif'],
|
|
heading: ['Poppins', 'Inter', 'system-ui', 'sans-serif'],
|
|
},
|
|
borderRadius: {
|
|
'btn': '12px',
|
|
'card': '16px',
|
|
},
|
|
boxShadow: {
|
|
'card': '0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06)',
|
|
'card-hover': '0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05)',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|