All checks were successful
Dev Deploy / Explore-Gitea-Actions (push) Successful in 24s
30 lines
724 B
JavaScript
30 lines
724 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',
|
|
aiBubble: '#FFF8DE',
|
|
},
|
|
width: {
|
|
'owner-card': 'calc((100% - 1rem)/3)',
|
|
'self': 'calc(100% + 32px)',
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
} |