Updated use of theme styles to fix missing colors

This commit is contained in:
2025-05-11 00:00:32 +02:00
parent 33b233d0c5
commit d33e7bf295
9 changed files with 49 additions and 49 deletions

View File

@@ -38,11 +38,11 @@
@{
var bgColor = State switch
{
ServerState.Installing => "bg-primary-500",
ServerState.Offline => "bg-danger-500",
ServerState.Starting => "bg-warning-500",
ServerState.Stopping => "bg-warning-500",
ServerState.Online => "bg-success-500",
ServerState.Installing => "bg-primary",
ServerState.Offline => "bg-danger",
ServerState.Starting => "bg-warning",
ServerState.Stopping => "bg-warning",
ServerState.Online => "bg-success",
_ => "bg-gray-500"
};
}