Skip to content

Commit b2aa71a

Browse files
authored
fix(lens): add a dark logo for lens with a white background (#422)
* fix: add a dark logo for lens with a white background * fix: make the background round
1 parent 27bd537 commit b2aa71a

File tree

3 files changed

+14
-2
lines changed

3 files changed

+14
-2
lines changed

src/chains/details/lens.ts

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@ import { nativeCurrencyTemplate, TOKEN_LIST_IMAGES_PATH } from '../../common/con
22
import { RAW_CHAINS_FILES_PATH } from '../const/path'
33
import { ChainInfo, SupportedChainId } from '../types'
44

5-
const lensLogo = `${RAW_CHAINS_FILES_PATH}/images/lens-logo.svg`
5+
const lensLogoLight = `${RAW_CHAINS_FILES_PATH}/images/lens-logo-light.svg`
6+
const lensLogoDark = `${RAW_CHAINS_FILES_PATH}/images/lens-logo-dark.svg`
67

78
const GHO_MAINNET_ADDRESS = '0x40d16fc0246ad3160ccc09b8d0d3a2cd28ae6c2f'
89
const GHO_MAINNET_LOGO_URL = `${TOKEN_LIST_IMAGES_PATH}/1/${GHO_MAINNET_ADDRESS}/logo.png`
@@ -13,7 +14,7 @@ export const lens: ChainInfo = {
1314
id: SupportedChainId.LENS,
1415
label: 'Lens',
1516
eip155Label: 'Lens Chain Mainnet',
16-
logo: { light: lensLogo, dark: lensLogo },
17+
logo: { light: lensLogoLight, dark: lensLogoDark },
1718
nativeCurrency: {
1819
...nativeCurrencyTemplate,
1920
chainId: SupportedChainId.LENS,
Lines changed: 11 additions & 0 deletions
Loading
File renamed without changes.

0 commit comments

Comments
 (0)