Skip to content

Commit 2a24de2

Browse files
committed
style: fix active tab background color in faq.tsx
1 parent 166f0b0 commit 2a24de2

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

pages/help/faq.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ const faqs: FAQItem[] = [
101101
{
102102
question: 'What’s the Difference Between Open Source and Free Software?',
103103
answer:
104-
'While often used interchangeably, "Free Software" emphasizes user freedom (as defined by the Free Software Foundation), while "Open Source" focuses on source code availability and collaborative development.',
104+
'While often used interchangeably, "Free Software" emphasizes user freedom (as defined by the Free Software Foundation), while "Open Source" focuses on source code availability and collaborative development.',
105105
category: 'Legal'
106106
}
107107
]
@@ -209,7 +209,7 @@ export default function FAQ() {
209209
onClick={() => setActiveCategory(category)}
210210
className={`rounded-full px-6 py-2 text-sm font-medium transition-all duration-200 ${
211211
activeCategory === category
212-
? 'bg-modern-purple text-white'
212+
? 'bg-modern-blue text-white'
213213
: 'bg-gray-100 text-gray-600 hover:bg-gray-200'
214214
}`}
215215
>

tailwind.config.js

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,7 @@ module.exports = {
2323
colors: {
2424
modern: {
2525
blue: 'rgba(2,104,225,0.88)',
26+
purple: '#844FBA',
2627
darkBlue: '#0F1F3A',
2728
navy: '#000C2D',
2829
lightBlue: '#6793E6',

0 commit comments

Comments
 (0)