File tree Expand file tree Collapse file tree 2 files changed +12
-2
lines changed
Expand file tree Collapse file tree 2 files changed +12
-2
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,8 @@ export const SURFACE_COLORS = {
6969 n92 : '#ebe7ec' ,
7070 n96 : BG_GRAY ,
7171 nv80 : '#c8c5d0' ,
72- s90 : '#e3e0f9'
72+ s90 : '#e3e0f9' ,
73+ n94 : '#f0edf1'
7374}
7475
7576export const ERROR_COLORS = {
@@ -80,10 +81,16 @@ export const ERROR_COLORS = {
8081 '95' : '#ffedea'
8182}
8283
84+ export const NEUTRAL_COLORS = {
85+ '70' : '#adaaaf' ,
86+ '60' : '#929094'
87+ }
88+
8389export const COLORS = {
8490 primary : { ...PRIMARY_COLORS } ,
8591 secondary : { ...SECONDARY_COLORS } ,
8692 tertiary : { ...TERTIARY_COLORS } ,
8793 surface : { ...SURFACE_COLORS } ,
88- error : { ...ERROR_COLORS }
94+ error : { ...ERROR_COLORS } ,
95+ neutral : { ...NEUTRAL_COLORS }
8996}
Original file line number Diff line number Diff line change @@ -25,6 +25,9 @@ const v5Theme = createTheme(theme, {
2525 surface : {
2626 ...COLORS . surface
2727 } ,
28+ neutral : {
29+ ...COLORS . neutral
30+ } ,
2831 "default" : {
2932 main : COLORS . surface . n96 ,
3033 dark : COLORS . surface . n96 ,
You can’t perform that action at this time.
0 commit comments