Skip to content

Commit

Permalink
feat(PPDSC-2120): fix a11y story contrast issue
Browse files Browse the repository at this point in the history
  • Loading branch information
mstuartf committed Jun 21, 2022
1 parent 267092f commit b3387fe
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/popover/__tests__/popover.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -53,23 +53,23 @@ const myCustomTheme = createTheme({
popoverCustom: {
base: {
borderStyle: 'solid',
borderColor: '{{colors.red080}}',
borderColor: '{{colors.black}}',
boxShadow: '{{shadows.shadow050}}',
borderRadius: '{{borders.borderRadiusDefault}}',
backgroundColor: '{{colors.red020}}', // require for Firefox
backgroundColor: '{{colors.red080}}', // required for Firefox
},
},
popoverPointerCustom: {
base: {
backgroundColor: '{{colors.red020}}',
backgroundColor: '{{colors.red080}}',
borderStyle: 'solid',
borderColor:
'{{colors.transparent}} {{colors.red080}} {{colors.red080}} {{colors.transparent}}',
'{{colors.transparent}} {{colors.black}} {{colors.black}} {{colors.transparent}}',
},
},
popoverPanelCustom: {
base: {
backgroundColor: '{{colors.red020}}',
backgroundColor: '{{colors.red080}}',
borderRadius: '{{borders.borderRadiusDefault}}',
color: '{{colors.inkInverse}}',
},
Expand Down

0 comments on commit b3387fe

Please sign in to comment.