Skip to content

Instantly share code, notes, and snippets.

@shaneriley
Created May 12, 2015 14:40
Show Gist options
  • Save shaneriley/4096a7efd72664046046 to your computer and use it in GitHub Desktop.
Save shaneriley/4096a7efd72664046046 to your computer and use it in GitHub Desktop.
Comic Sans Log
console.clog = function() {
var format = "font: normal 18px 'Comic Sans MS', Chalkboard; color: purple;";
if (arguments.length > 1) {
console.log("%c" + arguments[0], format, [].slice.call(arguments, 1));
}
else {
console.log("%c" + arguments[0], format);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment