We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fad4574 commit 81ed112Copy full SHA for 81ed112
site/src/theme/index.ts
@@ -1,8 +1,8 @@
1
-import { type Theme as MuiTheme } from "@mui/material/styles";
+import type { Theme as MuiTheme } from "@mui/material/styles";
2
import dark from "./dark";
3
import darkBlue from "./darkBlue";
4
-import { type NewTheme } from "./experimental";
5
-import { Colors } from "./colors";
+import type { NewTheme } from "./experimental";
+import type { Colors } from "./colors";
6
7
export interface Theme extends MuiTheme {
8
colors: Colors;
@@ -14,7 +14,7 @@ export const DEFAULT_THEME = "auto";
14
const theme = {
15
dark,
16
darkBlue,
17
- light: darkBlue,
+ light: dark,
18
} satisfies Record<string, Theme>;
19
20
export default theme;
0 commit comments