Skip to content

Commit

Permalink
feat(rebranding): fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
Maxime committed Feb 16, 2024
1 parent a41369a commit ea50679
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/andive/src/components/filter-button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ const FilterButtonRoot = styled(({active, backgroundColor, ...props}) => <button
`}
&:hover {
background-color: ${({active}) => (active ? palette.darkBerryBlue : palette.lightPrimary)};
background-color: ${({active}) => (active ? palette.darkBerryBlue : palette.lightBerryBlue)};
}
`

Expand Down
2 changes: 1 addition & 1 deletion packages/andive/src/components/modal.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import {ZIndexes} from '../constants/enum'

const Modal = posed(styled.div`
position: fixed;
background: ${props => (props.transparent ? palette.hexToRGBA(palette.white, 0.8) : palette.mediumBeetrootPurple)};
background: ${props => (props.transparent ? palette.hexToRGBA(palette.white, 0.8) : palette.darkBeetrootPurple)};
top: 0;
left: 0;
Expand Down
2 changes: 1 addition & 1 deletion packages/andive/src/constants/palette.ts
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ export const mediumLettuceGreen = amblea.green[500] // '#5dd167'
export const lightLettuceGreen = amblea.green[200] // '#9ee3a4'

export const darkRadishRed = amblea.red[700] // '#a61b30'
export const mediumRadishRed = amblea.red[500] // '#f53f5b'
export const mediumRadishRed = amblea.red[700] // '#a61b30'
export const lightRadishRed = amblea.red[200] // '#f98c9d'

export const darkPotatoYellow = amblea.orange[700] // '#625d11'
Expand Down

0 comments on commit ea50679

Please sign in to comment.