Skip to content

Commit

Permalink
Merge pull request #899 from amitamrutiya/add-token
Browse files Browse the repository at this point in the history
feat: add card name color token for toolbar
  • Loading branch information
amitamrutiya authored Jan 27, 2025
2 parents 2d498cf + d3c30a6 commit fdb745a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/theme/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ declare module '@mui/material/styles' {
default: string;
};
tabs?: string;
card?: string;
tertiary?: string;
hover?: string;
blur?: {
Expand Down Expand Up @@ -196,6 +197,7 @@ export const lightModePalette: PaletteOptions = {
secondary: Colors.accentGrey[90],
tertiary: Colors.accentGrey[80],
tabs: Colors.accentGrey[100], // TODO: Make this name or token to more genric
card: Colors.charcoal[100],
hover: Colors.charcoal[90],
supplementary: Colors.accentGrey[40],
blur: {
Expand Down Expand Up @@ -313,6 +315,7 @@ export const darkModePalette: PaletteOptions = {
secondary: Colors.accentGrey[20],
tertiary: Colors.accentGrey[30],
tabs: Colors.gray[10], // TODO: Make this name or token to more genric
card: Colors.gray[20],
hover: Colors.charcoal[20],
supplementary: Colors.accentGrey[40],
blur: {
Expand Down

0 comments on commit fdb745a

Please sign in to comment.