chromatic-canvas / index.html
CHieuu's picture
https://unlucid.ai/edit
70ce5e4 verified
Raw
History Blame Contribute Delete
3.93 kB
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chromatic Canvas</title>
<link rel="stylesheet" href="style.css">
<script src="https://cdn.tailwindcss.com"></script>
<script>
tailwind.config = {
theme: {
extend: {
colors: {
primary: {
light: '#f5f5f5',
DEFAULT: '#e5e5e5',
dark: '#d4d4d4',
},
secondary: {
light: '#d1d5db',
DEFAULT: '#9ca3af',
dark: '#6b7280',
}
}
}
}
}
</script>
<script src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
</head>
<body class="bg-primary-light min-h-screen">
<custom-header></custom-header>
<main class="container mx-auto px-4 py-12">
<div class="text-center mb-16">
<h1 class="text-5xl font-bold text-secondary-dark mb-6">Chromatic Canvas</h1>
<p class="text-xl text-secondary-DEFAULT max-w-2xl mx-auto">A vibrant playground where colors come to life</p>
</div>
<div class="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-8">
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 hover:shadow-xl hover:-translate-y-2">
<div class="h-48 bg-gradient-to-r from-secondary-light to-secondary-dark"></div>
<div class="p-6">
<h3 class="text-xl font-semibold text-secondary-dark mb-3">Color Explorer</h3>
<p class="text-gray-600 mb-4">Discover beautiful color combinations and palettes</p>
<a href="#" class="inline-flex items-center text-primary-dark font-medium hover:text-secondary-dark">
Explore <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 hover:shadow-xl hover:-translate-y-2">
<div class="h-48 bg-gradient-to-r from-primary-dark to-primary-light"></div>
<div class="p-6">
<h3 class="text-xl font-semibold text-secondary-dark mb-3">Theme Creator</h3>
<p class="text-gray-600 mb-4">Design your perfect color theme for any project</p>
<a href="#" class="inline-flex items-center text-primary-dark font-medium hover:text-secondary-dark">
Create <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
<div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 hover:shadow-xl hover:-translate-y-2">
<div class="h-48 bg-gradient-to-r from-secondary-DEFAULT to-primary-DEFAULT"></div>
<div class="p-6">
<h3 class="text-xl font-semibold text-secondary-dark mb-3">Palette Generator</h3>
<p class="text-gray-600 mb-4">Generate harmonious color palettes instantly</p>
<a href="#" class="inline-flex items-center text-primary-dark font-medium hover:text-secondary-dark">
Generate <i data-feather="arrow-right" class="ml-2 w-4 h-4"></i>
</a>
</div>
</div>
</div>
</main>
<custom-footer></custom-footer>
<script src="components/header.js"></script>
<script src="components/footer.js"></script>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html>