Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: improve text visibility in light mode #127

Merged
merged 1 commit into from
Feb 2, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
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: 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
Loading