Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Increase font size chrome console

How can i increase the font-size in the chrome console?

It seems Paul Irish did it:

enter image description here

http://www.youtube.com/watch?v=4mf_yNLlgic

UPDATE

Here are some tips on how customize the theme: https://plus.google.com/115133653231679625609/posts/UZF34wPJXsL

enter image description here

like image 511
amosrivera Avatar asked Sep 30 '11 16:09

amosrivera


People also ask

How do I increase font size in console?

Right click on the console window title bar, select Defaults, switch to tab Font and choose your desired font and size.

How do I zoom out in Chrome console?

By default, Chrome sets the zoom level to 100%. To manually adjust the settings, use the Ctrl key and “+” or “-” combos to increase or decrease the page magnification. If you are using a mouse, you can hold down the keyboard Ctrl key and use the mouse wheel to zoom in or out.

How do I increase font size in dev tools?

Hello, You can use the "Ctrl +" and "Ctrl -" shortcuts to change the DevTools zoom, just like in any page (or "Ctrl 0" to reset it to 100%).


2 Answers

If you just need a quick, temporary size bump you can press Ctrl + / - to zoom and Ctrl 0 to reset.

like image 66
Ronny Avatar answered Sep 20 '22 16:09

Ronny


Here's a pretty recent blog post on the subject.

Basically, override Default/User StyleSheets/Custom.css in your user directory with something like:

/* Keep .platform-mac to make the rule more specific than the general one above. */ body.platform-mac.platform-mac-snowleopard .monospace, body.platform-mac.platform-mac-snowleopard .source-code {     font-size: 11px !important;     font-family: Menlo, monospace; }  body.platform-windows .monospace, body.platform-windows .source-code {     font-size: 12px !important;     font-family: Consolas, Lucida Console, monospace; }  body.platform-linux .monospace, body.platform-linux .source-code {     font-size: 11px !important;     font-family: dejavu sans mono, monospace; } 
like image 32
Boris Smus Avatar answered Sep 16 '22 16:09

Boris Smus