File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
site/src/pages/TerminalPage Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -43,7 +43,10 @@ export const Language = {
43
43
} ;
44
44
45
45
const TerminalPage : FC = ( ) => {
46
- const theme = useTheme ( ) ;
46
+ // 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 ;
47
50
const navigate = useNavigate ( ) ;
48
51
const { proxy, proxyLatencies } = useProxy ( ) ;
49
52
const params = useParams ( ) as { username : string ; workspace : string } ;
@@ -296,7 +299,7 @@ const TerminalPage: FC = () => {
296
299
] ) ;
297
300
298
301
return (
299
- < ThemeOverride theme = { themes . dark } >
302
+ < ThemeOverride theme = { theme } >
300
303
< Helmet >
301
304
< title >
302
305
{ workspace . data
You can’t perform that action at this time.
0 commit comments