25 lines
587 B
JavaScript
25 lines
587 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
"./App.{js,jsx,ts,tsx}",
|
|
"./app/**/*.{js,jsx,ts,tsx}",
|
|
"./components/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
presets: [require("nativewind/preset")],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
beige: '#F5F5DC',
|
|
saddlebrown: '#8B4513',
|
|
darkred: '#8B0000',
|
|
bgPrimary: '#FFB645',
|
|
textPrimary: '#AC7E35',
|
|
textSecondary: '#4C320C',
|
|
inputBackground: '#FFF8DE',
|
|
textTertiary: '#4C320C',
|
|
buttonFill: '#E2793F'
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |