Skeuomorphic Pastel Sidebar
A simple, responsive sidebar component with Skeuomorphic design and pastel colors, suitable for a blog or content site. Includes dark mode support.
HTML Code
<div class="flex flex-col h-screen bg-gray-200 dark:bg-gray-800">
<div class="flex items-center justify-center h-16 bg-gray-300 dark:bg-gray-700 shadow-md">
<span class="text-lg font-semibold text-gray-700 dark:text-gray-200">Blog Menu</span>
</div>
<nav class="flex-grow p-4">
<ul class="space-y-2">
<li>
<a href="#" class="block py-2 px-4 text-gray-700 dark:text-gray-200 rounded hover:bg-gray-300 dark:hover:bg-gray-700 active:bg-gray-400 dark:active:bg-gray-600">
Home
</a>
</li>
<li>
<a href="#" class="block py-2 px-4 text-gray-700 dark:text-gray-200 rounded hover:bg-gray-300 dark:hover:bg-gray-700 active:bg-gray-400 dark:active:bg-gray-600">
About
</a>
</li>
<li>
<a href="#" class="block py-2 px-4 text-gray-700 dark:text-gray-200 rounded hover:bg-gray-300 dark:hover:bg-gray-700 active:bg-gray-400 dark:active:bg-gray-600">
Contact
</a>
</li>
</ul>
</nav>
</div>
Related Components
Sidebar Component
A responsive sidebar component designed with Neumorphism style using Tailwind CSS. It features a soft UI look with subtle shadows, supports dark mode, and includes placeholder images and avatar.
Sidebar Component
A responsive sidebar component for showcasing portfolio items with engaging microinteractions and a complementary color scheme, supporting dark mode.
Simple Vibrant Blog Sidebar
A simple, responsive sidebar component for blog content, designed with vibrant colors and Material-like feel using Tailwind CSS. Includes navigation links and a user profile section. Supports dark mode using Tailwind's dark: prefix. Fixed on larger screens, hidden on smaller screens.