Progress Bar Component
A responsive progress bar component designed for dark mode with a pastel color scheme, suitable for business/corporate websites.
HTML Code
<div class="bg-gray-800 dark:bg-gray-900 p-6 rounded-lg shadow-md">
<h2 class="text-white text-lg font-semibold mb-4">Progress Bar</h2>
<div class="relative pt-1">
<div class="flex justify-between mb-1 text-sm text-white">
<span>0%</span>
<span>100%</span>
</div>
<div class="h-2 bg-gray-600 rounded">
<div class="bg-pastel-green-500 h-full rounded" style="width: 70%;"></div>
</div>
</div>
<div class="flex items-center justify-between mt-4">
<div class="flex items-center">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-8 h-8 rounded-full mr-2">
<span class="text-white">John Doe</span>
</div>
<span class="text-gray-400 dark:text-gray-500">In Progress</span>
</div>
</div>
Related Components
Glassmorphism Progress Bar
Glassmorphism-style progress bar designed for social media interfaces, featuring vibrant colors and dark mode support. Simple layout with no JavaScript.
Neumorphism Progress Bar
A responsive neumorphism-styled progress bar component designed for dashboards, incorporating an interactive feature and supporting dark mode.
Material Design Earthy Progress Bar
A Material Design-inspired progress bar with earth tones, suitable for social media interfaces. It is responsive and includes dark mode support using Tailwind CSS.