navidocs/client/tailwind.config.js
Danny Stocker 4d52d740d1 [AGENT-9] Final working tree cleanup - communication protocol and UI polish
- Add AGENT_COMMUNICATION_PROTOCOL.md (intra-agent messaging spec)
- Update client/tailwind.config.js (CSS refinements)
- Update feature-selector-complete.html (UI polish)

All artifacts ready for cloud session deployment.

🤖 Generated with Claude Code

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-13 11:03:39 +01:00

88 lines
2.1 KiB
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: [
'./index.html',
'./src/**/*.{vue,js,ts,jsx,tsx}',
],
theme: {
extend: {
colors: {
// Meilisearch-inspired purple/pink palette
primary: {
50: '#fdf4ff',
100: '#fae8ff',
200: '#f5d0fe',
300: '#f0abfc',
400: '#e879f9',
500: '#d946ef',
600: '#c026d3',
700: '#a21caf',
800: '#86198f',
900: '#701a75',
},
secondary: {
50: '#fff1f2',
100: '#ffe4e6',
200: '#fecdd3',
300: '#fda4af',
400: '#fb7185',
500: '#f43f5e',
600: '#e11d48',
700: '#be123c',
800: '#9f1239',
900: '#881337',
},
success: {
50: '#f0fdf4',
100: '#dcfce7',
200: '#bbf7d0',
300: '#86efac',
400: '#4ade80',
500: '#10b981',
600: '#059669',
700: '#047857',
800: '#065f46',
900: '#064e3b',
},
dark: {
50: '#f8fafc',
100: '#f1f5f9',
200: '#e2e8f0',
300: '#cbd5e1',
400: '#94a3b8',
500: '#64748b',
600: '#475569',
700: '#334155',
800: '#1e293b',
900: '#0f172a',
}
},
fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'],
mono: ['Fira Code', 'Menlo', 'Monaco', 'Courier New', 'monospace'],
},
borderRadius: {
DEFAULT: '12px',
lg: '16px',
xl: '20px',
},
boxShadow: {
'soft': '0 4px 24px rgba(0, 0, 0, 0.08)',
'soft-lg': '0 8px 40px rgba(0, 0, 0, 0.12)',
},
spacing: {
'18': '4.5rem',
'22': '5.5rem',
}
},
},
plugins: [
function ({ addComponents }) {
addComponents({
'.glass': {
'@apply bg-white/10 backdrop-blur-lg border border-white/10 shadow-soft': {}
}
})
}
],
}