kalei/logo-mockups/core-options-preview.html

116 lines
4.8 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Kalei Core Options — Side by Side</title>
<style>
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
min-height: 100vh;
display: flex;
flex-direction: column;
align-items: center;
padding: 30px 20px;
transition: background 0.4s, color 0.4s;
}
h1 { font-size: 24px; font-weight: 300; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 4px; }
.subtitle { font-size: 13px; opacity: 0.5; margin-bottom: 30px; letter-spacing: 1px; }
.bg-toggle {
position: fixed; top: 16px; right: 16px;
display: flex; gap: 6px; z-index: 10;
}
.bg-toggle button {
padding: 6px 14px; border: 1px solid rgba(128,128,128,0.3); border-radius: 16px;
cursor: pointer; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; transition: all 0.3s;
}
.bg-toggle button.active { font-weight: 700; }
body.dark { background: #0a0e1a; color: #e0e0e0; }
body.light { background: #f5f5f5; color: #1a1a1a; }
body.checker { background: repeating-conic-gradient(#ccc 0% 25%, #fff 0% 50%) 0 0 / 20px 20px; color: #1a1a1a; }
body.dark .bg-toggle button { background: #1a1f2e; color: #ccc; }
body.dark .bg-toggle button.active { background: #2a3040; border-color: #6366F1; color: #fff; }
body.light .bg-toggle button, body.checker .bg-toggle button { background: #fff; color: #333; }
body.light .bg-toggle button.active, body.checker .bg-toggle button.active { background: #e8e8e8; border-color: #6366F1; }
.grid {
display: grid;
grid-template-columns: repeat(2, 1fr);
gap: 20px;
max-width: 900px;
width: 100%;
}
@media (max-width: 700px) { .grid { grid-template-columns: 1fr; } }
.card {
display: flex; flex-direction: column; align-items: center; gap: 10px;
padding: 16px; border-radius: 12px;
transition: background 0.3s;
}
body.dark .card { background: rgba(255,255,255,0.03); }
body.light .card { background: rgba(0,0,0,0.03); }
body.checker .card { background: rgba(255,255,255,0.6); }
.card object { width: 320px; height: 320px; }
.card-label {
font-size: 14px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.card-desc {
font-size: 12px; opacity: 0.55; text-align: center; line-height: 1.5; max-width: 280px;
}
.original-ref {
margin-top: 30px; padding-top: 20px;
border-top: 1px solid rgba(128,128,128,0.2);
display: flex; flex-direction: column; align-items: center; gap: 10px;
opacity: 0.5;
}
.original-ref object { width: 200px; height: 200px; }
.original-ref span { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; }
</style>
</head>
<body class="dark">
<div class="bg-toggle">
<button onclick="setBg('dark')" class="active">Dark</button>
<button onclick="setBg('light')">Light</button>
<button onclick="setBg('checker')">Transparent</button>
</div>
<h1>Kalei — Core Options</h1>
<p class="subtitle">Same iris blades, four different cores</p>
<div class="grid">
<div class="card">
<object type="image/svg+xml" data="kalei-gemini-core-A-prismatic-orb.svg"></object>
<span class="card-label">A — Prismatic Orb</span>
<span class="card-desc">Soft glowing crystal sphere with specular highlights and rainbow color cycling. Warm and luminous.</span>
</div>
<div class="card">
<object type="image/svg+xml" data="kalei-gemini-core-B-nebula-vortex.svg"></object>
<span class="card-label">B — Nebula Vortex</span>
<span class="card-desc">Overlapping color clouds counter-rotating to create a dreamy, organic swirl with twinkling stars.</span>
</div>
<div class="card">
<object type="image/svg+xml" data="kalei-gemini-core-C-starburst.svg"></object>
<span class="card-label">C — Starburst</span>
<span class="card-desc">Radiating light rays with staggered sparkle, like energy bursting through a prism. Bold and dynamic.</span>
</div>
<div class="card">
<object type="image/svg+xml" data="kalei-gemini-core-D-bloom.svg"></object>
<span class="card-label">D — Bloom Within</span>
<span class="card-desc">A miniature flower inside the iris that counter-rotates — fractal recursion echoing the kaleidoscope brand.</span>
</div>
</div>
<div class="original-ref">
<object type="image/svg+xml" data="kalei-gemini-animated.svg"></object>
<span>Original (hexagon core) for reference</span>
</div>
<script>
function setBg(mode) {
document.body.className = mode;
document.querySelectorAll('.bg-toggle button').forEach(b => b.classList.remove('active'));
event.target.classList.add('active');
}
</script>
</body>
</html>