19 lines
438 B
JavaScript
19 lines
438 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./app/**/*.{js,jsx,ts,tsx}', './components/**/*.{js,jsx,ts,tsx}'],
|
|
presets: [require('nativewind/preset')],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#2563EB',
|
|
'primary-dark': '#1D4ED8',
|
|
danger: '#DC2626',
|
|
success: '#16A34A',
|
|
warning: '#D97706',
|
|
muted: '#6B7280',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|