From c78e82575085de5a9c2dacbf703a361294c907f6 Mon Sep 17 00:00:00 2001 From: v0agent Date: Fri, 5 Jun 2026 10:00:54 +0000 Subject: [PATCH 1/2] feat: enforce dark theme in GeistdocsProvider Updated CSS for dark mode background to black; set dark theme as forced and default in provider. Co-authored-by: Matt Collier <2234289+mattc0llier@users.noreply.github.com> --- app/styles/geistdocs.css | 2 +- components/geistdocs/provider.tsx | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/app/styles/geistdocs.css b/app/styles/geistdocs.css index 15d9f81..5e79ade 100644 --- a/app/styles/geistdocs.css +++ b/app/styles/geistdocs.css @@ -81,7 +81,7 @@ } .dark { - --background: oklch(0.145 0 0); + --background: oklch(0 0 0); --foreground: oklch(0.985 0 0); --card: oklch(0.205 0 0); --card-foreground: oklch(0.985 0 0); diff --git a/components/geistdocs/provider.tsx b/components/geistdocs/provider.tsx index 2de3b50..35f6e1f 100644 --- a/components/geistdocs/provider.tsx +++ b/components/geistdocs/provider.tsx @@ -50,6 +50,11 @@ export const GeistdocsProvider = ({ SearchDialog: SearchDialogComponent, ...search, }} + theme={{ + forcedTheme: "dark", + defaultTheme: "dark", + enableSystem: false, + }} {...props} /> From 2b49f4ae33039922711dd13116780e5e6837ad06 Mon Sep 17 00:00:00 2001 From: v0agent Date: Fri, 5 Jun 2026 10:14:06 +0000 Subject: [PATCH 2/2] feat: rename document title from Overview to Intro Updated document title for better clarity and alignment with new content focus Co-authored-by: Matt Collier <2234289+mattc0llier@users.noreply.github.com> --- content/docs/index.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/index.mdx b/content/docs/index.mdx index cae0628..f18ba8e 100644 --- a/content/docs/index.mdx +++ b/content/docs/index.mdx @@ -1,5 +1,5 @@ --- -title: Overview +title: Intro description: components.build is an open-source standard for building modern, composable and accessible UI components. type: overview summary: An open standard co-authored by Hayden Bleasel and shadcn for building composable, accessible UI components for the modern web.