Spaces:
Running
Running
File size: 2,027 Bytes
d9c3fef | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 | <!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Moiré & Emergence</title>
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
lab: {
bg: '#0a0a0f',
surface: '#12121a',
border: '#1e1e2e',
text: '#c8c8d4',
dim: '#5a5a70',
accent: '#e8c840',
cyan: '#40c8c8',
green: '#40c870',
red: '#c84040',
purple: '#8868d0',
}
},
fontFamily: {
mono: ['JetBrains Mono', 'Menlo', 'Monaco', 'Courier New', 'monospace'],
serif: ['Crimson Pro', 'Georgia', 'serif'],
}
}
}
}
</script>
<style>
@import url('https://fonts.googleapis.com/css2?family=JetBrains+Mono:wght@300;400;600&family=Crimson+Pro:ital,wght@0,300;0,600;1,300&display=swap');
body {
background-color: #0a0a0f;
color: #c8c8d4;
}
/* Custom scrollbar for lab aesthetic */
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background: #0a0a0f;
}
::-webkit-scrollbar-thumb {
background: #1e1e2e;
border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
background: #5a5a70;
}
</style>
<link rel="stylesheet" href="/index.css">
<script type="importmap">
{
"imports": {
"react-dom/": "https://esm.sh/react-dom@^19.2.4/",
"react/": "https://esm.sh/react@^19.2.4/",
"react": "https://esm.sh/react@^19.2.4",
"recharts": "https://esm.sh/recharts@^3.7.0"
}
}
</script>
<script type="module" crossorigin src="/assets/index-futdUrMp.js"></script>
</head>
<body>
<div id="root"></div>
</body>
</html> |