How to increase code fonts in Firefox developer tools? I know that there is a zoom function but I want to set the font size only for the code.
Open Firefox and type about:support
. In Application Basics section chose Profile Folder - Open Folder. It will fire your file manager. If there is no chrome
folder than create it. After that go to this chrome
folder and create an userChrome.css
file, open it in a text editor and add :
.devtools-monospace {font-size: 12px!important;}
Save. Be sure to restart Firefox.
UPDATE: One thing bothered me - while typing in the devtools console the text actually a bit smaller than on output (after pressing Enter). In order to make it the same we need to change font-size for its corresponding css class too. I don't know its class name yet so I just set
* { font-size: 12px !important; }
globally and it works.