Skip to content

Instantly share code, notes, and snippets.

@tsvetkovpro
Created May 18, 2016 06:13
Show Gist options
  • Save tsvetkovpro/74902cf76f91e3f3b4bc77f47e15d18f to your computer and use it in GitHub Desktop.
Save tsvetkovpro/74902cf76f91e3f3b4bc77f47e15d18f to your computer and use it in GitHub Desktop.
css
var consoleStyles = {
'h1': 'font: 2.5em/1 Arial; color: crimson;',
'h2': 'font: 2em/1 Arial; color: orangered;',
'h3': 'font: 1.5em/1 Arial; color: olivedrab;',
'bold': 'font: bold 1.3em/1 Arial; color: midnightblue;',
'warn': 'padding: 0 .5rem; background: crimson; font: 1.6em/1 Arial; color: white;'
};
function log ( msg, style ) {
if ( !style || !consoleStyles[ style ] ) {
style = 'bold';
}
console.log ( '%c' + msg, consoleStyles[ style ] );
}
log ( 'Заголовок 1', 'h1' );
log ( 'Заголовок 2', 'h2' );
log ( 'Заголовок 3', 'h3' );
log ( 'Жирный текст', 'bold' );
log ( 'Ошибка', 'warn' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment