21 lines
448 B
JavaScript
21 lines
448 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: {
|
|
brand: {
|
|
50: '#fff1f1',
|
|
100: '#ffe1e1',
|
|
400: '#ff6b6b',
|
|
500: '#E63946',
|
|
600: '#d42535',
|
|
700: '#b21e2c',
|
|
},
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|