@@ -169,6 +169,17 @@ declare module '@mui/material/styles' {
169169 alt : string ;
170170 } ;
171171 } ;
172+ status : {
173+ success : string ;
174+ warning : string ;
175+ error : string ;
176+ info : string ;
177+ } ;
178+ catalogStatus : {
179+ community : string ;
180+ official : string ;
181+ verified : string ;
182+ } ;
172183 }
173184
174185 // surface tokens need to have enough contrast
@@ -261,6 +272,18 @@ declare module '@mui/material/styles' {
261272 alt : string ;
262273 } ;
263274 } ;
275+
276+ status : {
277+ success : string ;
278+ warning : string ;
279+ error : string ;
280+ info : string ;
281+ } ;
282+ catalogStatus : {
283+ community : string ;
284+ official : string ;
285+ verified : string ;
286+ } ;
264287 }
265288}
266289
@@ -416,6 +439,17 @@ export const lightModePalette: PaletteOptions = {
416439 default : Colors . charcoal [ 40 ] ,
417440 alt : Colors . charcoal [ 40 ]
418441 }
442+ } ,
443+ status : {
444+ success : Colors . notificationColors . success . main ,
445+ warning : Colors . notificationColors . warning . main ,
446+ error : Colors . notificationColors . error . main ,
447+ info : Colors . notificationColors . info . main
448+ } ,
449+ catalogStatus : {
450+ community : Colors . slateGray . main ,
451+ official : Colors . saffron [ 40 ] ,
452+ verified : Colors . keppel [ 40 ]
419453 }
420454} ;
421455
@@ -567,5 +601,16 @@ export const darkModePalette: PaletteOptions = {
567601 default : Colors . accentGrey [ 100 ] ,
568602 alt : Colors . keppel [ 40 ]
569603 }
604+ } ,
605+ status : {
606+ success : Colors . notificationColors . success . main ,
607+ warning : Colors . notificationColors . warning . main ,
608+ error : Colors . notificationColors . error . main ,
609+ info : Colors . notificationColors . info . main
610+ } ,
611+ catalogStatus : {
612+ community : Colors . slateGray . main ,
613+ official : Colors . saffron [ 40 ] ,
614+ verified : Colors . keppel [ 40 ]
570615 }
571616} ;
0 commit comments