Force dark dashboard theme
Some checks failed
ci / openapi (push) Failing after 6s
ci / agent (push) Failing after 6s
ci / server (push) Failing after 6s
ci / stack-smoke (push) Has been skipped
ci / web (push) Failing after 6s

This commit is contained in:
Stanislav Rossovskii
2026-06-23 18:07:39 +04:00
parent 6dbae53725
commit 28db03b631
6 changed files with 8 additions and 8 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 123 KiB

After

Width:  |  Height:  |  Size: 126 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 89 KiB

After

Width:  |  Height:  |  Size: 94 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 232 KiB

After

Width:  |  Height:  |  Size: 82 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 140 KiB

After

Width:  |  Height:  |  Size: 141 KiB

View File

@@ -1,8 +1,9 @@
@import "tailwindcss";
:root {
--background: #ffffff;
--foreground: #171717;
--background: #0a0a0a;
--foreground: #ededed;
color-scheme: dark;
}
@theme inline {
@@ -12,11 +13,10 @@
--font-mono: var(--font-geist-mono);
}
@media (prefers-color-scheme: dark) {
:root {
:root[data-theme="dark"] {
--background: #0a0a0a;
--foreground: #ededed;
}
color-scheme: dark;
}
body {

View File

@@ -30,7 +30,7 @@ export default async function RootLayout({ children }: { children: ReactNode })
const summary = hasAppAccess ? await safeLoadSystemSummary() : null;
return (
<html lang="en" className="h-full antialiased">
<html lang="en" data-theme="dark" className="h-full antialiased">
<body className="min-h-full flex flex-col bg-neutral-950 text-neutral-100 font-mono">
<TimeZoneProvider
configuredTimeZone={configuredTimeZone}