20 lines
471 B
JavaScript
20 lines
471 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: '#1A6B72',
|
|
'primary-light': '#2A8B94',
|
|
secondary: '#F8F4EF',
|
|
accent: '#D4A843',
|
|
success: '#4CAF7D',
|
|
danger: '#C0392B',
|
|
charcoal: '#2C3E50',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|