feat: set default color scheme to dark

This commit is contained in:
bipproduction
2025-10-07 17:33:53 +08:00
parent b368e09c18
commit d8ed247022

View File

@@ -7,7 +7,7 @@ import { MantineProvider } from '@mantine/core';
import AppRoutes from './AppRoutes';
export function App() {
return <MantineProvider>
return <MantineProvider defaultColorScheme='dark'>
<Notifications />
<AppRoutes />
</MantineProvider>;