@@ -15,7 +15,7 @@ import {
15
15
Text ,
16
16
} from '@trezor/components' ;
17
17
import { variables } from '@trezor/components/src/config' ;
18
- import { borders , palette , spacings , spacingsPx } from '@trezor/theme' ;
18
+ import { borders , paletteV1 , spacings , spacingsPx } from '@trezor/theme' ;
19
19
import { TRADING_DOWNLOAD_INVITY_APP_URL } from '@trezor/urls' ;
20
20
21
21
import { Translation , TrezorLink } from 'src/components/suite' ;
@@ -31,7 +31,7 @@ const IconWrapper = styled.div`
31
31
width: 40px;
32
32
height: 40px;
33
33
border-radius: 50%;
34
- background: ${ palette . lightSecondaryLime500 } ;
34
+ background: ${ paletteV1 . lightSecondaryLime500 } ;
35
35
margin-right: ${ spacingsPx . sm } ;
36
36
` ;
37
37
@@ -55,9 +55,9 @@ const DCAColumn = styled.div`
55
55
56
56
const Column1 = styled ( DCAColumn ) `
57
57
gap: ${ spacingsPx . xxl } ;
58
- background-color: ${ palette . lightPrimaryForest800 } ;
58
+ background-color: ${ paletteV1 . lightPrimaryForest800 } ;
59
59
border-radius: ${ borders . radii . md } ;
60
- color: ${ palette . lightWhiteAlpha1000 } ;
60
+ color: ${ paletteV1 . lightWhiteAlpha1000 } ;
61
61
` ;
62
62
63
63
const Column2 = styled ( DCAColumn ) `
@@ -88,14 +88,14 @@ interface FeatureItemProps {
88
88
const FeatureItem = ( { icon, featureNumber } : FeatureItemProps ) => (
89
89
< Row >
90
90
< IconWrapper >
91
- < Icon name = { icon } size = { 20 } color = { palette . lightPrimaryForest800 } />
91
+ < Icon name = { icon } size = { 20 } color = { paletteV1 . lightPrimaryForest800 } />
92
92
</ IconWrapper >
93
93
< div >
94
- < Text typographyStyle = "highlight" color = { palette . lightSecondaryLime500 } >
94
+ < Text typographyStyle = "highlight" color = { paletteV1 . lightSecondaryLime500 } >
95
95
< Translation id = { `TR_TRADING_DCA_FEATURE_${ featureNumber } _SUBHEADING` } />
96
96
</ Text >
97
97
< Paragraph >
98
- < Text color = { palette . lightWhiteAlpha1000 } >
98
+ < Text color = { paletteV1 . lightWhiteAlpha1000 } >
99
99
< Translation id = { `TR_TRADING_DCA_FEATURE_${ featureNumber } _DESCRIPTION` } />
100
100
</ Text >
101
101
</ Paragraph >
0 commit comments