Neumorphic Container Component
A responsive Neumorphic container component for showcasing work or products, designed with a triadic color scheme and dark theme support, using Tailwind CSS.
HTML Code
<div class="flex flex-col items-center justify-center min-h-screen bg-gray-100 dark:bg-gray-800 p-4">
<div class="bg-gray-300 dark:bg-gray-900 shadow-neumorphic rounded-lg p-6 w-full max-w-md">
<div class="flex flex-col items-center justify-center mb-4">
<img src="https://picsum.photos/200/150" alt="Portfolio Item" class="rounded-lg mb-2 shadow-neumorphic">
<h2 class="text-lg font-bold text-gray-800 dark:text-gray-200">Portfolio Item Title</h2>
<p class="text-gray-600 dark:text-gray-400">A brief description of the portfolio item goes here. It showcases the work done and highlights key features.</p>
</div>
<div class="flex items-center mt-4">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full shadow-neumorphic">
<span class="ml-2 text-gray-800 dark:text-gray-200">John Doe</span>
</div>
<div class="mt-4">
<a href="#" class="text-blue-500 dark:text-blue-300 hover:underline transition ease-in-out duration-200">View Details</a>
</div>
</div>
</div>
<style>
.shadow-neumorphic {
box-shadow: 8px 8px 15px rgba(0, 0, 0, 0.3),
-8px -8px 15px rgba(255, 255, 255, 0.5);
}
</style>
Related Components
E-commerce Container Component
Glassmorphism E-commerce Container Component with Triadic Color Scheme and Complex Layout, including Dark Mode Support
Brutalist Container Component
A simple but bold container component designed with a brutalist style and vibrant color scheme, suitable for business or corporate websites, supporting dark mode using Tailwind CSS.
Social Media Skeumorphic Container
A skeuomorphic social media container designed with a monochromatic scheme, featuring soft shadows, subtle gradients, and rounded edges to mimic real-world elements like buttons and cards, suitable for displaying user posts or profiles. Includes full responsiveness and dark mode support.