Files
mdb/mb-app/tailwind.config.js
Bastien COIGNOUX bd325fe456 init
2026-05-03 20:18:33 +02:00

21 lines
455 B
JavaScript

/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
'./app/**/*.{js,jsx,ts,tsx}',
'./components/**/*.{js,jsx,ts,tsx}',
'./context/**/*.{js,jsx,ts,tsx}',
'./services/**/*.{js,jsx,ts,tsx}',
'./stores/**/*.{js,jsx,ts,tsx}',
'./lib/**/*.{js,jsx,ts,tsx}',
],
presets: [require('nativewind/preset')],
theme: {
extend: {
colors: {
primary: '#1D4ED8',
},
},
},
plugins: [],
};