Skip to content

Commit 9730f08

Browse files
committed
Added more colors
1 parent 5aaf26d commit 9730f08

File tree

2 files changed

+12
-2
lines changed

2 files changed

+12
-2
lines changed

src/common/colors.jsx

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff 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

7576
export 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+
8389
export 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
}

src/index.jsx

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff 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,

0 commit comments

Comments
 (0)