Skip to content

Commit

Permalink
Merge pull request #871 from SAHU-01/sistent_theme
Browse files Browse the repository at this point in the history
feat(tabs): add grey background color
  • Loading branch information
leecalcote authored Jan 7, 2025
2 parents c4cb9d4 + 054ca60 commit e8f61e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions src/theme/colors/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export const saffron = {
* Grayscale Colors
*/
export const charcoal = {
110: '#525252',
100: '#FDFDFD',
90: '#EAEDEE',
80: '#D2D8DA',
Expand Down
3 changes: 3 additions & 0 deletions src/theme/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ declare module '@mui/material/styles' {
graphics?: {
default: string;
};
tabs?: string;
tertiary?: string;
hover?: string;
blur?: {
Expand Down Expand Up @@ -194,6 +195,7 @@ export const lightModePalette: PaletteOptions = {
default: Colors.charcoal[100],
secondary: Colors.accentGrey[90],
tertiary: Colors.accentGrey[80],
tabs: Colors.charcoal[70],
hover: Colors.charcoal[90],
supplementary: Colors.accentGrey[40],
blur: {
Expand Down Expand Up @@ -309,6 +311,7 @@ export const darkModePalette: PaletteOptions = {
default: Colors.charcoal[10],
secondary: Colors.accentGrey[20],
tertiary: Colors.accentGrey[30],
tabs: Colors.charcoal[110],
hover: Colors.charcoal[20],
supplementary: Colors.accentGrey[40],
blur: {
Expand Down

0 comments on commit e8f61e1

Please sign in to comment.