21 lines
455 B
JavaScript
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: [],
|
|
};
|