aboutsummaryrefslogtreecommitdiff
path: root/src/client/util/reportManager/reportManagerUtils.ts
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/util/reportManager/reportManagerUtils.ts')
-rw-r--r--src/client/util/reportManager/reportManagerUtils.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/util/reportManager/reportManagerUtils.ts b/src/client/util/reportManager/reportManagerUtils.ts
index 3c919856a..51517e80d 100644
--- a/src/client/util/reportManager/reportManagerUtils.ts
+++ b/src/client/util/reportManager/reportManagerUtils.ts
@@ -22,7 +22,7 @@ export enum BugType {
export const priorityColors: { [key: string]: string[] } = {
'priority-low': ['#d4e0ff', '#000000'],
'priority-medium': ['#6a91f6', '#ffffff'],
- 'priority-high': ['#4476f7', '#ffffff'],
+ 'priority-high': ['#0f4ce7', '#ffffff'],
};
// [bgColor, color]
@@ -42,7 +42,7 @@ export const getLabelColors = (label: string): string[] => {
} else if (bugSet.has(label as BugType)) {
return bugColors[label];
}
- return ['#347bff', '#ffffff'];
+ return ['#0f73f6', '#ffffff'];
};
export interface FileData {