Skip to content

Instantly share code, notes, and snippets.

@chewtoys
Last active May 14, 2019 04:46
Show Gist options
  • Save chewtoys/506901a395a93e4156761f137097d457 to your computer and use it in GitHub Desktop.
Save chewtoys/506901a395a93e4156761f137097d457 to your computer and use it in GitHub Desktop.
function colorLog(message, color) {

    color = color || "black";

    switch (color) {
        case "success":  
             color = "Green"; 
             break;
        case "info":     
                color = "DodgerBlue";  
             break;
        case "error":   
             color = "Red";     
             break;
        case "warning":  
             color = "Orange";   
             break;
        default: 
             color = color;
    }

    console.log("%c" + message, "color:" + color);
}

console.log(`%c NEKIO %c test `,"background: #0FABE9; color: #e8e8e8; border-radius: 3px 0 0 3px;", "background: #105577; color: #e8e8e8; border-radius: 0 3px 3px 0")

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment