Skip to content
This repository was archived by the owner on Apr 4, 2022. It is now read-only.

[Explorer] Update Gnosis Chain color and contrast #1023

Merged
merged 2 commits into from
Feb 4, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/NetworkSelector/NetworkSelector.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -102,8 +102,8 @@ export const NetworkLabel = styled.span`
}

&.gnosischain {
background: ${(): string => `rgb(4 121 91 / 15%);`};
color: ${(): string => gnosisChainColor};
background: ${(): string => `rgba(7,121,91,1.00);`};
color: ${(): string => white};
}
`

Expand Down
2 changes: 1 addition & 1 deletion src/styles/colours.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ export const COLOURS = {
whiteDark: '#e9e9f0',
blue: '#3F77FF',
blueDark: '#185afb',
gnosisChainColor: '#04795b',
gnosisChainColor: '#07795b',
purple: '#8958FF',
bgLight: '#edf2f7',
bgDark: 'linear-gradient(0deg, #21222E 0.05%, #2C2D3F 100%)',
Expand Down