trippin-website/app/globals.css

194 lines
6.0 KiB
CSS

@import "tailwindcss";
@import "tw-animate-css";
@custom-variant dark (&:is(.dark *));
:root {
/* Updated color palette for psychedelic post-capitalist theme */
--background: #fefce8; /* Soft, warm background */
--foreground: #374151; /* Main text color */
--card: #ffffff; /* Card background for content sections */
--card-foreground: #374151; /* Text color on cards */
--popover: rgba(255, 255, 255, 0.9); /* Light popover background */
--popover-foreground: #374151; /* Text color on popovers */
--primary: #d97706; /* Primary amber color */
--primary-foreground: #ffffff; /* Text color on primary buttons */
--secondary: #6366f1; /* Accent indigo color */
--secondary-foreground: #ffffff; /* Text color on secondary buttons */
--muted: #f8fafc; /* Muted background for less prominent sections */
--muted-foreground: #374151; /* Text color for muted sections */
--accent: #6366f1; /* Accent color for key elements */
--accent-foreground: #ffffff; /* Text color on accent elements */
--destructive: #ea580c; /* Color for destructive actions */
--destructive-foreground: #ffffff; /* Text color on destructive actions */
--border: #d97706; /* Border color for sections */
--input: #ffffff; /* Input field background */
--ring: rgba(255, 255, 255, 0.3); /* Ring color for focus states */
--chart-1: #d97706; /* Color for first chart element */
--chart-2: #6366f1; /* Color for second chart element */
--chart-3: #4b5563; /* Color for third chart element */
--chart-4: #ea580c; /* Color for fourth chart element */
--chart-5: #f97316; /* Color for fifth chart element */
--radius: 0.5rem; /* Corner rounding for cards and buttons */
--sidebar: #fefce8; /* Sidebar background */
--sidebar-foreground: #374151; /* Text color in sidebar */
--sidebar-primary: #d97706; /* Primary color in sidebar */
--sidebar-primary-foreground: #ffffff; /* Text color for primary in sidebar */
--sidebar-accent: #6366f1; /* Accent color for sidebar elements */
--sidebar-accent-foreground: #ffffff; /* Text color for sidebar accents */
--sidebar-border: #d97706; /* Border for sidebar elements */
--sidebar-ring: rgba(255, 255, 255, 0.5); /* Ring for sidebar focus states */
}
.dark {
/* Updated dark mode colors to maintain psychedelic theme */
--background: #1a1a1a;
--foreground: #fefce8;
--card: #2a2a2a;
--card-foreground: #fefce8;
--popover: rgba(42, 42, 42, 0.95);
--popover-foreground: #fefce8;
--primary: #f59e0b;
--primary-foreground: #1a1a1a;
--secondary: #8b5cf6;
--secondary-foreground: #ffffff;
--muted: #2a2a2a;
--muted-foreground: #a1a1aa;
--accent: #8b5cf6;
--accent-foreground: #ffffff;
--destructive: #f97316;
--destructive-foreground: #ffffff;
--border: #f59e0b;
--input: #2a2a2a;
--ring: rgba(245, 158, 11, 0.3);
--chart-1: #f59e0b;
--chart-2: #8b5cf6;
--chart-3: #6b7280;
--chart-4: #f97316;
--chart-5: #fb923c;
--sidebar: #1a1a1a;
--sidebar-foreground: #fefce8;
--sidebar-primary: #f59e0b;
--sidebar-primary-foreground: #1a1a1a;
--sidebar-accent: #8b5cf6;
--sidebar-accent-foreground: #ffffff;
--sidebar-border: #f59e0b;
--sidebar-ring: rgba(245, 158, 11, 0.5);
}
@theme inline {
--font-sans: var(--font-geist-sans);
--font-mono: var(--font-geist-mono);
--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;
}
}
/* Added custom psychedelic animations and effects */
@keyframes float {
0%,
100% {
transform: translateY(0px);
}
50% {
transform: translateY(-20px);
}
}
@keyframes pulse-glow {
0%,
100% {
box-shadow: 0 0 20px rgba(217, 119, 6, 0.3);
}
50% {
box-shadow: 0 0 40px rgba(217, 119, 6, 0.6);
}
}
@keyframes mycelial-growth {
0% {
transform: scale(1) rotate(0deg);
opacity: 0.7;
}
50% {
transform: scale(1.05) rotate(2deg);
opacity: 1;
}
100% {
transform: scale(1) rotate(0deg);
opacity: 0.7;
}
}
.float-animation {
animation: float 6s ease-in-out infinite;
}
.pulse-glow {
animation: pulse-glow 3s ease-in-out infinite;
}
.mycelial-growth {
animation: mycelial-growth 8s ease-in-out infinite;
}
.trippy-gradient {
background: linear-gradient(45deg, #d97706, #6366f1, #ea580c, #f59e0b);
background-size: 400% 400%;
animation: gradient-shift 15s ease infinite;
}
@keyframes gradient-shift {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}