Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/components/faqs/faqs.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,8 +122,8 @@ const FAQs: React.FC = () => {
}
[&_a]:text-indigo-600 [&_a]:hover:text-indigo-800
dark:[&_a]:text-indigo-400 dark:[&_a]:hover:text-indigo-300
[&_strong]:font-semibold [&_strong]:text-gray-800
dark:[&_strong]:text-gray-200`}
[&_strong]:font-semibold [&_strong]:text-gray-500
Copy link

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The new gray-500 color for strong text in light mode may have insufficient contrast against a light background. Consider using a darker color like gray-700 or gray-800 to ensure WCAG accessibility standards are met.

Suggested change
[&_strong]:font-semibold [&_strong]:text-gray-500
[&_strong]:font-semibold [&_strong]:text-gray-800

Copilot uses AI. Check for mistakes.

dark:[&_strong]:text-gray-600`}
Copy link

Copilot AI Aug 21, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The gray-600 color for strong text in dark mode may not provide adequate contrast against a dark background. Consider using a lighter color like gray-300 or gray-200 to ensure proper readability in dark theme.

Suggested change
dark:[&_strong]:text-gray-600`}
dark:[&_strong]:text-gray-300`}

Copilot uses AI. Check for mistakes.

dangerouslySetInnerHTML={{ __html: faq.answer }}
/>
</motion.div>
Expand Down
Loading