Skip to content

Commit

Permalink
fix: update address displayer to use text-subdued for odd, closes #4249
Browse files Browse the repository at this point in the history
  • Loading branch information
pete-watters committed Oct 13, 2023
1 parent 2a0630e commit a9562c6
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ interface AddressDisplayerLayoutProps {
export function AddressDisplayerLayout({ isEven, ...props }: AddressDisplayerLayoutProps) {
return (
<styled.span
color={isEven ? 'accent.text-primary' : 'accent.border-hover'}
color={isEven ? 'accent.text-primary' : 'accent.text-subdued'}
fontFamily="Fira Code"
mr="tight"
lineHeight="24px"
Expand Down

0 comments on commit a9562c6

Please sign in to comment.