| <!DOCTYPE html> |
| <html lang="en"> |
| <head> |
| <meta charset="UTF-8"> |
| <meta name="viewport" content="width=device-width, initial-scale=1.0"> |
| <title>Colorful Void Explorer</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> |
| tailwind.config = { |
| theme: { |
| extend: { |
| colors: { |
| primary: { |
| 50: '#f0f9ff', |
| 100: '#e0f2fe', |
| 200: '#bae6fd', |
| 300: '#7dd3fc', |
| 400: '#38bdf8', |
| 500: '#0ea5e9', |
| 600: '#0284c7', |
| 700: '#0369a1', |
| 800: '#075985', |
| 900: '#0c4a6e', |
| }, |
| secondary: { |
| 50: '#f5f3ff', |
| 100: '#ede9fe', |
| 200: '#ddd6fe', |
| 300: '#c4b5fd', |
| 400: '#a78bfa', |
| 500: '#8b5cf6', |
| 600: '#7c3aed', |
| 700: '#6d28d9', |
| 800: '#5b21b6', |
| 900: '#4c1d95', |
| } |
| } |
| } |
| } |
| } |
| </script> |
| </head> |
| <body class="min-h-screen bg-gradient-to-br from-primary-50 to-secondary-50"> |
| <div class="container mx-auto px-4 py-16"> |
| <div class="text-center mb-12"> |
| <h1 class="text-5xl font-bold text-primary-900 mb-4">Colorful Void Explorer</h1> |
| <p class="text-xl text-secondary-700 max-w-2xl mx-auto">Exploring the undefined with style and grace</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-1"> |
| <div class="h-48 bg-gradient-to-r from-primary-400 to-secondary-400"></div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold text-primary-800 mb-2">Primary Color</h3> |
| <p class="text-secondary-600">Our beautiful primary color palette</p> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 hover:shadow-xl hover:-translate-y-1"> |
| <div class="h-48 bg-gradient-to-r from-secondary-400 to-primary-400"></div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold text-primary-800 mb-2">Secondary Color</h3> |
| <p class="text-secondary-600">Our vibrant secondary color palette</p> |
| </div> |
| </div> |
|
|
| <div class="bg-white rounded-xl shadow-lg overflow-hidden transition-all duration-300 hover:shadow-xl hover:-translate-y-1"> |
| <div class="h-48 bg-gradient-to-r from-primary-300 via-secondary-300 to-primary-500"></div> |
| <div class="p-6"> |
| <h3 class="text-xl font-semibold text-primary-800 mb-2">Theme</h3> |
| <p class="text-secondary-600">Our undefined theme mode</p> |
| </div> |
| </div> |
| </div> |
|
|
| <div class="mt-16 bg-white rounded-xl shadow-lg p-8 max-w-4xl mx-auto"> |
| <div class="flex items-center mb-6"> |
| <i data-feather="alert-circle" class="text-primary-600 mr-3"></i> |
| <h2 class="text-2xl font-bold text-primary-800">About This Design</h2> |
| </div> |
| <p class="text-secondary-700 mb-4"> |
| This design embraces the undefined with a carefully crafted color palette that works in harmony. |
| The primary and secondary colors complement each other while maintaining their distinct identities. |
| </p> |
| <p class="text-secondary-700"> |
| The layout is fully responsive and uses Tailwind CSS for styling, with Feather Icons for visual accents. |
| The gradient backgrounds create a sense of depth and movement. |
| </p> |
| </div> |
| </div> |
|
|
| <script>feather.replace();</script> |
| <script src="script.js"></script> |
| <script src="https://huggingface.co/deepsite/deepsite-badge.js"></script> |
| </body> |
| </html> |