@@ -311,12 +311,12 @@ const MarkdownRenderer: React.FC<MarkdownRendererProps> = ({
311311
312312 // Component definitions with shared styles
313313 const headingClasses = {
314- h1 : 'text-3xl font-bold my-6 text-gray-900 dark:text-gray-100 group flex items-center border-b border-gray-200 dark:border-gray-700 pb-2' ,
315- h2 : 'text-2xl font-semibold my-5 text-gray-900 dark:text-gray-100 group flex items-center border-b border-gray-200 dark:border-gray-700 pb-1' ,
316- h3 : 'text-xl font-semibold my-4 text-gray-900 dark:text-gray-100 group flex items-center' ,
317- h4 : 'text-lg font-semibold my-3 text-gray-900 dark:text-gray-100 ' ,
318- h5 : 'text-base font-semibold my-3 text-gray-900 dark:text-gray-100 ' ,
319- h6 : 'text-sm font-semibold my-3 text-gray-600 dark:text-gray-300 uppercase tracking-wide' ,
314+ h1 : 'text-3xl font-bold my-6 text-gray-900 group flex items-center border-b border-gray-200 dark:border-gray-700 pb-2' ,
315+ h2 : 'text-2xl font-semibold my-5 text-gray-900 group flex items-center border-b border-gray-200 dark:border-gray-700 pb-1' ,
316+ h3 : 'text-xl font-semibold my-4 text-gray-900 group flex items-center' ,
317+ h4 : 'text-lg font-semibold my-3 text-gray-900' ,
318+ h5 : 'text-base font-semibold my-3 text-gray-900' ,
319+ h6 : 'text-sm font-semibold my-3 text-gray-600 uppercase tracking-wide' ,
320320 } ;
321321
322322 const createHeading =
@@ -346,7 +346,7 @@ const MarkdownRenderer: React.FC<MarkdownRendererProps> = ({
346346 p : ( { children, ...props } ) => (
347347 < p
348348 { ...props }
349- className = "my-4 text-gray-700 dark:text-gray-300 leading-relaxed"
349+ className = "my-4 text-gray-700 leading-relaxed"
350350 >
351351 { children }
352352 </ p >
@@ -533,7 +533,7 @@ const MarkdownRenderer: React.FC<MarkdownRendererProps> = ({
533533 li : ( { children, ...props } ) => (
534534 < li
535535 { ...props }
536- className = "text-gray-700 dark:text-gray-300 leading-relaxed"
536+ className = "text-gray-700 leading-relaxed"
537537 >
538538 { children }
539539 </ li >
@@ -575,13 +575,13 @@ const MarkdownRenderer: React.FC<MarkdownRendererProps> = ({
575575 strong : ( { children, ...props } ) => (
576576 < strong
577577 { ...props }
578- className = "font-semibold text-gray-900 dark:text-gray-100 "
578+ className = "font-semibold text-gray-900"
579579 >
580580 { children }
581581 </ strong >
582582 ) ,
583583 em : ( { children, ...props } ) => (
584- < em { ...props } className = "italic text-gray-700 dark:text-gray-300 " >
584+ < em { ...props } className = "italic text-gray-700" >
585585 { children }
586586 </ em >
587587 ) ,
0 commit comments