Files
myinterfaz/tailwind.config.js
2025-12-05 16:56:43 +00:00

20 lines
364 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
'banorte-red': '#C8102E',
'banorte-blue': '#001A4D',
},
fontFamily: {
'sans': ['Inter', 'system-ui', 'sans-serif'],
},
},
},
plugins: [],
}