Skip to content

Instantly share code, notes, and snippets.

@HelgaZhizhka
Created April 12, 2016 19:50
Show Gist options
  • Save HelgaZhizhka/593ca8ae969d0f81424152e00c0c3b68 to your computer and use it in GitHub Desktop.
Save HelgaZhizhka/593ca8ae969d0f81424152e00c0c3b68 to your computer and use it in GitHub Desktop.
function cons(styles) {
if (!cons.initial) cons.initial = console;
var defaultStyles = 'font-family: Arial; font-size: 2em;';
styles = styles || defaultStyles;
console = {
log: function(str) { cons.initial.log('%c' + str, styles) }
}
};
cons('font-family: Palace Script MT; font-size: 5em')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment