File size: 4,311 Bytes
7ca8a68 | 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 74 | <!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 src="https://cdn.jsdelivr.net/npm/feather-icons/dist/feather.min.js"></script>
<script src="https://unpkg.com/feather-icons"></script>
<script src="components/navbar.js"></script>
<script src="components/hero.js"></script>
<script src="components/footer.js"></script>
</head>
<body class="bg-gradient-to-br from-gray-50 to-gray-100 min-h-screen">
<custom-navbar></custom-navbar>
<custom-hero></custom-hero>
<main class="container mx-auto px-4 py-12">
<section class="mb-16">
<h2 class="text-3xl font-bold text-center mb-8 text-gray-800">Color Exploration</h2>
<div class="grid grid-cols-1 md:grid-cols-3 gap-6">
<div class="bg-white rounded-xl shadow-lg p-6 transform hover:scale-105 transition duration-300">
<div class="h-32 w-full rounded-lg bg-gradient-to-r from-purple-500 to-pink-500 mb-4"></div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Vibrant Vibes</h3>
<p class="text-gray-600">Explore our dynamic color combinations that bring energy to any design.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 transform hover:scale-105 transition duration-300">
<div class="h-32 w-full rounded-lg bg-gradient-to-r from-blue-400 to-cyan-300 mb-4"></div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Cool Waters</h3>
<p class="text-gray-600">Soothing color palettes inspired by ocean waves and clear skies.</p>
</div>
<div class="bg-white rounded-xl shadow-lg p-6 transform hover:scale-105 transition duration-300">
<div class="h-32 w-full rounded-lg bg-gradient-to-r from-yellow-400 to-orange-500 mb-4"></div>
<h3 class="text-xl font-semibold text-gray-800 mb-2">Sunset Glow</h3>
<p class="text-gray-600">Warm tones that capture the magic of golden hour.</p>
</div>
</div>
</section>
<section class="mb-16">
<h2 class="text-3xl font-bold text-center mb-8 text-gray-800">Interactive Color Mixer</h2>
<div class="bg-white rounded-xl shadow-lg p-8 max-w-3xl mx-auto">
<div class="grid grid-cols-1 md:grid-cols-2 gap-8">
<div>
<div class="h-64 w-full rounded-lg mb-4 bg-gradient-to-br from-red-400 to-blue-500"></div>
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-gray-700">Red</span>
<span class="text-sm font-medium text-gray-700">400</span>
</div>
<input type="range" min="0" max="500" value="400" class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
</div>
<div>
<div class="h-64 w-full rounded-lg mb-4 bg-gradient-to-br from-green-400 to-yellow-500"></div>
<div class="flex justify-between mb-2">
<span class="text-sm font-medium text-gray-700">Green</span>
<span class="text-sm font-medium text-gray-700">400</span>
</div>
<input type="range" min="0" max="500" value="400" class="w-full h-2 bg-gray-200 rounded-lg appearance-none cursor-pointer">
</div>
</div>
<button class="mt-6 w-full bg-indigo-600 hover:bg-indigo-700 text-white font-medium py-2 px-4 rounded-lg transition duration-300">
Generate New Palette
</button>
</div>
</section>
</main>
<custom-footer></custom-footer>
<script src="script.js"></script>
<script>feather.replace();</script>
<script src="https://huggingface.co/deepsite/deepsite-badge.js"></script>
</body>
</html> |