How to change color schema on Developer Tools, JavaScript Console in Google Chrome ?
Like this:
How to change color schema on Developer Tools, JavaScript Console in Google Chrome ?
Like this:
chrome://flags/#enable-devtools-experiments
, and enable Developer Tools experiments
.Relaunch Now
at the bottom of the page.Settings
, select Experiments
tab, and check Allow custom UI themes
.The dark theme is now natively supported in DevTools: https://developers.google.com/web/updates/2016/02/devtools-digest-devtools-go-dark#a_dark_theme_for_devtools
As noted in this stack-overflow answer: https://stackoverflow.com/a/21210882/933951, the official recommended method of skinning the Google Chrome Developer tools is by creating an extension to override the default styles which are applied, using the chrome.devtools.panels.applyStyleSheet
.
The process of creating a Chrome extension for this purpose can be a bit tedious to skin each component by hand from scratch, so I've created a small plugin which provides a collection of built-in themes and additional editor settings for Chrome Developer Tools. The extensions also provides developers the ability to create additional custom themes using a simple Sass templating system without writing your own extension.
This will provide, out of the box the following features:
If you would like to contribute additional themes, you can follow the below steps:
Fork the GitHub repository and then follow the steps below. The Devtools Author Chrome extension is built using NodeJS and GruntJS.
$ git clone git@github.com:micjamking/devtools-author.git
$ cd devtools-author
$ npm install
$ grunt serve
Allow incognito
below if you wish).
cmd + opt + I
while the current DevTools window is focused) after changes have been saved and grunt reloads the assets. You'll then need to reload (close and reopen) the subsequent DevTools window after you make changes.app/styles/themes/templates/
and rename the file to your theme name without the underscore, ie. if your theme is called aloha, inside of app/styles/themes/
, copy templates/_theme-template.scss
and rename it to aloha.scss
@include styles()
.themes.json
in app/scripts/
It's related to your theme, please take a look here: http://www.hongkiat.com/blog/chrome-devtools-theme/
or
http://devthemez.com/
Click on settings => Theme => Dark