| @import "tailwindcss"; |
|
|
| @theme { |
| |
| |
| |
| --color-primary: #0F172A; |
| --color-primary-dark: #020617; |
| --color-primary-light: #94A3B8; |
| --color-primary-bg: #F1F5F9; |
| --color-secondary: #64748B; |
| --color-tertiary: #059669; |
| |
| --color-background: #F8FAFC; |
| --color-surface: #FFFFFF; |
| --color-surface-base: #F8FAFC; |
| --color-surface-card: #FFFFFF; |
| --color-cream: #FEF3C7; |
| --color-accent: #BEF264; |
| --color-accent-light: #ECFCCB; |
| --color-coral: #F43F5E; |
| --color-coral-light: #FFE4E6; |
| |
| --color-success: #22C55E; |
| --color-warning: #EAB308; |
| --color-error: #EF4444; |
| --color-info: #0EA5E9; |
|
|
| |
| |
| |
| --spacing-xs: 4px; |
| --spacing-sm: 8px; |
| --spacing-md: 16px; |
| --spacing-lg: 24px; |
| --spacing-xl: 32px; |
| --spacing-2xl: 48px; |
| --spacing-3xl: 64px; |
|
|
| |
| |
| |
| --font-headline: "Plus Jakarta Sans", system-ui, -apple-system, sans-serif; |
| --font-body: "DM Sans", system-ui, -apple-system, sans-serif; |
| --font-mono: "Fira Code", monospace; |
|
|
| |
| |
| |
| --radius-sm: 4px; |
| --radius-DEFAULT: 8px; |
| --radius-md: 12px; |
| --radius-lg: 16px; |
| --radius-full: 9999px; |
|
|
| |
| |
| |
| |
| --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.03); |
| --shadow-DEFAULT: 0 2px 6px rgba(15, 23, 42, 0.05); |
| --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.07); |
| --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.10); |
| --shadow-card: 0 10px 40px -10px rgba(0,0,0,0.08); |
| --shadow-teal-glow: 0 4px 20px rgba(15, 23, 42, 0.4); |
| --shadow-accent-glow: 0 4px 20px rgba(190, 242, 100, 0.6); |
| --shadow-coral-glow: 0 4px 20px rgba(244, 63, 94, 0.4); |
| --shadow-focus: 0 0 0 4px rgba(15, 23, 42, 0.2); |
| } |
|
|
| |
| |
| |
| @layer base { |
| body { |
| background-color: var(--color-background); |
| color: var(--color-primary); |
| font-family: var(--font-body); |
| font-size: 16px; |
| line-height: 1.6; |
| -webkit-font-smoothing: antialiased; |
| } |
|
|
| |
| * { |
| -ms-overflow-style: none; |
| scrollbar-width: none; |
| } |
|
|
| |
| button:not(:disabled), |
| [role="button"]:not(:disabled), |
| input[type="checkbox"]:not(:disabled), |
| input[type="radio"]:not(:disabled), |
| label:has(input[type="checkbox"]:not(:disabled)), |
| label:has(input[type="radio"]:not(:disabled)) { |
| cursor: pointer; |
| } |
| |
| *::-webkit-scrollbar { |
| display: none; |
| } |
| |
| |
| h1, h2, h3, h4, .text-display { |
| font-family: var(--font-headline); |
| color: var(--color-primary); |
| } |
|
|
| .text-display { font-size: 40px; line-height: 1.15; font-weight: 700; } |
| h1 { font-size: 32px; line-height: 1.2; font-weight: 700; } |
| h2 { font-size: 24px; line-height: 1.25; font-weight: 600; } |
| h3 { font-size: 20px; line-height: 1.3; font-weight: 600; } |
| h4 { font-size: 16px; line-height: 1.35; font-weight: 500; } |
| |
| .text-h2 { font-size: 32px; line-height: 1.2; font-weight: 700; } |
| .text-h3 { font-size: 24px; line-height: 1.25; font-weight: 600; } |
|
|
| |
| .text-body-lg { font-size: 18px; line-height: 1.6; font-weight: 400; } |
| .text-body-sm { font-size: 14px; line-height: 1.5; font-weight: 400; } |
| .text-caption { font-size: 12px; line-height: 1.4; font-weight: 500; } |
| |
| |
| code, pre, .font-mono, .vitals-data { |
| font-family: var(--font-mono); |
| font-size: 14px; |
| line-height: 1.6; |
| } |
| } |
|
|
| |
| |
| |
| @layer utilities { |
| |
| .max-w-xs { max-width: 20rem !important; } |
| .max-w-sm { max-width: 24rem !important; } |
| .max-w-md { max-width: 28rem !important; } |
| .max-w-lg { max-width: 32rem !important; } |
| .max-w-xl { max-width: 36rem !important; } |
| .max-w-2xl { max-width: 42rem !important; } |
| .max-w-3xl { max-width: 48rem !important; } |
| } |