chore: update Tailwind config to Slate & Ice theme colors and fonts

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
chihlasm
2026-03-03 07:55:56 -05:00
parent 767d2ac164
commit c66b2bb88e

View File

@@ -11,20 +11,20 @@ export default {
// ResolutionFlow Brand Colors // ResolutionFlow Brand Colors
brand: { brand: {
gradient: { gradient: {
from: '#818cf8', from: '#06b6d4',
to: '#a78bfa', to: '#22d3ee',
}, },
dark: { dark: {
DEFAULT: '#09090b', DEFAULT: '#101114',
card: '#18181b', card: '#14161a',
surface: '#12121c', surface: '#14161a',
}, },
text: { text: {
primary: '#ffffff', primary: '#f8fafc',
secondary: '#a1a1aa', secondary: '#8891a0',
muted: '#52525b', muted: '#5a6170',
}, },
border: '#27272a', border: 'rgba(255, 255, 255, 0.06)',
}, },
// shadcn/ui color system // shadcn/ui color system
border: "hsl(var(--border))", border: "hsl(var(--border))",
@@ -67,13 +67,13 @@ export default {
sm: "calc(var(--radius) - 4px)", sm: "calc(var(--radius) - 4px)",
}, },
fontFamily: { fontFamily: {
sans: ['Inter', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'], sans: ['IBM Plex Sans', 'system-ui', '-apple-system', 'BlinkMacSystemFont', 'Segoe UI', 'Roboto', 'sans-serif'],
heading: ['Plus Jakarta Sans', 'system-ui', 'sans-serif'], heading: ['Bricolage Grotesque', 'system-ui', 'sans-serif'],
label: ['Outfit', 'system-ui', 'sans-serif'], label: ['JetBrains Mono', 'monospace'],
}, },
backgroundImage: { backgroundImage: {
'gradient-brand': 'linear-gradient(90deg, #818cf8 0%, #a78bfa 100%)', 'gradient-brand': 'linear-gradient(135deg, #06b6d4 0%, #22d3ee 100%)',
'gradient-brand-hover': 'linear-gradient(90deg, #6366f1 0%, #9333ea 100%)', 'gradient-brand-hover': 'linear-gradient(135deg, #0891b2 0%, #06b6d4 100%)',
}, },
}, },
}, },