import { createTheme } from '@frontmcp/ui';
const brandTheme = createTheme({
name: 'brand-theme',
colors: {
semantic: {
primary: '#2563eb', // Blue-600
secondary: '#4b5563', // Gray-600
accent: '#8b5cf6', // Purple-500
success: '#059669', // Emerald-600
warning: '#d97706', // Amber-600
danger: '#dc2626', // Red-600
info: '#0284c7', // Sky-600
},
surface: {
background: '#f8fafc', // Slate-50
foreground: '#ffffff',
muted: '#f1f5f9', // Slate-100
subtle: '#e2e8f0', // Slate-200
},
text: {
primary: '#1e293b', // Slate-800
secondary: '#64748b', // Slate-500
muted: '#94a3b8', // Slate-400
inverse: '#ffffff',
link: '#2563eb',
},
border: {
default: '#cbd5e1', // Slate-300
strong: '#94a3b8', // Slate-400
muted: '#e2e8f0', // Slate-200
},
},
typography: {
families: {
sans: '"Inter", -apple-system, sans-serif',
mono: '"JetBrains Mono", monospace',
heading: '"Inter", sans-serif',
},
},
radius: {
md: '0.5rem',
lg: '0.75rem',
xl: '1rem',
},
cdn: {
fonts: {
preconnect: [
'https://fonts.googleapis.com',
'https://fonts.gstatic.com',
],
stylesheets: [
'https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap',
'https://fonts.googleapis.com/css2?family=JetBrains+Mono&display=swap',
],
},
},
});