@import "tailwindcss"; @import "tw-animate-css"; @custom-variant dark (&:is(.dark *)); /* Updated color tokens to match extreme rainbowcore decora aesthetic */ :root { --background: linear-gradient(135deg, #ff007f, #ffd700, #00ff00, #1e90ff); --foreground: #ffffff; --card: rgba(255, 255, 255, 0.8); --card-foreground: #000000; --popover: rgba(255, 255, 255, 0.9); --popover-foreground: #000000; --primary: #ff007f; --primary-foreground: #ffffff; --secondary: #ffd700; --secondary-foreground: #000000; --muted: #f1f5f9; --muted-foreground: #000000; --accent: #00ff00; --accent-foreground: #000000; --destructive: #ff6347; --destructive-foreground: #ffffff; --border: #1e90ff; --input: #ffffff; --ring: rgba(255, 0, 0, 0.5); --chart-1: #ff007f; --chart-2: #ffd700; --chart-3: #00ff00; --chart-4: #1e90ff; --chart-5: #ff6347; --radius: 1rem; --sidebar: rgba(255, 255, 255, 0.9); --sidebar-foreground: #000000; --sidebar-primary: #ff007f; --sidebar-primary-foreground: #ffffff; --sidebar-accent: #ffd700; --sidebar-accent-foreground: #000000; --sidebar-border: #1e90ff; --sidebar-ring: rgba(255, 0, 0, 0.5); } .dark { --background: linear-gradient(135deg, #ff007f, #ffd700, #00ff00, #1e90ff); --foreground: #ffffff; --card: rgba(255, 255, 255, 0.8); --card-foreground: #000000; --popover: rgba(255, 255, 255, 0.9); --popover-foreground: #000000; --primary: #ff007f; --primary-foreground: #ffffff; --secondary: #ffd700; --secondary-foreground: #000000; --muted: #f1f5f9; --muted-foreground: #000000; --accent: #00ff00; --accent-foreground: #000000; --destructive: #ff6347; --destructive-foreground: #ffffff; --border: #1e90ff; --input: #ffffff; --ring: rgba(255, 0, 0, 0.5); --chart-1: #ff007f; --chart-2: #ffd700; --chart-3: #00ff00; --chart-4: #1e90ff; --chart-5: #ff6347; --sidebar: rgba(255, 255, 255, 0.9); --sidebar-foreground: #000000; --sidebar-primary: #ff007f; --sidebar-primary-foreground: #ffffff; --sidebar-accent: #ffd700; --sidebar-accent-foreground: #000000; --sidebar-border: #1e90ff; --sidebar-ring: rgba(255, 0, 0, 0.5); } @theme inline { --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 animated rainbow background and kawaii cursor */ background: linear-gradient(45deg, #ff007f, #ffd700, #00ff00, #1e90ff, #ff6347, #ff007f); background-size: 400% 400%; animation: rainbow-shift 3s ease infinite; cursor: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32'%3E%3Ctext y='24' font-size='24'%3E🌈%3C/text%3E%3C/svg%3E"), auto; overflow-x: hidden; } /* Added rainbow animation keyframes */ @keyframes rainbow-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } } /* Added kawaii sparkle animation */ @keyframes sparkle { 0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; } 50% { transform: scale(1.2) rotate(180deg); opacity: 0.8; } } /* Added bounce animation for interactive elements */ @keyframes bounce-kawaii { 0%, 100% { transform: translateY(0px) scale(1); } 50% { transform: translateY(-10px) scale(1.05); } } /* Added rainbow text gradient */ .rainbow-text { background: linear-gradient(45deg, #ff007f, #ffd700, #00ff00, #1e90ff, #ff6347); background-size: 200% 200%; -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; animation: rainbow-shift 2s ease infinite; } /* Added kawaii hover effects */ .kawaii-hover:hover { animation: bounce-kawaii 0.6s ease infinite; transform: scale(1.1); filter: brightness(1.2) saturate(1.3); } /* Added sparkle decorations */ .sparkle::before { content: "✨"; position: absolute; top: -10px; right: -10px; animation: sparkle 1.5s ease infinite; } .sparkle::after { content: "⭐"; position: absolute; bottom: -10px; left: -10px; animation: sparkle 2s ease infinite reverse; } }