Skip to content

Instantly share code, notes, and snippets.

@dahngeek
Forked from OutThisLife/color-log.js
Created January 2, 2019 22:59
Show Gist options
  • Save dahngeek/164005b12107bf4a98d9c0a6dc34480d to your computer and use it in GitHub Desktop.
Save dahngeek/164005b12107bf4a98d9c0a6dc34480d to your computer and use it in GitHub Desktop.
const log = new Proxy({}, {
get: (_, colour) => function() {
console.log(`%c ${[].slice.call(arguments).join(' ')}`, `color: ${colour}`)
}
})
// example
log.tomato('I am tomato')
log.chocolate('I am chocolate')
log.cornflowerblue('I am cornflowerblue')
log.darkcyan('I am darkcyan')
log.goldenrod('I am goldenrod')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment