Files
SIG-CM/frontend/public-web/tailwind.config.js

25 lines
437 B
JavaScript
Raw Normal View History

2025-12-18 13:32:50 -03:00
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./index.html",
"./src/**/*.{js,ts,jsx,tsx}",
],
theme: {
extend: {
colors: {
primary: {
50: '#f0f9ff',
100: '#e0f2fe',
500: '#0ea5e9',
600: '#0284c7',
900: '#0c4a6e',
}
},
fontFamily: {
sans: ['Inter', 'sans-serif'],
}
},
},
plugins: [],
}