Use firebug devtools theme by default

It better fits the aestethic here
This commit is contained in:
K4sum1 2024-06-24 14:26:45 -07:00
commit 5a84cf5aab
2 changed files with 3 additions and 3 deletions

View file

@ -307,11 +307,11 @@ DevTools.prototype = {
if (!Services.startup.shuttingDown &&
!isCoreTheme &&
theme.id == currTheme) {
Services.prefs.setCharPref("devtools.theme", "light");
Services.prefs.setCharPref("devtools.theme", "firebug");
let data = {
pref: "devtools.theme",
newValue: "light",
newValue: "firebug",
oldValue: currTheme
};

View file

@ -217,7 +217,7 @@ pref("devtools.dom.enabled", false);
pref("devtools.webaudioeditor.inspectorWidth", 300);
// Default theme ("dark" or "light")
sticky_pref("devtools.theme", "light");
sticky_pref("devtools.theme", "firebug");
// Web console filters
pref("devtools.webconsole.filter.error", true);