31 lines
667 B
JavaScript
31 lines
667 B
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: {
|
|
'mcdi-maroon': 'var(--mcdi-maroon)',
|
|
},
|
|
fontSize: {
|
|
'mega': ['120px', {
|
|
lineHeight: '1',
|
|
letterSpacing: '-0.02em',
|
|
fontWeight: '700',
|
|
}],
|
|
},
|
|
screens: {
|
|
'xs': '375px',
|
|
'sm': '640px',
|
|
'md': '768px',
|
|
'lg': '1024px',
|
|
'xl': '1280px',
|
|
'2xl': '1536px',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|