Skip to content

Commit

Permalink
fix: improve text visibility in light mode
Browse files Browse the repository at this point in the history
  • Loading branch information
fifteen42 committed Jan 23, 2025
1 parent 2c0a692 commit ab249d0
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 3 additions & 1 deletion packages/app/src/components/dialogs/loader/LoadingDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,9 @@ export function LoadingDialog({ className = '' }: { className?: string }) {
}
)}
>
<div className={cn(`text-lg`, className)}>{currentMessage}</div>
<div className={cn(`text-lg text-neutral-200`, className)}>
{currentMessage}
</div>
<div className="flex w-full flex-col items-center justify-center p-8">
<Progress value={progress} className="w-full" />
</div>
Expand Down
8 changes: 6 additions & 2 deletions packages/app/src/components/settings/assistant.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,12 @@ export function SettingsSectionAssistant() {
return (
<div className="flex flex-col justify-between space-y-6">
<FormSection label="AI Assistant">
<p>No settings for the AI assistant yet.</p>
<p>(in the future we might add a system prompt here)</p>
<p className="text-neutral-200">
No settings for the AI assistant yet.
</p>
<p className="text-neutral-200">
(in the future we might add a system prompt here)
</p>
</FormSection>
</div>
)
Expand Down

0 comments on commit ab249d0

Please sign in to comment.