Skip to content

Commit 7cc261f

Browse files
authored
x (#132)
1 parent e458242 commit 7cc261f

File tree

35 files changed

+449
-519
lines changed

35 files changed

+449
-519
lines changed

apps/dashboard/app/(main)/billing/components/cancel-subscription-dialog.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ export function CancelSubscriptionDialog({
5454
>
5555
<div className="mb-2 flex items-center gap-3">
5656
<div className="flex h-8 w-8 items-center justify-center rounded-full bg-blue-100">
57-
<CalendarIcon className="text-blue-600" size={16} />
57+
<CalendarIcon className="text-foreground" size={16} />
5858
</div>
5959
<div>
6060
<div className="font-medium">Cancel at period end</div>

apps/dashboard/app/(main)/invitations/[id]/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ export default function AcceptInvitationPage() {
341341
<div className="relative mb-8">
342342
<div className="rounded-full border border-blue-500/20 bg-blue-500/10 p-8">
343343
<CheckCircle
344-
className="h-16 w-16 text-blue-600"
344+
className="h-16 w-16 text-foreground"
345345
weight="duotone"
346346
/>
347347
</div>

apps/dashboard/app/(main)/observability/database/[id]/performance/_components/query-detail-sheet.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ export const QueryDetailSheet = ({
8383
if (time < 50) {
8484
return {
8585
level: 'Good',
86-
color: 'bg-blue-100 text-blue-800 border-blue-200',
86+
color: 'bg-muted text-muted-foreground border-border',
8787
};
8888
}
8989
if (time < 100) {
@@ -325,10 +325,10 @@ Resource Usage:
325325
<div className="flex items-start gap-3">
326326
<div className="mt-0.5 h-2 w-2 flex-shrink-0 rounded-full bg-blue-500" />
327327
<div className="min-w-0">
328-
<p className="font-medium text-blue-900 dark:text-blue-100">
328+
<p className="font-medium text-foreground">
329329
Low Cache Hit Rate
330330
</p>
331-
<p className="mt-1 text-blue-800 text-sm dark:text-blue-200">
331+
<p className="mt-1 text-muted-foreground text-sm">
332332
Consider increasing shared_buffers, optimizing data
333333
access patterns, or reviewing query selectivity.
334334
</p>

apps/dashboard/app/(main)/observability/database/[id]/performance/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -392,8 +392,8 @@ export default function PerformancePage({ params }: PerformancePageProps) {
392392
q.query.includes('Query ID:')
393393
) && (
394394
<Alert className="border-blue-200 bg-blue-50 dark:border-blue-800 dark:bg-blue-950/20">
395-
<DatabaseIcon className="h-4 w-4 text-blue-600" />
396-
<AlertDescription className="text-blue-800 dark:text-blue-200">
395+
<DatabaseIcon className="h-4 w-4 text-muted-foreground" />
396+
<AlertDescription className="text-muted-foreground">
397397
<div className="space-y-2">
398398
<div>
399399
<strong>Limited Query Visibility:</strong> Query text is hidden

apps/dashboard/app/(main)/observability/database/[id]/plugins/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,8 +249,8 @@ function ConfigurationRequiredDialog({
249249

250250
<div className="space-y-4">
251251
<Alert className="border-blue-200 bg-blue-50 dark:border-blue-800 dark:bg-blue-950/20">
252-
<WarningIcon className="h-4 w-4 text-blue-600" />
253-
<AlertDescription className="text-blue-800 dark:text-blue-200">
252+
<WarningIcon className="h-4 w-4 text-muted-foreground" />
253+
<AlertDescription className="text-muted-foreground">
254254
<p className="font-medium text-sm">
255255
Server Configuration Required
256256
</p>

apps/dashboard/app/(main)/observability/database/_components/connection-card.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ export function ConnectionCard({
4343
switch (type.toLowerCase()) {
4444
case 'postgres':
4545
case 'postgresql':
46-
return <DatabaseIcon className="text-blue-600" weight="duotone" />;
46+
return <DatabaseIcon className="text-foreground" weight="duotone" />;
4747
case 'mysql':
4848
return <DatabaseIcon className="text-orange-600" weight="duotone" />;
4949
case 'sqlite':

apps/dashboard/app/(main)/revenue/_components/onboarding/steps/overview-step.tsx

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,37 +11,37 @@ export function OverviewStep({ onNext }: OverviewStepProps) {
1111
return (
1212
<div className="space-y-4">
1313
<div className="rounded-lg border border-blue-200 bg-blue-50 p-4 dark:border-blue-800 dark:bg-blue-950/20">
14-
<h3 className="mb-2 font-medium text-blue-900 dark:text-blue-100">
14+
<h3 className="mb-2 font-medium text-foreground">
1515
What you'll get:
1616
</h3>
17-
<ul className="space-y-2 text-blue-800 text-sm dark:text-blue-200">
17+
<ul className="space-y-2 text-muted-foreground text-sm">
1818
<li className="flex items-center gap-2">
1919
<CheckCircleIcon
20-
className="h-4 w-4 text-blue-600 dark:text-blue-400"
20+
className="h-4 w-4 text-foreground"
2121
size={16}
2222
weight="fill"
2323
/>
2424
Real-time payment tracking
2525
</li>
2626
<li className="flex items-center gap-2">
2727
<CheckCircleIcon
28-
className="h-4 w-4 text-blue-600 dark:text-blue-400"
28+
className="h-4 w-4 text-foreground"
2929
size={16}
3030
weight="fill"
3131
/>
3232
Revenue analytics and trends
3333
</li>
3434
<li className="flex items-center gap-2">
3535
<CheckCircleIcon
36-
className="h-4 w-4 text-blue-600 dark:text-blue-400"
36+
className="h-4 w-4 text-foreground"
3737
size={16}
3838
weight="fill"
3939
/>
4040
Refund and chargeback monitoring
4141
</li>
4242
<li className="flex items-center gap-2">
4343
<CheckCircleIcon
44-
className="h-4 w-4 text-blue-600 dark:text-blue-400"
44+
className="h-4 w-4 text-foreground"
4545
size={16}
4646
weight="fill"
4747
/>

apps/dashboard/app/(main)/revenue/_components/onboarding/steps/testing-step.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ export function TestingStep({
4848
</div>
4949

5050
<div className="rounded-lg border border-blue-200 bg-blue-50 p-4 dark:border-blue-800 dark:bg-blue-950/20">
51-
<h4 className="mb-2 font-medium text-blue-900 dark:text-blue-100">
51+
<h4 className="mb-2 font-medium text-foreground">
5252
Integration Status
5353
</h4>
5454
<div className="space-y-2">
5555
<div className="flex items-center gap-2 text-sm">
5656
<div className="h-2 w-2 rounded-full bg-yellow-500" />
5757
<span>Waiting for test webhook...</span>
5858
</div>
59-
<p className="text-blue-800 text-xs dark:text-blue-200">
59+
<p className="text-muted-foreground text-xs">
6060
Create a test payment in Stripe to verify the integration
6161
</p>
6262
</div>

apps/dashboard/app/(main)/settings/_components/email-form.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ export function EmailForm() {
8282
<div className="flex items-center gap-3">
8383
<div className="flex h-10 w-10 items-center justify-center rounded-full border border-blue-500/20 bg-gradient-to-br from-blue-500/20 to-blue-600/5">
8484
<EnvelopeSimpleIcon
85-
className="h-5 w-5 text-blue-600"
85+
className="h-5 w-5 text-foreground"
8686
size={20}
8787
weight="duotone"
8888
/>
@@ -125,7 +125,7 @@ export function EmailForm() {
125125
{/* Security Notice */}
126126
<Alert className="border-blue-200 bg-blue-50/50 dark:border-blue-800 dark:bg-blue-950/20">
127127
<ShieldCheckIcon
128-
className="h-4 w-4 text-blue-600"
128+
className="h-4 w-4 text-muted-foreground"
129129
size={16}
130130
weight="duotone"
131131
/>

apps/dashboard/app/(main)/settings/_components/password-form.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,7 +210,7 @@ export function PasswordForm() {
210210
'text-yellow-600',
211211
passwordStrength.score >= 70 &&
212212
passwordStrength.score < 90 &&
213-
'text-blue-600',
213+
'text-foreground',
214214
passwordStrength.score >= 90 && 'text-green-600'
215215
)}
216216
>

0 commit comments

Comments
 (0)