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`
3030 font-size : 88px ;
3131 text-transform : uppercase;
3232 line-height : 1 ;
33- color : # fff ;
33+ color : ${ ( props ) => props . theme . main . foreground } ;
3434 text-shadow : 0 2px 5px rgba (0 , 0 , 0 , 0.3 );
3535 margin : 32px 0 ;
3636 max-width : 100% ;
@@ -110,7 +110,7 @@ export const MenuItemLine = styled.div`
110110 width : 100% ;
111111 margin-top : -3px ;
112112 bottom : 0 ;
113- background : # fff ;
113+ background : ${ ( props ) => props . theme . main . foreground } ;
114114 transition : all 0.3s ;
115115 left : 0 ;
116116`
@@ -120,7 +120,7 @@ export const menuItemStyles = css`
120120 align-items : center;
121121 font-size : 22px ;
122122 text-decoration : none;
123- color : # fff ;
123+ color : ${ ( props ) => props . theme . main . foreground } ;
124124 position : relative;
125125 transition : color 0.3s ;
126126 margin : 10px 20px 5px 0 ;
Original file line number Diff line number Diff line change @@ -8,6 +8,7 @@ export const HomePartnerWrapper = styled.div`
88 font-family: "Oxygen Mono", monospace;
99 text-transform: uppercase;
1010 font-size: 22px;
11+ color: ${ ( props ) => props . theme . main . foreground } ;
1112`
1213
1314export const StyledJetBrainsLogo = styled ( JetBrainsLogo ) `
You can’t perform that action at this time.
0 commit comments