feature: Dark mode switch

This commit is contained in:
Keith Solomon
2025-02-09 16:24:31 -06:00
parent 3220a88fb3
commit bc2d0d8f97
4 changed files with 246 additions and 30 deletions

View File

@@ -2,4 +2,15 @@
@import "tailwindcss";
/* Basic project styles */
.dark body {
@apply bg-gray-900 text-gray-100;
[class*="bg-white"] {
@apply bg-gray-800 text-gray-100;
}
[class*="bg-gray-100"],
[class*="bg-gray-50"] {
@apply bg-gray-700 text-gray-100;
}
}