Charts Component
A complex charts component designed for e-commerce web applications in dark mode with a grayscale color scheme. This component includes multiple interactive elements such as charts, data points, tooltip, and buttons, with responsive design using Tailwind CSS.
HTML Code
<div class="bg-gray-900 text-gray-100 p-6 rounded-lg shadow-lg">
<h2 class="text-2xl font-bold mb-4">Sales Chart</h2>
<div class="flex items-center justify-between mb-4">
<span class="text-lg">Last 30 Days</span>
<button class="bg-gray-700 hover:bg-gray-600 text-gray-100 py-1 px-3 rounded">Weekly</button>
<button class="bg-gray-700 hover:bg-gray-600 text-gray-100 py-1 px-3 rounded">Monthly</button>
<button class="bg-gray-700 hover:bg-gray-600 text-gray-100 py-1 px-3 rounded">Yearly</button>
</div>
<div class="relative">
<img src="https://picsum.photos/600/300" alt="Sales Chart" class="w-full rounded-lg">
<div class="absolute top-0 left-0 w-full h-full flex items-center justify-center bg-gray-800 bg-opacity-50 rounded-lg">
<span class="text-xl font-semibold">$23,000</span>
<span class="text-sm">Total Sales</span>
</div>
</div>
<div class="mt-4">
<div class="flex justify-around text-sm text-gray-400">
<div class="text-center">
<img src="https://randomuser.me/api/portraits/men/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mb-2">
<span>User 1</span>
</div>
<div class="text-center">
<img src="https://randomuser.me/api/portraits/women/1.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mb-2">
<span>User 2</span>
</div>
<div class="text-center">
<img src="https://randomuser.me/api/portraits/men/2.jpg" alt="User Avatar" class="w-10 h-10 rounded-full mb-2">
<span>User 3</span>
</div>
</div>
</div>
</div>
Related Components
RetroChartsComponent
A retro/vintage chart component with responsive effects and dark theme support using Tailwind CSS. Includes placeholder images.
Charts Component
A responsive charts component designed in skeuomorphism style with a grayscale color scheme and dark mode support, ideal for e-commerce applications.
Charts Component
A minimalist charts component with responsive design and dark theme support using Tailwind CSS.