@@ -16,7 +16,7 @@ const rotate360 = keyframes`
1616`
1717
1818export const LoadingIcon = styled ( loadingIcon ) `
19- fill: ${ theme ( 'u_panel .search_icon' ) } ;
19+ fill: ${ theme ( 'shell .search_icon' ) } ;
2020 width: 30px;
2121 height: 30px;
2222 margin-top: 20px;
@@ -69,10 +69,10 @@ export const SuggestionWrapper = styled.div`
6969
7070// #001b21;
7171export const BaseBar = styled . div `
72- border: 1px solid ${ theme ( 'u_panel .border' ) } ;
72+ border: 1px solid ${ theme ( 'shell .border' ) } ;
7373 width: 100%;
7474 height: 70px;
75- background: ${ theme ( 'u_panel .bar_bg' ) } ;
75+ background: ${ theme ( 'shell .bar_bg' ) } ;
7676 color: white;
7777 display: flex;
7878 flex-direction: row;
@@ -92,19 +92,18 @@ export const AlertBar = styled(BaseBar)`
9292export const InfoBar = styled ( BaseBar ) `
9393 padding: 10px;
9494 min-height: 70px;
95- background: ${ props =>
96- props . active ? theme ( 'u_panel.active_bg' , props ) : '' } ;
95+ background: ${ props => ( props . active ? theme ( 'shell.active_bg' , props ) : '' ) } ;
9796`
9897export const InputBar = styled . input `
99- caret-color: ${ theme ( 'u_panel .search_input' ) } ;
98+ caret-color: ${ theme ( 'shell .search_input' ) } ;
10099 flex-grow: 1;
101100 font-family: '.SFNSText-Light', 'SF UI Text', 'Helvetica Neue', 'Arial',
102101 'Lucida Grande', 'Segoe UI', Noto Sans, sans-serif;
103102 height: 100%;
104103 width: auto;
105104 outline: none;
106105 font-weight: 200;
107- color: ${ theme ( 'u_panel .search_input' ) } ;
106+ color: ${ theme ( 'shell .search_input' ) } ;
108107 font-size: 1.6rem;
109108 max-height: none;
110109 background-color: transparent;
@@ -133,11 +132,11 @@ export const Title = styled.div`
133132 font-size: 1.5em;
134133 color: white;
135134 > a {
136- color: ${ theme ( 'u_panel .link' ) } ;
135+ color: ${ theme ( 'shell .link' ) } ;
137136 }
138137`
139138export const Desc = styled . div `
140- color: ${ theme ( 'u_panel .text' ) } ;
139+ color: ${ theme ( 'shell .text' ) } ;
141140 text-overflow: ellipsis;
142141 font-size: 1.1em;
143142 width: 90%;
@@ -146,20 +145,20 @@ export const Desc = styled.div`
146145 margin-bottom: 7px;
147146`
148147export const Hint = styled . div `
149- color: ${ theme ( 'u_panel .text' ) } ;
148+ color: ${ theme ( 'shell .text' ) } ;
150149 margin-top: 10px;
151150 margin-right: 15px;
152151 width: 30px;
153152 font-size: 1.1rem;
154153`
155154export const HintEnter = styled ( ReactSVG ) `
156- color: ${ theme ( 'u_panel .text' ) } ;
155+ color: ${ theme ( 'shell .text' ) } ;
157156 margin-top: 10px;
158157 margin-right: 1.5em;
159158 width: 30px;
160159 height: 30px;
161160 transform: rotateX(180deg);
162- fill: ${ theme ( 'u_panel .text' ) } ;
161+ fill: ${ theme ( 'shell .text' ) } ;
163162`
164163
165164export const SubInfoWraper = styled . div `
@@ -168,12 +167,12 @@ export const SubInfoWraper = styled.div`
168167`
169168
170169export const RepoLang = styled . div `
171- color: ${ theme ( 'u_panel .text' ) } ;
170+ color: ${ theme ( 'shell .text' ) } ;
172171 font-style: italic;
173172`
174173
175174export const RepoStar = styled . div `
176- color: ${ theme ( 'u_panel .text' ) } ;
175+ color: ${ theme ( 'shell .text' ) } ;
177176 font-style: italic;
178177 margin-right: 10px;
179178`
@@ -204,7 +203,7 @@ export const PrefixSearchIcon = styled(ReactSVG)`
204203 width: 30px;
205204 height: 30px;
206205 margin-top: 20px;
207- fill: ${ theme ( 'u_panel .search_icon' ) } ;
206+ fill: ${ theme ( 'shell .search_icon' ) } ;
208207`
209208
210209export const PrefixMagicIcon = styled ( ReactSVG ) `
0 commit comments