Data Visualization Components Component
A simple dark mode data visualization component for social media with an analogous color scheme.
HTML Code
<div class="bg-gray-900 min-h-screen p-4 text-gray-200">
<div class="max-w-md mx-auto bg-gray-800 rounded-lg shadow-lg p-6">
<h2 class="text-xl font-bold mb-4 text-blue-300">Social Media Engagement</h2>
<div class="space-y-4">
<div class="flex items-center justify-between">
<span class="text-gray-400">Likes:</span>
<span class="text-blue-400 font-semibold">12,345</span>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-400">Comments:</span>
<span class="text-green-400 font-semibold">890</span>
</div>
<div class="flex items-center justify-between">
<span class="text-gray-400">Shares:</span>
<span class="text-teal-400 font-semibold">321</span>
</div>
<div class="w-full bg-gray-700 rounded-full h-2.5 mt-4">
<div class="bg-gradient-to-r from-blue-400 via-green-400 to-teal-400 h-2.5 rounded-full" style="width: 75%;"></div>
</div>
<p class="text-sm text-gray-500 text-center mt-2">Overall Engagement: 75%</p>
</div>
</div>
</div>
Related Components
Data Visualization Components
A retro vintage styled data visualization dashboard component with a dark theme that features earth tones and a simple layout.
Dark Mode Data Visualization Component
A complex, responsive data visualization component designed with a dark monochromatic theme. Features multiple interactive visualization elements including a line chart, bar chart, and data cards. Includes hover effects and uses Tailwind's dark mode support. Suitable for blogs and content consumption platforms.
Data Visualization Component
A responsive data visualization component designed in Material Design style with a pastel color scheme, suitable for showcasing portfolio work with dark mode support.