diff --git a/landing/src/app/globals.css b/landing/src/app/globals.css index 219d81bd..122e224a 100644 --- a/landing/src/app/globals.css +++ b/landing/src/app/globals.css @@ -27,25 +27,26 @@ } .dark { - --background: 0 0% 0%; - --foreground: 0 0% 100%; - --card: 0 0% 0%; - --card-foreground: 0 0% 100%; - --popover: 0 0% 0%; - --popover-foreground: 0 0% 100%; - --primary: 0 0% 100%; - --primary-foreground: 0 0% 0%; - --secondary: 0 0% 10%; - --secondary-foreground: 0 0% 100%; - --muted: 0 0% 10%; + --background: 0 0% 3%; + --foreground: 0 0% 98%; + --card: 0 0% 8% / 0.6; + --card-foreground: 0 0% 98%; + --popover: 0 0% 8% / 0.8; + --popover-foreground: 0 0% 98%; + --primary: 0 0% 98%; + --primary-foreground: 0 0% 8%; + --secondary: 0 0% 12% / 0.5; + --secondary-foreground: 0 0% 98%; + --muted: 0 0% 12% / 0.4; --muted-foreground: 0 0% 65%; - --accent: 0 0% 10%; - --accent-foreground: 0 0% 100%; - --destructive: 0 0% 100%; - --destructive-foreground: 0 0% 0%; - --border: 0 0% 20%; - --input: 0 0% 20%; - --ring: 0 0% 100%; + --accent: 0 0% 15% / 0.5; + --accent-foreground: 0 0% 98%; + --destructive: 0 62% 50%; + --destructive-foreground: 0 0% 98%; + --border: 0 0% 15% / 0.5; + --input: 0 0% 15% / 0.5; + --ring: 0 0% 98% / 0.2; + --radius: 1rem; } } @@ -54,7 +55,10 @@ @apply border-border; } body { - @apply bg-background text-foreground; + @apply bg-background text-foreground antialiased; + background-image: + radial-gradient(at 0% 0%, rgba(255, 255, 255, 0.03) 0px, transparent 50%), + radial-gradient(at 100% 100%, rgba(255, 255, 255, 0.02) 0px, transparent 50%); } } diff --git a/landing/src/components/DownloadSection.tsx b/landing/src/components/DownloadSection.tsx index 321c8cc7..e3b4d4fe 100644 --- a/landing/src/components/DownloadSection.tsx +++ b/landing/src/components/DownloadSection.tsx @@ -35,10 +35,10 @@ export function DownloadSection() {