From e1f014e5d0253fc9e7fc245f3929f2ac2bf59497 Mon Sep 17 00:00:00 2001 From: Tyler <26290074+tylersayshi@users.noreply.github.com> Date: Sun, 22 Dec 2024 16:19:14 -0800 Subject: [PATCH] docs: default to dark and disable system default (#1235) --- ark/docs/app/layout.tsx | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ark/docs/app/layout.tsx b/ark/docs/app/layout.tsx index 951cc3918d..35f2cfa927 100644 --- a/ark/docs/app/layout.tsx +++ b/ark/docs/app/layout.tsx @@ -18,6 +18,10 @@ export default ({ children }: { children: ReactNode }) => ( type: "static" } }} + theme={{ + enableSystem: false, + defaultTheme: "dark" + }} > {children}