Skip to content

Commit

Permalink
Merge pull request #24 from lagoom-br/theme
Browse files Browse the repository at this point in the history
Button color update
  • Loading branch information
lelemm authored Feb 19, 2025
2 parents 7a01c73 + c02e04e commit 1b76778
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
7 changes: 6 additions & 1 deletion packages/desktop-client/src/style/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@ export const hover = oldColors.hover;
export const beige50 = '#FCFCFC';
export const beige100 = '#F1F0F0';
export const beige500 = '#E3C39D';
export const beige700 = '#A68868';
export const beige700 = "#A68868";
export const lavendergrey = '#B9BCCD';
export const slateblue = '#617D98';
export const greenbutton = '#35a18a';
export const greenbuttonhover = '#2D8D79';
export const greenbuttondisabled = '#67ab99';
export const greentext = '#28a17e';
export const greenbackground = '#e8f3ef';
6 changes: 3 additions & 3 deletions packages/desktop-client/src/style/themes/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,12 +101,12 @@ export const buttonMenuSelectedBorder = buttonMenuSelectedBackground;

export const buttonPrimaryText = colorPalette.white;
export const buttonPrimaryTextHover = buttonPrimaryText;
export const buttonPrimaryBackground = colorPalette.slateblue;
export const buttonPrimaryBackgroundHover = colorPalette.navy700;
export const buttonPrimaryBackground = colorPalette.greenbutton;
export const buttonPrimaryBackgroundHover = colorPalette.greenbuttonhover;
export const buttonPrimaryBorder = buttonPrimaryBackground;
export const buttonPrimaryShadow = 'rgba(0, 0, 0, 0.3)';
export const buttonPrimaryDisabledText = colorPalette.white;
export const buttonPrimaryDisabledBackground = colorPalette.navy400;
export const buttonPrimaryDisabledBackground = colorPalette.greenbuttondisabled;
export const buttonPrimaryDisabledBorder = buttonPrimaryDisabledBackground;

export const buttonNormalText = colorPalette.navy900;
Expand Down

0 comments on commit 1b76778

Please sign in to comment.