Skip to content

Commit

Permalink
fix ilustration color
Browse files Browse the repository at this point in the history
  • Loading branch information
SorinC6 committed May 7, 2024
1 parent 7ad0dca commit 12f9b19
Showing 1 changed file with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,14 @@
import {useTheme} from '@yoroi/theme'
import * as React from 'react'
import Svg, {Defs, LinearGradient, Path, Stop, SvgProps} from 'react-native-svg'

export const ThemeIlustration = (props: SvgProps) => {
const {color} = useTheme()
return (
<Svg width="311" height="281" viewBox="0 0 311 281" fill="none" {...props}>
<Path d="M311 183.04L140.117 280.6L0 200.034L170.214 101.933L311 183.04Z" fill="#DCE0E9" />
<Path d="M311 183.04L140.117 280.6L0 200.034L170.214 101.933L311 183.04Z" fill={color.gray_c200} />

<Path d="M311 162.667L140.117 260.768L0 180.202L170.214 82.1008L311 162.667Z" fill="#EAEDF2" />
<Path d="M311 162.667L140.117 260.768L0 180.202L170.214 82.1008L311 162.667Z" fill={color.gray_c100} />

<Path d="M33.0635 76.8413L28.1599 79.1562L89.0673 114.188L93.9891 111.882L33.0635 76.8413Z" fill="#08C29D" />

Expand Down

0 comments on commit 12f9b19

Please sign in to comment.