Created
May 18, 2016 06:13
-
-
Save tsvetkovpro/74902cf76f91e3f3b4bc77f47e15d18f to your computer and use it in GitHub Desktop.
css
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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