Skip to content

Commit 7787b87

Browse files
Merge pull request #6886 from davidwatkins73/waltz-6885-stat-colors
Added some more colour names
2 parents 51bc2ba + 2162dd3 commit 7787b87

1 file changed

Lines changed: 33 additions & 4 deletions

File tree

waltz-ng/client/common/colors.js

Lines changed: 33 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ export const greyHex = "#939393";
2727
export const lightGreyHex = "#D1D1D1";
2828
export const blueHex = "#1F7FE0";
2929
export const greenHex = "#5BB65D";
30+
export const vibrantGreenHex = "#43f545";
3031
export const yellowHex = "#E0E314";
3132
export const goldHex = "#B7A61F";
3233
export const amberHex = "#D9923F";
@@ -49,6 +50,7 @@ export const grey = rgb(greyHex);
4950
export const lightGrey = rgb(lightGreyHex);
5051
export const blue = rgb(blueHex);
5152
export const green = rgb(greenHex);
53+
export const vibrantGreen = rgb(vibrantGreenHex);
5254
export const yellow = rgb(yellowHex);
5355
export const gold = rgb(goldHex);
5456
export const amber = rgb(amberHex);
@@ -172,9 +174,23 @@ const variableColorList = [
172174
"END_OF_LIFE",
173175
"NON PAAS",
174176
"HIGH RISK",
175-
"HIGH"
177+
"HIGH",
178+
"WORSE - FAILURE RATE",
179+
"WORSE - CHANGE LEAD TIME",
180+
"LOW - RELEASE FREQ",
181+
"WORSE - TIME TO RESTORE"
176182
]
177-
}, {
183+
},
184+
{
185+
color: vibrantGreen,
186+
keys: [
187+
"NONE - FAILURE RATE",
188+
"ELITE - CHANGE LEAD TIME",
189+
"ELITE - RELEASE FREQ",
190+
"MINOR - TIME TO RESTORE"
191+
]
192+
},
193+
{
178194
color: green,
179195
keys: [
180196
"YES",
@@ -194,7 +210,18 @@ const variableColorList = [
194210
"NOT_END_OF_LIFE",
195211
"PAAS",
196212
"LOW RISK",
197-
"LOW"
213+
"LOW",
214+
"LOW - FAILURE RATE",
215+
"HIGH - RELEASE FREQ",
216+
"LOW - TIME TO RESTORE",
217+
"GOOD - CHANGE LEAD TIME"
218+
]
219+
}, {
220+
color: yellow,
221+
keys: [
222+
"MEDIUM - FAILURE RATE",
223+
"MEDIUM - CHANGE LEAD TIME",
224+
"MEDIUM - RELEASE FREQ",
198225
]
199226
}, {
200227
color: amber,
@@ -213,7 +240,9 @@ const variableColorList = [
213240
"OKAY",
214241
"PREPROD",
215242
"MEDIUM RISK",
216-
"MEDIUM"
243+
"MEDIUM",
244+
"HIGH - FAILURE RATE",
245+
"POOR - TIME TO RESTORE"
217246
]
218247
}, {
219248
color: blue,

0 commit comments

Comments
 (0)