From baf50e53eb8f00c60466d5fe580807d5e67358b6 Mon Sep 17 00:00:00 2001 From: Tyler <26290074+thegitduck@users.noreply.github.com> Date: Sun, 22 Dec 2024 16:18:06 -0800 Subject: [PATCH] fix(theme): default to dark and disable system default there is only dark --- 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}