diff --git a/www/common/sframe-common-codemirror.js b/www/common/sframe-common-codemirror.js index 98a260c23..02370bc47 100644 --- a/www/common/sframe-common-codemirror.js +++ b/www/common/sframe-common-codemirror.js @@ -381,7 +381,7 @@ define([ /* Remember the user's last choice of theme using localStorage */ var isDark = window.CryptPad_theme === "dark"; var themeKey = ['codemirror', isDark ? 'themedark' : 'theme']; - var defaultTheme = isDark ? 'ansuz' : 'default'; + var defaultTheme = isDark ? 'dracula' : 'default'; var todo = function (err, lastTheme) { lastTheme = lastTheme || defaultTheme;