这是indexloc提供的服务,不要输入任何密码
Skip to content

docs: fix text colors in a few spots #10213

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

Merged
merged 1 commit into from
Mar 21, 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
2 changes: 1 addition & 1 deletion docs/site/app/(no-sidebar)/blog/[...slug]/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export default async function Page(props: {
<FaviconHandler />
<div className="my-4">
<Link
className="hover:text-foreground flex flex-row gap-2 text-sm text-gray-500 transition-all dark:text-gray-400"
className="hover:text-foreground flex flex-row gap-2 text-sm text-gray-900 transition-all dark:text-gray-900"
href="/blog"
>
<ArrowLeftIcon width=".75rem" />
Expand Down
2 changes: 1 addition & 1 deletion docs/site/app/(no-sidebar)/blog/not-found.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export default function NotFound(): JSX.Element {
<NotFoundTemplate
content={
<div className="flex flex-col gap-12 mx-auto">
<p className="text-center text-gray-500 dark:text-gray-400">
<p className="text-center text-gray-900 dark:text-gray-900">
The latest updates and releases from the Turborepo team at Vercel.
</p>
{posts.map((post) => {
Expand Down
2 changes: 1 addition & 1 deletion docs/site/app/(no-sidebar)/blog/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ function Page(): JSX.Element {
<h1 className="mb-6 mt-2 text-center text-4xl font-bold leading-tight tracking-tight text-slate-900 dark:text-slate-100 lg:text-5xl">
Blog
</h1>
<p className="text-center text-gray-500 dark:text-gray-400">
<p className="text-center text-gray-900 dark:text-gray-900">
The latest updates and releases from the Turborepo team at Vercel.
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/site/app/(no-sidebar)/showcase/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ function Showcase(): JSX.Element {
<h1 className="mt-2 text-3xl font-extrabold leading-8 tracking-tight text-gray-900 dark:text-white sm:text-4xl sm:leading-10 md:text-5xl">
Showcase
</h1>
<p className="mt-4 max-w-3xl font-mono text-xl leading-7 text-gray-500 dark:text-gray-400 lg:mx-auto">
<p className="mt-4 max-w-3xl font-mono text-xl leading-7 text-gray-900 dark:text-gray-900 lg:mx-auto">
Who is using Turborepo?
</p>
</div>
Expand Down
2 changes: 1 addition & 1 deletion docs/site/components/blog/date.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ export function Date({
update?: string;
}): JSX.Element {
return (
<div className="mt-2 text-center text-sm text-gray-500 dark:text-gray-400">
<div className="mt-2 text-center text-sm text-gray-900 dark:text-gray-900">
{children}

{update !== undefined && (
Expand Down
2 changes: 1 addition & 1 deletion docs/site/turbo.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
]
},
"dev": {
"dependsOn": ["schema", "generate-openapi"],
"dependsOn": ["schema", "collect-examples-data", "generate-openapi"],
"persistent": true,
"cache": false
},
Expand Down
Loading