File tree Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Expand file tree Collapse file tree 2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ export const Title = styled.h1`
30
30
font-size : 88px ;
31
31
text-transform : uppercase;
32
32
line-height : 1 ;
33
- color : # fff ;
33
+ color : ${ ( props ) => props . theme . main . foreground } ;
34
34
text-shadow : 0 2px 5px rgba (0 , 0 , 0 , 0.3 );
35
35
margin : 32px 0 ;
36
36
max-width : 100% ;
@@ -110,7 +110,7 @@ export const MenuItemLine = styled.div`
110
110
width : 100% ;
111
111
margin-top : -3px ;
112
112
bottom : 0 ;
113
- background : # fff ;
113
+ background : ${ ( props ) => props . theme . main . foreground } ;
114
114
transition : all 0.3s ;
115
115
left : 0 ;
116
116
`
@@ -120,7 +120,7 @@ export const menuItemStyles = css`
120
120
align-items : center;
121
121
font-size : 22px ;
122
122
text-decoration : none;
123
- color : # fff ;
123
+ color : ${ ( props ) => props . theme . main . foreground } ;
124
124
position : relative;
125
125
transition : color 0.3s ;
126
126
margin : 10px 20px 5px 0 ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export const HomePartnerWrapper = styled.div`
8
8
font-family: "Oxygen Mono", monospace;
9
9
text-transform: uppercase;
10
10
font-size: 22px;
11
+ color: ${ ( props ) => props . theme . main . foreground } ;
11
12
`
12
13
13
14
export const StyledJetBrainsLogo = styled ( JetBrainsLogo ) `
You can’t perform that action at this time.
0 commit comments