26 lines
581 B
JavaScript
26 lines
581 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
// NOTE: Update this to include the paths to all files that contain Nativewind classes.
|
|
content: ["./app/**/*.{js,jsx,ts,tsx}", "./constants/**/*.{js,jsx,ts,tsx}"],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#180a49d9',
|
|
secondary: '#31273aff',
|
|
light: {
|
|
100: '',
|
|
200: '',
|
|
300: ''
|
|
},
|
|
dark: {
|
|
100: '',
|
|
200: '',
|
|
300: ''
|
|
}
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
}
|