5e2bb8585a
- Initialize beads (.beads/ directory) - Add Claude Code hooks for SessionStart/PreCompact - Update CLAUDE.md to clarify all build artifacts are committed - Update .gitignore to allow node_modules and dist
39 lines
963 B
JavaScript
Executable File
39 lines
963 B
JavaScript
Executable File
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./**/*.php',
|
|
'./src/**/*.{js,scss}',
|
|
'./template-parts/**/*.php',
|
|
'./patterns/**/*.php',
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
// Brand colors
|
|
'hp-dark': '#0A0A0A',
|
|
'hp-card': '#161616',
|
|
'hp-accent': '#9F3730',
|
|
'hp-accent-hover': '#C8473F',
|
|
'hp-accent-light': '#BF524B',
|
|
'hp-text': '#F5F5F5',
|
|
'hp-text-muted': '#B0B0B0',
|
|
'hp-border': '#2A2A2A',
|
|
'hp-success': '#2E7D32',
|
|
'hp-warning': '#F9A825',
|
|
'hp-sold': '#757575',
|
|
},
|
|
fontFamily: {
|
|
'display': ['"Abril Fatface"', 'Georgia', 'serif'],
|
|
'body': ['Inter', '"Droid Sans"', 'Arial', 'sans-serif'],
|
|
},
|
|
maxWidth: {
|
|
'container': '1200px',
|
|
},
|
|
aspectRatio: {
|
|
'property': '16 / 10',
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|