@import "tailwindcss"; @import "tw-animate-css"; @custom-variant dark (&:is(.dark *)); @theme inline { --radius-sm: calc(var(--radius) - 4px); --radius-md: calc(var(--radius) - 2px); --radius-lg: var(--radius); --radius-xl: calc(var(--radius) + 4px); --color-background: var(--background); --color-foreground: var(--foreground); --color-card: var(--card); --color-card-foreground: var(--card-foreground); --color-popover: var(--popover); --color-popover-foreground: var(--popover-foreground); --color-primary: var(--primary); --color-primary-foreground: var(--primary-foreground); --color-secondary: var(--secondary); --color-secondary-foreground: var(--secondary-foreground); --color-muted: var(--muted); --color-muted-foreground: var(--muted-foreground); --color-accent: var(--accent); --color-accent-foreground: var(--accent-foreground); --color-destructive: var(--destructive); --color-destructive-foreground: var(--destructive-foreground); --color-border: var(--border); --color-input: var(--input); --color-ring: var(--ring); --color-chart-1: var(--chart-1); --color-chart-2: var(--chart-2); --color-chart-3: var(--chart-3); --color-chart-4: var(--chart-4); --color-chart-5: var(--chart-5); --color-sidebar: var(--sidebar); --color-sidebar-foreground: var(--sidebar-foreground); --color-sidebar-primary: var(--sidebar-primary); --color-sidebar-primary-foreground: var(--sidebar-primary-foreground); --color-sidebar-accent: var(--sidebar-accent); --color-sidebar-accent-foreground: var(--sidebar-accent-foreground); --color-sidebar-border: var(--sidebar-border); --color-sidebar-ring: var(--sidebar-ring); --font-display: 'Playfair Display', Georgia, serif; --font-body: 'Source Sans 3', system-ui, sans-serif; --font-mono: 'Fira Code', monospace; --color-forest: oklch(0.30 0.07 155); --color-forest-light: oklch(0.40 0.07 155); --color-taupe: oklch(0.55 0.02 60); --color-taupe-light: oklch(0.75 0.02 60); --color-cream: oklch(0.97 0.01 90); --color-cream-dark: oklch(0.93 0.01 90); --color-terracotta: oklch(0.55 0.15 35); --color-terracotta-light: oklch(0.65 0.12 35); --color-linen: oklch(0.95 0.008 80); } :root { --primary: oklch(0.30 0.07 155); --primary-foreground: oklch(0.97 0.01 90); --sidebar-primary: oklch(0.30 0.07 155); --sidebar-primary-foreground: oklch(0.97 0.01 90); --chart-1: oklch(0.30 0.07 155); --chart-2: oklch(0.55 0.15 35); --chart-3: oklch(0.55 0.02 60); --chart-4: oklch(0.40 0.07 155); --chart-5: oklch(0.65 0.12 35); --radius: 0.5rem; --background: oklch(0.97 0.01 90); --foreground: oklch(0.22 0.02 60); --card: oklch(0.99 0.005 90); --card-foreground: oklch(0.22 0.02 60); --popover: oklch(0.99 0.005 90); --popover-foreground: oklch(0.22 0.02 60); --secondary: oklch(0.95 0.008 80); --secondary-foreground: oklch(0.35 0.02 60); --muted: oklch(0.93 0.01 90); --muted-foreground: oklch(0.50 0.02 60); --accent: oklch(0.93 0.01 90); --accent-foreground: oklch(0.22 0.02 60); --destructive: oklch(0.55 0.15 35); --destructive-foreground: oklch(0.97 0.01 90); --border: oklch(0.88 0.01 80); --input: oklch(0.88 0.01 80); --ring: oklch(0.30 0.07 155); --sidebar: oklch(0.97 0.01 90); --sidebar-foreground: oklch(0.22 0.02 60); --sidebar-accent: oklch(0.93 0.01 90); --sidebar-accent-foreground: oklch(0.22 0.02 60); --sidebar-border: oklch(0.88 0.01 80); --sidebar-ring: oklch(0.30 0.07 155); } @layer base { * { @apply border-border outline-ring/50; } body { @apply bg-background text-foreground; font-family: 'Source Sans 3', system-ui, sans-serif; font-size: 17px; line-height: 1.75; } h1, h2, h3, h4, h5, h6 { font-family: 'Playfair Display', Georgia, serif; } code, pre { font-family: 'Fira Code', monospace; } button:not(:disabled), [role="button"]:not([aria-disabled="true"]), [type="button"]:not(:disabled), [type="submit"]:not(:disabled), [type="reset"]:not(:disabled), a[href], select:not(:disabled), input[type="checkbox"]:not(:disabled), input[type="radio"]:not(:disabled) { @apply cursor-pointer; } } @layer components { .container { width: 100%; margin-left: auto; margin-right: auto; padding-left: 1rem; padding-right: 1rem; } .flex { min-height: 0; min-width: 0; } @media (min-width: 640px) { .container { padding-left: 1.5rem; padding-right: 1.5rem; } } @media (min-width: 1024px) { .container { padding-left: 2rem; padding-right: 2rem; max-width: 1280px; } } }