diff --git a/site/src/theme/index.ts b/site/src/theme/index.ts index ef00ecf15c3ab..7e23c0345c89d 100644 --- a/site/src/theme/index.ts +++ b/site/src/theme/index.ts @@ -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; @@ -14,7 +14,7 @@ export const DEFAULT_THEME = "auto"; const theme = { dark, darkBlue, - light: darkBlue, + light: dark, } satisfies Record; export default theme;