@@ -123,7 +123,7 @@ export function ClientSettings({
123123 < div className = "space-y-6" >
124124 { /* User-Agent Selection */ }
125125 < div className = "space-y-3" >
126- < div className = "flex items-center gap-2 text-xs text-ctp-subtext0 " >
126+ < div className = "flex items-center gap-2 text-xs text-ctp-text " >
127127 < Icons . Globe size = { 12 } />
128128 < span > User-Agent</ span >
129129 </ div >
@@ -144,7 +144,7 @@ export function ClientSettings({
144144
145145 { /* Custom Input */ }
146146 < div className = "space-y-1" >
147- < label className = "text-xs text-ctp-overlay0 " > Custom User-Agent:</ label >
147+ < label className = "text-xs text-ctp-text " > Custom User-Agent:</ label >
148148 < input
149149 type = "text"
150150 value = { isCustom ? customAgent : "" }
@@ -156,14 +156,14 @@ export function ClientSettings({
156156
157157 { /* Current Value Preview */ }
158158 < div className = "p-3 bg-ctp-surface0/50 rounded-md border border-ctp-surface0" >
159- < div className = "text-xs text-ctp-overlay0 mb-1" > Will be sent as:</ div >
159+ < div className = "text-xs text-ctp-text mb-1" > Will be sent as:</ div >
160160 < code className = "text-xs text-ctp-green break-all" > { getCurrentUserAgent ( ) } </ code >
161161 </ div >
162162 </ div >
163163
164164 { /* Client Info */ }
165165 < div className = "space-y-3" >
166- < div className = "flex items-center gap-2 text-xs text-ctp-subtext0 " >
166+ < div className = "flex items-center gap-2 text-xs text-ctp-text " >
167167 < Icons . Settings size = { 12 } />
168168 < span > Client Information</ span >
169169 </ div >
@@ -172,15 +172,15 @@ export function ClientSettings({
172172 { clientInfo && (
173173 < >
174174 < div className = "flex items-center justify-between p-2 bg-ctp-surface0/30 rounded-md" >
175- < span className = "text-xs text-ctp-subtext0 " > Platform</ span >
175+ < span className = "text-xs text-ctp-text " > Platform</ span >
176176 < span className = "text-xs text-ctp-text" > { clientInfo . platform } </ span >
177177 </ div >
178178 < div className = "flex items-center justify-between p-2 bg-ctp-surface0/30 rounded-md" >
179- < span className = "text-xs text-ctp-subtext0 " > Language</ span >
179+ < span className = "text-xs text-ctp-text " > Language</ span >
180180 < span className = "text-xs text-ctp-text" > { clientInfo . language } </ span >
181181 </ div >
182182 < div className = "flex items-center justify-between p-2 bg-ctp-surface0/30 rounded-md" >
183- < span className = "text-xs text-ctp-subtext0 " > Screen Size</ span >
183+ < span className = "text-xs text-ctp-text " > Screen Size</ span >
184184 < span className = "text-xs text-ctp-text" > { clientInfo . screenSize } </ span >
185185 </ div >
186186 </ >
@@ -190,7 +190,7 @@ export function ClientSettings({
190190
191191 { /* Proxy Settings */ }
192192 < div className = "space-y-3" >
193- < div className = "flex items-center gap-2 text-xs text-ctp-subtext0 " >
193+ < div className = "flex items-center gap-2 text-xs text-ctp-text " >
194194 < Icons . Globe size = { 12 } />
195195 < span > Proxy</ span >
196196 </ div >
@@ -218,7 +218,7 @@ export function ClientSettings({
218218
219219 { /* SSL Settings */ }
220220 < div className = "space-y-3" >
221- < div className = "flex items-center gap-2 text-xs text-ctp-subtext0 " >
221+ < div className = "flex items-center gap-2 text-xs text-ctp-text " >
222222 < Icons . Lock size = { 12 } />
223223 < span > SSL / TLS</ span >
224224 </ div >
@@ -245,7 +245,7 @@ export function ClientSettings({
245245 ) }
246246
247247 < div className = "space-y-2" >
248- < label className = "text-xs text-ctp-overlay0 " > Client Certificate (optional):</ label >
248+ < label className = "text-xs text-ctp-text " > Client Certificate (optional):</ label >
249249 < input
250250 type = "text"
251251 value = { ssl . clientCertPath }
@@ -265,7 +265,7 @@ export function ClientSettings({
265265
266266 { /* Redirect Settings */ }
267267 < div className = "space-y-3" >
268- < div className = "flex items-center gap-2 text-xs text-ctp-subtext0 " >
268+ < div className = "flex items-center gap-2 text-xs text-ctp-text " >
269269 < Icons . ArrowRight size = { 12 } />
270270 < span > Redirects</ span >
271271 </ div >
@@ -282,7 +282,7 @@ export function ClientSettings({
282282
283283 { redirects . follow && (
284284 < div className = "flex items-center gap-2" >
285- < label className = "text-xs text-ctp-overlay0 " > Max Redirects:</ label >
285+ < label className = "text-xs text-ctp-text " > Max Redirects:</ label >
286286 < input
287287 type = "number"
288288 value = { redirects . maxRedirects }
0 commit comments