kalei/logo-mockups/preview.html

117 lines
3.2 KiB
HTML
Raw 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 Logo Mockups — Animated Preview</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: 40px 20px;
transition: background 0.4s;
}
h1 {
font-size: 28px;
font-weight: 300;
letter-spacing: 4px;
text-transform: uppercase;
margin-bottom: 8px;
}
.subtitle {
font-size: 14px;
opacity: 0.6;
margin-bottom: 40px;
letter-spacing: 1px;
}
.bg-toggle {
position: fixed;
top: 20px;
right: 20px;
display: flex;
gap: 8px;
z-index: 10;
}
.bg-toggle button {
padding: 8px 16px;
border: 1px solid rgba(128,128,128,0.3);
border-radius: 20px;
cursor: pointer;
font-size: 12px;
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 { background: #fff; color: #333; }
body.light .bg-toggle button.active { background: #e8e8e8; border-color: #6366F1; }
body.checker .bg-toggle button { background: #fff; color: #333; }
body.checker .bg-toggle button.active { background: #e8e8e8; border-color: #6366F1; }
.logos {
display: flex;
gap: 60px;
flex-wrap: wrap;
justify-content: center;
align-items: center;
}
.logo-card {
display: flex;
flex-direction: column;
align-items: center;
gap: 20px;
}
.logo-card object, .logo-card img {
width: 360px;
height: 360px;
}
.logo-label {
font-size: 13px;
letter-spacing: 2px;
text-transform: uppercase;
opacity: 0.7;
}
</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</h1>
<p class="subtitle">Animated Logo Mockups</p>
<div class="logos">
<div class="logo-card">
<object type="image/svg+xml" data="kalei-claude-animated.svg"></object>
<span class="logo-label">Claude Version — Prismatic Bloom</span>
</div>
<div class="logo-card">
<object type="image/svg+xml" data="kalei-gemini-animated.svg"></object>
<span class="logo-label">Gemini Version — Crystalline Iris</span>
</div>
</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>