diff --git a/devtools/client/framework/devtools.js b/devtools/client/framework/devtools.js index 388e00e4dd..976a4b56db 100644 --- a/devtools/client/framework/devtools.js +++ b/devtools/client/framework/devtools.js @@ -307,11 +307,11 @@ DevTools.prototype = { if (!Services.startup.shuttingDown && !isCoreTheme && theme.id == currTheme) { - Services.prefs.setCharPref("devtools.theme", "firebug"); + Services.prefs.setCharPref("devtools.theme", "light"); let data = { pref: "devtools.theme", - newValue: "firebug", + newValue: "light", oldValue: currTheme }; diff --git a/devtools/client/preferences/devtools.js b/devtools/client/preferences/devtools.js index 0d176c2786..cf8de311b9 100644 --- a/devtools/client/preferences/devtools.js +++ b/devtools/client/preferences/devtools.js @@ -217,7 +217,7 @@ pref("devtools.dom.enabled", false); pref("devtools.webaudioeditor.inspectorWidth", 300); // Default theme ("dark" or "light") -sticky_pref("devtools.theme", "firebug"); +sticky_pref("devtools.theme", "light"); // Web console filters pref("devtools.webconsole.filter.error", true);