Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions site/src/theme/index.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import { type Theme as MuiTheme } from "@mui/material/styles";
import type { Theme as MuiTheme } from "@mui/material/styles";
import dark from "./dark";
import darkBlue from "./darkBlue";
import { type NewTheme } from "./experimental";
import { Colors } from "./colors";
import type { NewTheme } from "./experimental";
import type { Colors } from "./colors";

export interface Theme extends MuiTheme {
colors: Colors;
Expand All @@ -14,7 +14,7 @@ export const DEFAULT_THEME = "auto";
const theme = {
dark,
darkBlue,
light: darkBlue,
light: dark,
} satisfies Record<string, Theme>;

export default theme;