| @import "tailwindcss" source(none); |
| @source "../src"; |
| @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); |
| --radius-2xl: calc(var(--radius) + 8px); |
| --radius-3xl: calc(var(--radius) + 12px); |
| --radius-4xl: calc(var(--radius) + 16px); |
| --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-ring-offset-background: var(--background); |
| --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); |
| --color-navy: var(--navy); |
| --color-navy-foreground: var(--navy-foreground); |
| --color-orange: var(--orange); |
| --color-orange-foreground: var(--orange-foreground); |
| } |
|
|
| :root { |
| --radius: 0.625rem; |
| --background: #F8FAFC; |
| --foreground: #0A1A3A; |
| --card: #FFFFFF; |
| --card-foreground: #0A1A3A; |
| --popover: #FFFFFF; |
| --popover-foreground: #0A1A3A; |
| --primary: #1E40AF; |
| --primary-foreground: #F8FAFC; |
| --secondary: #0A1A3A; |
| --secondary-foreground: #F8FAFC; |
| --muted: #E2E8F0; |
| --muted-foreground: #64748B; |
| --accent: #F97316; |
| --accent-foreground: #FFFFFF; |
| --destructive: #EF4444; |
| --destructive-foreground: #FFFFFF; |
| --border: #CBD5E1; |
| --input: #E2E8F0; |
| --ring: #1E40AF; |
| --navy: #0A1A3A; |
| --navy-foreground: #F8FAFC; |
| --orange: #F97316; |
| --orange-foreground: #FFFFFF; |
| --chart-1: #1E40AF; |
| --chart-2: #F97316; |
| --chart-3: #0A1A3A; |
| --chart-4: #64748B; |
| --chart-5: #E2E8F0; |
| --sidebar: #F8FAFC; |
| --sidebar-foreground: #0A1A3A; |
| --sidebar-primary: #1E40AF; |
| --sidebar-primary-foreground: #F8FAFC; |
| --sidebar-accent: #E2E8F0; |
| --sidebar-accent-foreground: #0A1A3A; |
| --sidebar-border: #CBD5E1; |
| --sidebar-ring: #1E40AF; |
| } |
|
|
| .dark { |
| --background: #0A1A3A; |
| --foreground: #F8FAFC; |
| --card: #1E293B; |
| --card-foreground: #F8FAFC; |
| --popover: #1E293B; |
| --popover-foreground: #F8FAFC; |
| --primary: #60A5FA; |
| --primary-foreground: #0A1A3A; |
| --secondary: #1E293B; |
| --secondary-foreground: #F8FAFC; |
| --muted: #1E293B; |
| --muted-foreground: #94A3B8; |
| --accent: #FB923C; |
| --accent-foreground: #0A1A3A; |
| --destructive: #EF4444; |
| --destructive-foreground: #FFFFFF; |
| --border: rgba(255,255,255,0.1); |
| --input: rgba(255,255,255,0.15); |
| --ring: #60A5FA; |
| --navy: #0A1A3A; |
| --navy-foreground: #F8FAFC; |
| --orange: #FB923C; |
| --orange-foreground: #0A1A3A; |
| --sidebar: #0F172A; |
| --sidebar-foreground: #F8FAFC; |
| --sidebar-primary: #60A5FA; |
| --sidebar-primary-foreground: #0A1A3A; |
| --sidebar-accent: #1E293B; |
| --sidebar-accent-foreground: #F8FAFC; |
| --sidebar-border: rgba(255,255,255,0.1); |
| --sidebar-ring: #60A5FA; |
| } |
|
|
| @layer base { |
| * { |
| border-color: var(--color-border); |
| } |
|
|
| body { |
| background-color: var(--color-background); |
| color: var(--color-foreground); |
| } |
|
|
| html { |
| scroll-behavior: smooth; |
| } |
| } |
|
|