Skip to content

Commit 9ef5482

Browse files
Change all grays to neutral
1 parent 898eb98 commit 9ef5482

File tree

5 files changed

+10
-10
lines changed

5 files changed

+10
-10
lines changed

resources/js/layouts/auth/auth-split-layout.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ export default function AuthSplitLayout({ children, title, description }: AuthLa
2222
<div className="relative z-20 mt-auto">
2323
<blockquote className="space-y-2">
2424
<p className="text-lg">&ldquo;{quote.message}&rdquo;</p>
25-
<footer className="text-sm text-gray-300">{quote.author}</footer>
25+
<footer className="text-sm text-neutral-300">{quote.author}</footer>
2626
</blockquote>
2727
</div>
2828
)}

resources/js/pages/dashboard.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,17 +17,17 @@ export default function Dashboard() {
1717
<div className="flex h-full flex-1 flex-col gap-4 rounded-xl p-4">
1818
<div className="grid auto-rows-min gap-4 md:grid-cols-3">
1919
<div className="border-sidebar-border/70 dark:border-sidebar-border relative aspect-video overflow-hidden rounded-xl border">
20-
<PlaceholderPattern className="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
20+
<PlaceholderPattern className="absolute inset-0 size-full stroke-neutral-900/20 dark:stroke-neutral-100/20" />
2121
</div>
2222
<div className="border-sidebar-border/70 dark:border-sidebar-border relative aspect-video overflow-hidden rounded-xl border">
23-
<PlaceholderPattern className="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
23+
<PlaceholderPattern className="absolute inset-0 size-full stroke-neutral-900/20 dark:stroke-neutral-100/20" />
2424
</div>
2525
<div className="border-sidebar-border/70 dark:border-sidebar-border relative aspect-video overflow-hidden rounded-xl border">
26-
<PlaceholderPattern className="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
26+
<PlaceholderPattern className="absolute inset-0 size-full stroke-neutral-900/20 dark:stroke-neutral-100/20" />
2727
</div>
2828
</div>
2929
<div className="border-sidebar-border/70 dark:border-sidebar-border relative min-h-[100vh] flex-1 rounded-xl border md:min-h-min">
30-
<PlaceholderPattern className="absolute inset-0 size-full stroke-gray-900/20 dark:stroke-neutral-100/20" />
30+
<PlaceholderPattern className="absolute inset-0 size-full stroke-neutral-900/20 dark:stroke-neutral-100/20" />
3131
</div>
3232
</div>
3333
</AppLayout>

resources/js/pages/settings/password.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -117,7 +117,7 @@ export default function Password() {
117117
leave="transition ease-in-out"
118118
leaveTo="opacity-0"
119119
>
120-
<p className="text-sm text-gray-600">Saved</p>
120+
<p className="text-sm text-neutral-600">Saved</p>
121121
</Transition>
122122
</div>
123123
</form>

resources/js/pages/settings/profile.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail:
7777

7878
{mustVerifyEmail && auth.user.email_verified_at === null && (
7979
<div>
80-
<p className="mt-2 text-sm text-gray-800">
80+
<p className="mt-2 text-sm text-neutral-800">
8181
Your email address is unverified.
8282
<Link
8383
href={route('verification.send')}
8484
method="post"
8585
as="button"
86-
className="rounded-md text-sm text-gray-600 underline hover:text-gray-900 focus:ring-2 focus:ring-offset-2 focus:outline-hidden"
86+
className="rounded-md text-sm text-neutral-600 underline hover:text-neutral-900 focus:ring-2 focus:ring-offset-2 focus:outline-hidden"
8787
>
8888
Click here to re-send the verification email.
8989
</Link>
@@ -107,7 +107,7 @@ export default function Profile({ mustVerifyEmail, status }: { mustVerifyEmail:
107107
leave="transition ease-in-out"
108108
leaveTo="opacity-0"
109109
>
110-
<p className="text-sm text-gray-600">Saved</p>
110+
<p className="text-sm text-neutral-600">Saved</p>
111111
</Transition>
112112
</div>
113113
</form>

resources/js/pages/welcome.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export default function Welcome() {
1717
<link rel="preconnect" href="https://rsms.me/" />
1818
<link rel="stylesheet" href="https://rsms.me/inter/inter.css" />
1919
</Head>
20-
<div className="bg-gray-50 text-black/50 antialiased dark:bg-black dark:text-white/50">
20+
<div className="bg-neutral-50 text-black/50 antialiased dark:bg-black dark:text-white/50">
2121
<img id="background" className="absolute top-0 -left-20 max-w-[877px]" src="https://laravel.com/assets/img/welcome/background.svg" />
2222
<div className="relative flex min-h-screen flex-col items-center justify-center selection:bg-[#FF2D20] selection:text-white">
2323
<div className="relative w-full max-w-2xl px-6 lg:max-w-7xl">

0 commit comments

Comments
 (0)