diff --git a/src/components/shared/webide/Editor.js b/src/components/shared/webide/Editor.js index 67a08411c..0726ed944 100644 --- a/src/components/shared/webide/Editor.js +++ b/src/components/shared/webide/Editor.js @@ -31,7 +31,7 @@ function Editor({ active, file, onChange, theme }) { }, [file]); useEffect(() => { - setEditorTheme(theme === 'light' ? 'light' : 'vs-dark'); + setEditorTheme(theme === 'light' || theme === 'akamai' ? 'light' : 'vs-dark'); }, [theme]);