@@ -224,16 +224,16 @@ const BenchmarkDetail = ({
224224 < div className = "grid w-2/5" >
225225 < div className = "pl-8 pr-8 border-4 border-dashed border-gray-200 rounded-lg h-96 p-4" >
226226 < div className = "flex justify-between" >
227- < h1 className = "text-2xl pb-3 dark:text-white " > Subject</ h1 >
227+ < h1 className = "text-2xl pb-3 dark:text-gray-100 " > Subject</ h1 >
228228 < div className = "" >
229229 < Listbox value = { selected } onChange = { setSelected } >
230230 { ( { open } ) => (
231231 < >
232- < Listbox . Label className = "w-36 block dark:text-white text-sm font-medium text-gray-700" >
232+ < Listbox . Label className = "w-36 block dark:text-gray-100 text-sm font-medium text-gray-700" >
233233 Languages
234234 </ Listbox . Label >
235235 < div className = "mt-1 relative" >
236- < Listbox . Button className = "dark:text-white dark:bg-gray-800 relative w-full bg-white border border-gray-300 rounded-md shadow-sm pl-3 pr-10 py-2 text-left cursor-default focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm" >
236+ < Listbox . Button className = "dark:text-gray-100 dark:bg-gray-800 relative w-full bg-white border border-gray-300 rounded-md shadow-sm pl-3 pr-10 py-2 text-left cursor-default focus:outline-none focus:ring-1 focus:ring-indigo-500 focus:border-indigo-500 sm:text-sm" >
237237 < span className = "flex items-center" >
238238 < img
239239 src = { selected . avatar }
@@ -261,7 +261,7 @@ const BenchmarkDetail = ({
261261 >
262262 < Listbox . Options
263263 static
264- className = "dark:text-white dark:bg-gray-800 absolute z-10 mt-1 w-full bg-white shadow-lg max-h-96 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm"
264+ className = "dark:text-gray-100 dark:bg-gray-800 absolute z-10 mt-1 w-full bg-white shadow-lg max-h-96 rounded-md py-1 text-base ring-1 ring-black ring-opacity-5 overflow-auto focus:outline-none sm:text-sm"
265265 >
266266 { languages . map ( ( language ) => (
267267 < Listbox . Option
@@ -270,7 +270,7 @@ const BenchmarkDetail = ({
270270 classNames (
271271 active
272272 ? 'text-white bg-indigo-600'
273- : 'text-gray-900 dark:text-white ' ,
273+ : 'text-gray-900 dark:text-gray-100 ' ,
274274 'cursor-default select-none relative py-2 pl-3 pr-9' ,
275275 )
276276 }
@@ -301,7 +301,7 @@ const BenchmarkDetail = ({
301301 className = { classNames (
302302 active
303303 ? 'text-white'
304- : 'text-indigo-600 dark:text-white ' ,
304+ : 'text-indigo-600 dark:text-gray-100 ' ,
305305 'absolute inset-y-0 right-0 flex items-center pr-4' ,
306306 ) }
307307 >
@@ -323,7 +323,7 @@ const BenchmarkDetail = ({
323323 </ Listbox >
324324 </ div >
325325 </ div >
326- < ReactMarkdown className = "dark:text-white " >
326+ < ReactMarkdown className = "dark:text-gray-100 " >
327327 { benchmarkData ?. subject || '' }
328328 </ ReactMarkdown >
329329 </ div >
0 commit comments