Skip to content

Commit

Permalink
remove gray color
Browse files Browse the repository at this point in the history
  • Loading branch information
ccatherinetan committed Dec 23, 2024
1 parent 2a65c7e commit ff5465c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
5 changes: 3 additions & 2 deletions components/ProgressBar/styles.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,14 @@ import COLORS from '@/styles/colors';
export const BackgroundDiv = styled.div`
width: 100%;
height: 0.375rem;
background-color: ${COLORS.gray};
background-color: ${COLORS.lightgray};
position: relative;
`;

export const ProgressDiv = styled.div<{ width: number }>`
width: ${props => props.width}%;
height: 0.375rem;
border-radius: 0.1875rem;
border-radius: 3px;
background-color: ${COLORS.shrub};
top: 0;
left: 0;
Expand Down
1 change: 0 additions & 1 deletion styles/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const COLORS = {
// grey
black: '#222222',
darkgray: '#555555',
gray: '#D9D9D9',
midgray: '#888888',
lightgray: '#DDDDDD',
backgroundGrey: '#F7F6F3',
Expand Down

0 comments on commit ff5465c

Please sign in to comment.