Skip to content

Commit db374a4

Browse files
committed
fix: colors
1 parent 37eaa7f commit db374a4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
}
1616

1717
body {
18-
color: var(--foreground);
18+
color: #562AD0;
1919
background: var(--background);
2020
font-family: Arial, Helvetica, sans-serif;
2121
}

src/app/topics/[id]/questions/[difficulty]/QuestionsPage.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ export default function QuestionsPage(props: { id: string, difficulty: Difficult
3232
<span className={`absolute top-4 sm:top-8 right-4 sm:right-8 text-3xl sm:text-4xl font-staatliches opacity-90 sm:opacity-100 ${textColorClass}`}>
3333
{difficultyNumbers[difficulty]}
3434
</span>
35-
<h1 className="text-2xl sm:text-4xl font-staatliches mb-8 sm:mb-12 max-w-[80%] leading-tight whitespace-pre-line">
35+
<h1 className={`text-2xl sm:text-4xl font-staatliches mb-8 sm:mb-12 max-w-[80%] leading-tight whitespace-pre-line ${textColorClass}`}>
3636
{topic.title}
3737
</h1>
3838
<div className="mb-8 sm:mb-12 space-y-4 font-inter text-gray-700">

0 commit comments

Comments
 (0)