Files
leopost-full/frontend/tailwind.config.js
Michele 3139468c92 redesign: apply correct Editorial Fresh design system
- Fix palette: #E85A4F accent, #FFFBF5 cream, #1A1A1A ink (was wrong values)
- Remove all border-radius (zero radius everywhere per design spec)
- Sidebar: cream-dark #F5F0E8 bg with accent-left active indicator
- card-editorial: white bg, 4px accent top bar via absolute div
- Buttons: ink bg → accent hover + translateY(-1px)
- LoginPage: correct split layout with Editorial Fresh tokens
- Add .btn-primary / .btn-outline / .input-editorial / .editorial-tag classes
- Fraunces + DM Sans correctly applied everywhere

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-31 20:38:29 +02:00

44 lines
1.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./index.html', './src/**/*.{js,jsx}'],
theme: {
extend: {
colors: {
cream: '#FFFBF5',
'cream-dark': '#F5F0E8',
ink: '#1A1A1A',
'ink-light': '#4A4A4A',
'ink-muted': '#7A7A7A',
accent: '#E85A4F',
'accent-hover':'#D14940',
'accent-light':'#FFF0EE',
border: '#E5E0D8',
'border-strong':'#D0C9BD',
success: '#2D7A4F',
// Legacy aliases
coral: '#E85A4F',
muted: '#7A7A7A',
},
fontFamily: {
serif: ['Fraunces', 'Georgia', 'serif'],
sans: ['DM Sans', 'sans-serif'],
},
borderRadius: {
DEFAULT: '0',
none: '0',
sm: '0',
md: '0',
lg: '0',
xl: '0',
'2xl': '0',
full: '9999px', // keep for avatars/circles
},
letterSpacing: {
tight: '-0.02em',
editorial: '0.1em',
},
},
},
plugins: [],
}