Skip to content

Commit

Permalink
Merge pull request Hiteshydv001#24 from workdotnisha/text-color
Browse files Browse the repository at this point in the history
Changes text color for dark mode
  • Loading branch information
Hiteshydv001 authored Feb 25, 2025
2 parents d827126 + 3e4059e commit 6524352
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 11 deletions.
2 changes: 1 addition & 1 deletion frontend/src/app/generate_comments/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ export default function GenerateComments() {
<CardContent>
<div className="p-4 rounded-lg bg-muted space-y-2">
{comments.map((comment, index) => (
<p key={index} className="text-gray-700">- {comment}</p>
<p key={index} className="text-gray-400">- {comment}</p>
))}
</div>
</CardContent>
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/app/sentiment_analysis/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -81,11 +81,11 @@ export default function SentimentAnalysis() {
</CardHeader>
<CardContent>
<div className="p-4 rounded-lg bg-muted">
<h2 className="font-semibold text-gray-800">Sentiment:</h2>
<p className="text-gray-700">{sentiment}</p>
<h2 className="font-semibold text-gray-500">Sentiment:</h2>
<p className="text-gray-400">{sentiment}</p>

<h2 className="font-semibold text-gray-800 mt-3">Confidence Score:</h2>
<p className="text-gray-700">{confidence}</p>
<h2 className="font-semibold text-gray-500 mt-3">Confidence Score:</h2>
<p className="text-gray-400">{confidence}</p>
</div>
</CardContent>
</Card>
Expand Down
8 changes: 4 additions & 4 deletions frontend/src/app/summarize/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -92,8 +92,8 @@ export default function Summarize() {
</CardHeader>
<CardContent>
<div className="p-4 rounded-lg bg-muted">
<h2 className="font-semibold text-gray-800">Summary:</h2>
<p className="text-gray-700">{summary}</p>
<h2 className="font-semibold text-gray-500">Summary:</h2>
<p className="text-gray-400">{summary}</p>
</div>
</CardContent>
</Card>
Expand All @@ -107,8 +107,8 @@ export default function Summarize() {
</CardHeader>
<CardContent>
<div className="p-4 rounded-lg bg-muted">
<h2 className="font-semibold text-gray-800">Validation:</h2>
<p className="text-gray-700">{validation}</p>
<h2 className="font-semibold text-gray-500">Validation:</h2>
<p className="text-gray-400">{validation}</p>
</div>
</CardContent>
</Card>
Expand Down
4 changes: 2 additions & 2 deletions frontend/src/app/write_post/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -106,8 +106,8 @@ export default function GeneratePost() {
</CardHeader>
<CardContent>
<div className="p-4 rounded-lg bg-muted">
<h2 className="font-semibold text-gray-800">Generated Post:</h2>
<p className="text-gray-700">{post}</p>
<h2 className="font-semibold text-gray-500">Generated Post:</h2>
<p className="text-gray-400">{post}</p>
</div>
</CardContent>
</Card>
Expand Down

0 comments on commit 6524352

Please sign in to comment.