Skip to content
This repository has been archived by the owner on Jul 25, 2024. It is now read-only.

Commit

Permalink
Forgot to update these colors oops
Browse files Browse the repository at this point in the history
  • Loading branch information
Artuto committed Mar 30, 2024
1 parent 09f952a commit 33ed001
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,11 @@ public enum ComponentStatus
@SerializedName("degraded_performance")
DEGRADED_PERFORMANCE(Constants.YELLOW, Constants.YELLOW_EMOTE, "Degraded Performance"),
@SerializedName("partial_outage")
PARTIAL_OUTAGE(Constants.YELLOW, Constants.YELLOW_EMOTE, "Partial Outage"),
PARTIAL_OUTAGE(Constants.RED, Constants.RED_EMOTE, "Partial Outage"),
@SerializedName("major_outage")
MAJOR_OUTAGE(Constants.RED, Constants.RED_EMOTE, "Major Outage"),
MAJOR_OUTAGE(Constants.BLACK, Constants.GRAY_EMOTE, "Major Outage"),
@SerializedName("under_maintenance")
UNDER_MAINTENANCE(Constants.BLACK, Constants.GRAY_EMOTE, "Under Maintenance");
UNDER_MAINTENANCE(Constants.PURPLE, Constants.PURPLE_EMOTE, "Under Maintenance");

private final int color;
private final String emote;
Expand Down

0 comments on commit 33ed001

Please sign in to comment.