35 lines
1.0 KiB
JavaScript
35 lines
1.0 KiB
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: [
|
|
'./src/pages/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/components/**/*.{js,ts,jsx,tsx,mdx}',
|
|
'./src/app/**/*.{js,ts,jsx,tsx,mdx}',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: {
|
|
50: '#eff6ff',
|
|
500: '#3b82f6',
|
|
600: '#2563eb',
|
|
700: '#1d4ed8',
|
|
},
|
|
bakery: { // Existing bakery colors, can be potentially phased out or used as accents
|
|
brown: '#8B4513',
|
|
cream: '#FFF8DC',
|
|
wheat: '#F5DEB3',
|
|
},
|
|
pania: { // New PanIA brand colors
|
|
golden: '#F4A261', // Primary: Warm Golden - representing bread/warmth
|
|
blue: '#2A9D8F', // Secondary: Tech Blue - representing AI/innovation
|
|
brown: '#8B4513', // Accent: Deep Brown - representing traditional bakery
|
|
white: '#FFFFFF', // Neutral: Clean White
|
|
charcoal: '#333333', // Neutral: Charcoal
|
|
}
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
require('@tailwindcss/forms'),
|
|
],
|
|
} |