Lazy-init theme from localStorage, hoist checkAuth with useCallback, named config exports for PostCSS/Tailwind, and remove the non-blocking || true wrapper from ci.yml (requires #61 + #62 merged first). Co-authored-by: Cursor <cursoragent@cursor.com>
34 lines
689 B
JavaScript
34 lines
689 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
const config = {
|
|
content: [
|
|
'./pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
screens: {
|
|
'xs': '475px',
|
|
},
|
|
colors: {
|
|
hearth: {
|
|
flame: '#ff6f00',
|
|
ember: '#d84315',
|
|
gold: '#ffab40',
|
|
wood: '#8d6e63',
|
|
cream: '#fefcf8',
|
|
parchment: '#f7f3ed',
|
|
charcoal: '#1a0f0a',
|
|
oak: '#2d1b12',
|
|
mahogany: '#3d2317',
|
|
}
|
|
},
|
|
scale: {
|
|
'102': '1.02',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|
|
|
|
export default config;
|