We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 73c5993 commit 1d14d4eCopy full SHA for 1d14d4e
site/src/pages/TerminalPage/TerminalPage.tsx
@@ -43,7 +43,10 @@ export const Language = {
43
};
44
45
const TerminalPage: FC = () => {
46
- const theme = useTheme();
+ // Maybe one day we'll support a light themed terminal, but terminal coloring
47
+ // is notably a pain because of assumptions certain programs might make about your
48
+ // background color.
49
+ const theme = themes.dark;
50
const navigate = useNavigate();
51
const { proxy, proxyLatencies } = useProxy();
52
const params = useParams() as { username: string; workspace: string };
@@ -296,7 +299,7 @@ const TerminalPage: FC = () => {
296
299
]);
297
300
298
301
return (
- <ThemeOverride theme={themes.dark}>
302
+ <ThemeOverride theme={theme}>
303
<Helmet>
304
<title>
305
{workspace.data
0 commit comments