Skip to content

Commit 98527bc

Browse files
authored
Merge pull request #978 from amitamrutiya/update-pallete
add primary color and update secondary text color from pallete
2 parents d202bcd + 39ac947 commit 98527bc

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

src/theme/palette.ts

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,6 +193,9 @@ declare module '@mui/material/styles' {
193193
}
194194

195195
export const lightModePalette: PaletteOptions = {
196+
primary: {
197+
main: Colors.KEPPEL
198+
},
196199
background: {
197200
default: Colors.charcoal[100],
198201
secondary: Colors.accentGrey[90],
@@ -312,6 +315,9 @@ export const lightModePalette: PaletteOptions = {
312315
};
313316

314317
export const darkModePalette: PaletteOptions = {
318+
primary: {
319+
main: Colors.KEPPEL
320+
},
315321
background: {
316322
default: Colors.charcoal[10],
317323
secondary: Colors.accentGrey[20],
@@ -386,9 +392,9 @@ export const darkModePalette: PaletteOptions = {
386392
},
387393
text: {
388394
default: Colors.charcoal[100],
389-
secondary: Colors.charcoal[40],
395+
secondary: Colors.charcoal[70],
390396
tertiary: Colors.charcoal[60],
391-
disabled: Colors.charcoal[70],
397+
disabled: Colors.charcoal[60],
392398
inverse: Colors.charcoal[10],
393399
brand: Colors.keppel[40],
394400
info: Colors.blue[40],

0 commit comments

Comments
 (0)