Skip to content

Commit

Permalink
Added some more colour names
Browse files Browse the repository at this point in the history
  • Loading branch information
davidwatkins73 committed Dec 1, 2023
1 parent f22cdba commit 2162dd3
Showing 1 changed file with 33 additions and 4 deletions.
37 changes: 33 additions & 4 deletions waltz-ng/client/common/colors.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ export const greyHex = "#939393";
export const lightGreyHex = "#D1D1D1";
export const blueHex = "#1F7FE0";
export const greenHex = "#5BB65D";
export const vibrantGreenHex = "#43f545";
export const yellowHex = "#E0E314";
export const goldHex = "#B7A61F";
export const amberHex = "#D9923F";
Expand All @@ -49,6 +50,7 @@ export const grey = rgb(greyHex);
export const lightGrey = rgb(lightGreyHex);
export const blue = rgb(blueHex);
export const green = rgb(greenHex);
export const vibrantGreen = rgb(vibrantGreenHex);
export const yellow = rgb(yellowHex);
export const gold = rgb(goldHex);
export const amber = rgb(amberHex);
Expand Down Expand Up @@ -172,9 +174,23 @@ const variableColorList = [
"END_OF_LIFE",
"NON PAAS",
"HIGH RISK",
"HIGH"
"HIGH",
"WORSE - FAILURE RATE",
"WORSE - CHANGE LEAD TIME",
"LOW - RELEASE FREQ",
"WORSE - TIME TO RESTORE"
]
}, {
},
{
color: vibrantGreen,
keys: [
"NONE - FAILURE RATE",
"ELITE - CHANGE LEAD TIME",
"ELITE - RELEASE FREQ",
"MINOR - TIME TO RESTORE"
]
},
{
color: green,
keys: [
"YES",
Expand All @@ -194,7 +210,18 @@ const variableColorList = [
"NOT_END_OF_LIFE",
"PAAS",
"LOW RISK",
"LOW"
"LOW",
"LOW - FAILURE RATE",
"HIGH - RELEASE FREQ",
"LOW - TIME TO RESTORE",
"GOOD - CHANGE LEAD TIME"
]
}, {
color: yellow,
keys: [
"MEDIUM - FAILURE RATE",
"MEDIUM - CHANGE LEAD TIME",
"MEDIUM - RELEASE FREQ",
]
}, {
color: amber,
Expand All @@ -213,7 +240,9 @@ const variableColorList = [
"OKAY",
"PREPROD",
"MEDIUM RISK",
"MEDIUM"
"MEDIUM",
"HIGH - FAILURE RATE",
"POOR - TIME TO RESTORE"
]
}, {
color: blue,
Expand Down

0 comments on commit 2162dd3

Please sign in to comment.