From 2943bed5d486e75587bcd31e6d008d8f727ee0f2 Mon Sep 17 00:00:00 2001 From: sabaimran Date: Wed, 7 Aug 2024 18:51:31 +0530 Subject: [PATCH] Update category colors --- .../web/app/components/suggestions/suggestionsData.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/interface/web/app/components/suggestions/suggestionsData.ts b/src/interface/web/app/components/suggestions/suggestionsData.ts index 7edbb766..47ba44de 100644 --- a/src/interface/web/app/components/suggestions/suggestionsData.ts +++ b/src/interface/web/app/components/suggestions/suggestionsData.ts @@ -32,12 +32,12 @@ function addSuggestionColorMap(type: SuggestionType, color: string) { addSuggestionColorMap(SuggestionType.Automation, "blue"); addSuggestionColorMap(SuggestionType.Paint, "indigo"); addSuggestionColorMap(SuggestionType.Travel, "yellow"); -addSuggestionColorMap(SuggestionType.Health, "orange"); +addSuggestionColorMap(SuggestionType.Health, "teal"); addSuggestionColorMap(SuggestionType.Learning, "purple"); addSuggestionColorMap(SuggestionType.Language, "blue"); addSuggestionColorMap(SuggestionType.PopCulture, "red"); addSuggestionColorMap(SuggestionType.Food, "yellow"); -addSuggestionColorMap(SuggestionType.Interviewing, "purple"); +addSuggestionColorMap(SuggestionType.Interviewing, "orange"); addSuggestionColorMap(SuggestionType.Home, "green"); addSuggestionColorMap(SuggestionType.Fun, "fuchsia"); addSuggestionColorMap(SuggestionType.Code, "purple");