Glassmorphism Sales Chart
A simple, responsive chart component with a Glassmorphism style, vibrant color scheme, and dark mode support, suitable for e-commerce dashboards.
HTML Code
<div class="p-4 bg-white bg-opacity-20 backdrop-filter backdrop-blur-lg rounded-lg shadow-lg dark:bg-gray-800 dark:bg-opacity-30">
<h3 class="text-xl font-semibold text-gray-800 dark:text-white mb-4">Sales Overview</h3>
<div class="grid grid-cols-1 md:grid-cols-2 gap-4">
<div class="text-center">
<p class="text-sm text-gray-600 dark:text-gray-300">Weekly Sales</p>
<p class="text-2xl font-bold text-purple-600 dark:text-purple-400">$5,200</p>
</div>
<div class="text-center">
<p class="text-sm text-gray-600 dark:text-gray-300">Monthly Sales</p>
<p class="text-2xl font-bold text-teal-600 dark:text-teal-400">$18,500</p>
</div>
</div>
<div class="mt-6">
<div class="h-32 bg-gradient-to-r from-purple-400 to-teal-400 rounded-lg dark:from-purple-600 dark:to-teal-600"></div>
</div>
</div>
Related Components
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.
Charts Component
A responsive 3D styled charts component with dark theme support using Tailwind CSS.