25 lines
575 B
JavaScript
25 lines
575 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
'bulls-gray': '#2a2a2a',
|
|
'bulls-light-gray': '#f5f5f5',
|
|
'bulls-blue': '#00a8e6',
|
|
'bulls-dark': '#1a1a1a',
|
|
'bulls-accent': '#ff6b35'
|
|
},
|
|
fontFamily: {
|
|
'sans': ['Arial', 'Helvetica', 'sans-serif']
|
|
},
|
|
fontSize: {
|
|
'hero': ['4rem', { lineHeight: '1.1' }],
|
|
'hero-sm': ['2.5rem', { lineHeight: '1.2' }]
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |