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

Commit

Permalink
Adding hippieBlue color on gnosisChain styles
Browse files Browse the repository at this point in the history
  • Loading branch information
henrypalacios committed Dec 21, 2021
1 parent f95e1f9 commit ee8bcd5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/NetworkSelector/NetworkSelector.styled.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import styled from 'styled-components'
import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'
import { COLOURS } from 'styles'

const { fadedGreyishWhiteOpacity, white } = COLOURS
const { fadedGreyishWhiteOpacity, white, hippieBlue } = COLOURS

export const SelectorContainer = styled.div`
display: flex;
Expand Down Expand Up @@ -68,7 +68,7 @@ export const Option = styled.div`
background: ${({ theme }): string => theme.yellow4};
}
&.gnosischain {
background: ${({ theme }): string => theme.orange1};
background: ${(): string => hippieBlue};
}
&.ethereum {
background: ${({ theme }): string => theme.blue4};
Expand Down Expand Up @@ -98,8 +98,8 @@ export const NetworkLabel = styled.span`
}
&.gnosischain {
background: ${({ theme }): string => theme.orangeOpacity};
color: ${({ theme }): string => theme.orange};
background: ${(): string => `rgb(72 169 166 / 25%);`};
color: ${(): string => hippieBlue};
}
`

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

0 comments on commit ee8bcd5

Please sign in to comment.