Skip to content

Instantly share code, notes, and snippets.

@fabsrc
Created January 7, 2018 09:55
Show Gist options
  • Save fabsrc/4fcd099933eccfc8d0fa5362cdcc5745 to your computer and use it in GitHub Desktop.
Save fabsrc/4fcd099933eccfc8d0fa5362cdcc5745 to your computer and use it in GitHub Desktop.
Colored console output for the browser
log = new Proxy({}, {get: (x, k) => (...pass) => console.log(`%c${pass.join(' ')}`, `color: ${k}`)})
// log.red('ALARM')
// log.salmon('hello world')
// log.green('OK')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment