Skip to content

Instantly share code, notes, and snippets.

@ochi
Forked from OutThisLife/color-log.js
Created January 12, 2018 14:28
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