Alert Dark
<div class="space-y-4">
<!-- Dark Blue Alert -->
<div role="alert" class="flex items-center p-4 bg-gray-800 border-l-4 border-blue-500 text-gray-100 rounded-r-md">
<svg xmlns="http://www.w3.org/2000/svg" fill="none" viewBox="0 0 24 24" class="stroke-blue-400 h-6 w-6 mr-3">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M13 16h-1v-4h-1m1-4h.01M21 12a9 9 0 11-18 0 9 9 0 0118 0z"></path>
</svg>
<span>Information: Dark theme is now enabled.</span>
</div>
<!-- Dark Green Alert -->
<div role="alert" class="flex items-center p-4 bg-gray-800 border-l-4 border-green-500 text-gray-100 rounded-r-md">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-3 stroke-green-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 12l2 2 4-4m6 2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<span>Success: Your changes have been saved.</span>
</div>
<!-- Dark Yellow Alert -->
<div role="alert" class="flex items-center p-4 bg-gray-800 border-l-4 border-yellow-500 text-gray-100 rounded-r-md">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-3 stroke-yellow-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 9v2m0 4h.01m-6.938 4h13.856c1.54 0 2.502-1.667 1.732-3L13.732 4c-.77-1.333-2.694-1.333-3.464 0L3.34 16c-.77 1.333.192 3 1.732 3z" />
</svg>
<span>Warning: Your session will expire in 5 minutes.</span>
</div>
<!-- Dark Red Alert -->
<div role="alert" class="flex items-center p-4 bg-gray-800 border-l-4 border-red-500 text-gray-100 rounded-r-md">
<svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 mr-3 stroke-red-400" fill="none" viewBox="0 0 24 24" stroke="currentColor">
<path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M10 14l2-2m0 0l2-2m-2 2l-2-2m2 2l2 2m7-2a9 9 0 11-18 0 9 9 0 0118 0z" />
</svg>
<span>Error: Unable to connect to the server.</span>
</div>
</div>
Copied to clipboard