diff options
Diffstat (limited to 'includes/desktop')
-rw-r--r-- | includes/desktop/components/alert.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/includes/desktop/components/alert.php b/includes/desktop/components/alert.php index a47b99b..0077f18 100644 --- a/includes/desktop/components/alert.php +++ b/includes/desktop/components/alert.php @@ -4,6 +4,7 @@ function c_alert(string $html_message, string $type, ?string $icon = null): void "warning" => ["olive","yellow"], "success" => ["green","lime"], "info" => ["teal","aqua"], + "danger" => ["maroon","pink"], ][$type] ?? ["gray","white"]; if ($icon !== null) $icon = [ |