<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8" /> <meta name="viewport" content="width=device-width, initial-scale=1.0" /> <title>Procedural Sky Demo</title> <script src="https://cdn.tailwindcss.com"></script> <style> body { margin: 0; overflow: hidden; background-color: #202020; color: #bdbdbd; } ::-webkit-scrollbar { width: 8px; height: 8px; background-color: #2d2d2d; } ::-webkit-scrollbar-thumb { background-color: #5d5d5d; border-radius: 4px; } input[type="range"] { accent-color: #bdbdbd; } </style> <script type="importmap"> { "imports": { "react-dom/": "https://esm.sh/react-dom@^19.2.3/", "lucide-react": "https://esm.sh/lucide-react@^0.562.0", "@react-three/drei": "https://esm.sh/@react-three/drei@^10.7.7", "three": "https://esm.sh/three@^0.182.0", "@react-three/fiber": "https://esm.sh/@react-three/fiber@^9.5.0", "react/": "https://esm.sh/react@^19.2.3/", "react": "https://esm.sh/react@^19.2.3" } } </script> <link rel="stylesheet" href="/index.css"> </head> <body> <div id="root"></div> <script type="module" src="/index.tsx"></script> </body> </html>