Skip to content

Commit 054ca60

Browse files
committed
feat(tabs): add grey background color
Signed-off-by: Ankita Sahu <[email protected]>
1 parent f2edeb6 commit 054ca60

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

src/theme/colors/colors.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ export const saffron = {
8989
* Grayscale Colors
9090
*/
9191
export const charcoal = {
92+
110: '#525252',
9293
100: '#FDFDFD',
9394
90: '#EAEDEE',
9495
80: '#D2D8DA',

src/theme/palette.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ declare module '@mui/material/styles' {
1818
graphics?: {
1919
default: string;
2020
};
21+
tabs?: string;
2122
tertiary?: string;
2223
hover?: string;
2324
blur?: {
@@ -194,6 +195,7 @@ export const lightModePalette: PaletteOptions = {
194195
default: Colors.charcoal[100],
195196
secondary: Colors.accentGrey[90],
196197
tertiary: Colors.accentGrey[80],
198+
tabs: Colors.charcoal[70],
197199
hover: Colors.charcoal[90],
198200
supplementary: Colors.accentGrey[40],
199201
blur: {
@@ -309,6 +311,7 @@ export const darkModePalette: PaletteOptions = {
309311
default: Colors.charcoal[10],
310312
secondary: Colors.accentGrey[20],
311313
tertiary: Colors.accentGrey[30],
314+
tabs: Colors.charcoal[110],
312315
hover: Colors.charcoal[20],
313316
supplementary: Colors.accentGrey[40],
314317
blur: {

0 commit comments

Comments
 (0)