Toast Notifications Component
A dark mode toast notification component designed for dashboard applications, featuring a complementary color scheme with various interactive elements.
HTML Code
<div class="fixed bottom-5 right-5 space-y-4">
<div class="bg-gray-800 dark:bg-gray-900 text-white p-4 rounded-lg shadow-lg flex items-start space-x-3">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/32.jpg" alt="User Avatar">
<div class="flex-1">
<p class="font-semibold">John Doe</p>
<p class="text-sm">Successfully completed the action.</p>
</div>
<button class="text-blue-500 hover:text-blue-400 focus:outline-none">
Dismiss
</button>
</div>
<div class="bg-gray-800 dark:bg-gray-900 text-white p-4 rounded-lg shadow-lg flex items-start space-x-3">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/women/32.jpg" alt="User Avatar">
<div class="flex-1">
<p class="font-semibold">Jane Smith</p>
<p class="text-sm">You have new messages.</p>
</div>
<button class="text-blue-500 hover:text-blue-400 focus:outline-none">
View
</button>
</div>
<div class="bg-gray-800 dark:bg-gray-900 text-white p-4 rounded-lg shadow-lg flex items-start space-x-3">
<img class="h-12 w-12 rounded-full" src="https://randomuser.me/api/portraits/men/45.jpg" alt="User Avatar">
<div class="flex-1">
<p class="font-semibold">Mike Johnson</p>
<p class="text-sm">Error occurred during processing!</p>
</div>
<button class="text-blue-500 hover:text-blue-400 focus:outline-none">
Retry
</button>
</div>
</div>
Related Components
Toast Notifications Component
A minimalist and vibrant Toast Notifications Component using Tailwind CSS. The component is designed with a simple layout for portfolios, supports dark mode, and is responsive without JavaScript.
Toast Notifications Component
A responsive Toast Notification component with Skeuomorphic design and dark mode support, built with Tailwind CSS.
Toast Notifications
A responsive, dark-theme compatible Toast Notifications Component for E-commerce with a Minimalist/Flat Design using a Complementary color scheme.