Skip to content

Commit

Permalink
fix: secondary text color
Browse files Browse the repository at this point in the history
  • Loading branch information
panvourtsis committed Sep 24, 2020
1 parent 1975906 commit c57ef3f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ exports[`Storyshots Design System/Button Dynamic Button Props 1`] = `
</button>
</div>
<button
className="css-1ig4eql-Button"
className="css-1ffnofs-Button"
data-testid="button"
disabled={false}
>
Expand Down
2 changes: 1 addition & 1 deletion src/utils/themeFunctions.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ export const colorPickerBasedOnType = (type: AcceptedColorComponentTypes) => (th
case 'primary':
return theme.palette.text.primary[400];
case 'secondary':
return theme.palette.text.secondary[400];
return theme.palette.text.secondary[100];
default:
return theme.palette.text.light[100];
}
Expand Down

0 comments on commit c57ef3f

Please sign in to comment.