fix dark:

This commit is contained in:
Chuck1sn
2025-05-16 12:56:59 +08:00
parent b2e07d0227
commit 5b8f262450
35 changed files with 390 additions and 433 deletions

View File

@@ -38,12 +38,10 @@ const useAlertStore = defineStore("alertStore", () => {
return;
}
return {
info: "text-blue-800 bg-blue-50 dark:bg-gray-800 dark:text-blue-400 ",
success:
"text-green-800 bg-green-50 dark:bg-gray-800 dark:text-green-400",
warning:
"text-yellow-800 bg-yellow-50 dark:bg-gray-800 dark:text-yellow-300",
error: "text-red-800 bg-red-50 dark:bg-gray-800 dark:text-red-400",
info: "text-blue-800 bg-blue-50 ",
success: "text-green-800 bg-green-50 ",
warning: "text-yellow-800 bg-yellow-50 ",
error: "text-red-800 bg-red-50 ",
}[alertStorage.value.level];
});