185 lines
4.5 KiB
CSS
185 lines
4.5 KiB
CSS
@import "tailwindcss";
|
|
@import "tw-animate-css";
|
|
|
|
@custom-variant dark (&:is(.dark *));
|
|
|
|
:root {
|
|
/* Deep space cosmic color palette */
|
|
--background: oklch(0.12 0.03 270);
|
|
--foreground: oklch(0.95 0.02 180);
|
|
|
|
--card: oklch(0.18 0.04 260);
|
|
--card-foreground: oklch(0.95 0.02 180);
|
|
|
|
--popover: oklch(0.18 0.04 260);
|
|
--popover-foreground: oklch(0.95 0.02 180);
|
|
|
|
/* Vibrant cyan-blue for space-time portals */
|
|
--primary: oklch(0.65 0.25 240);
|
|
--primary-foreground: oklch(0.98 0.01 180);
|
|
|
|
/* Purple-pink for dimensional shifts */
|
|
--secondary: oklch(0.55 0.22 310);
|
|
--secondary-foreground: oklch(0.98 0.01 180);
|
|
|
|
--muted: oklch(0.25 0.04 270);
|
|
--muted-foreground: oklch(0.65 0.02 180);
|
|
|
|
/* Electric magenta accent for singularities */
|
|
--accent: oklch(0.7 0.28 330);
|
|
--accent-foreground: oklch(0.98 0.01 180);
|
|
|
|
--destructive: oklch(0.55 0.25 25);
|
|
--destructive-foreground: oklch(0.98 0.01 180);
|
|
|
|
--border: oklch(0.35 0.05 260);
|
|
--input: oklch(0.25 0.04 270);
|
|
--ring: oklch(0.65 0.25 240);
|
|
|
|
/* Chart colors - cosmic palette */
|
|
--chart-1: oklch(0.65 0.25 240);
|
|
--chart-2: oklch(0.7 0.28 330);
|
|
--chart-3: oklch(0.6 0.22 280);
|
|
--chart-4: oklch(0.7 0.2 200);
|
|
--chart-5: oklch(0.65 0.24 350);
|
|
|
|
--radius: 1rem;
|
|
|
|
/* Sidebar */
|
|
--sidebar: oklch(0.18 0.04 260);
|
|
--sidebar-foreground: oklch(0.95 0.02 180);
|
|
--sidebar-primary: oklch(0.65 0.25 240);
|
|
--sidebar-primary-foreground: oklch(0.98 0.01 180);
|
|
--sidebar-accent: oklch(0.25 0.04 270);
|
|
--sidebar-accent-foreground: oklch(0.95 0.02 180);
|
|
--sidebar-border: oklch(0.35 0.05 260);
|
|
--sidebar-ring: oklch(0.65 0.25 240);
|
|
}
|
|
|
|
.dark {
|
|
/* Already dark - enhanced with more vibrant accents */
|
|
--background: oklch(0.08 0.04 270);
|
|
--foreground: oklch(0.98 0.01 180);
|
|
|
|
--primary: oklch(0.7 0.28 240);
|
|
--accent: oklch(0.75 0.3 330);
|
|
}
|
|
|
|
@theme inline {
|
|
--font-sans: "Geist", "Geist Fallback";
|
|
--font-serif: "Crimson Text", serif;
|
|
--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);
|
|
--radius-sm: calc(var(--radius) - 4px);
|
|
--radius-md: calc(var(--radius) - 2px);
|
|
--radius-lg: var(--radius);
|
|
--radius-xl: calc(var(--radius) + 4px);
|
|
--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);
|
|
}
|
|
|
|
@layer base {
|
|
* {
|
|
@apply border-border outline-ring/50;
|
|
}
|
|
body {
|
|
@apply bg-background text-foreground;
|
|
/* Add cursor for space-time distortion tracking */
|
|
cursor: none;
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
@apply text-balance;
|
|
}
|
|
|
|
p {
|
|
@apply text-pretty;
|
|
}
|
|
}
|
|
|
|
/* Space-time warp animations */
|
|
@keyframes warp-pulse {
|
|
0%,
|
|
100% {
|
|
transform: scale(1);
|
|
opacity: 0.8;
|
|
}
|
|
50% {
|
|
transform: scale(1.2);
|
|
opacity: 0.4;
|
|
}
|
|
}
|
|
|
|
@keyframes rotate-3d {
|
|
0% {
|
|
transform: rotateX(0deg) rotateY(0deg);
|
|
}
|
|
100% {
|
|
transform: rotateX(360deg) rotateY(360deg);
|
|
}
|
|
}
|
|
|
|
@keyframes float-drift {
|
|
0%,
|
|
100% {
|
|
transform: translateY(0px) translateX(0px);
|
|
}
|
|
25% {
|
|
transform: translateY(-20px) translateX(10px);
|
|
}
|
|
50% {
|
|
transform: translateY(0px) translateX(20px);
|
|
}
|
|
75% {
|
|
transform: translateY(20px) translateX(10px);
|
|
}
|
|
}
|
|
|
|
@keyframes ripple {
|
|
0% {
|
|
transform: scale(0);
|
|
opacity: 1;
|
|
}
|
|
100% {
|
|
transform: scale(4);
|
|
opacity: 0;
|
|
}
|
|
}
|
|
|
|
.warp-element {
|
|
transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
|
|
}
|