How can i increase the font-size in the chrome console?
It seems Paul Irish did it:
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
Right click on the console window title bar, select Defaults, switch to tab Font and choose your desired font and size.
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.
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%).
If you just need a quick, temporary size bump you can press Ctrl + / - to zoom and Ctrl 0 to reset.
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; }
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With