Skip to content

Instantly share code, notes, and snippets.

@blakazulu
Last active February 7, 2021 08:54
Show Gist options
  • Save blakazulu/67f7391120c813095ca47be76a733a69 to your computer and use it in GitHub Desktop.
Save blakazulu/67f7391120c813095ca47be76a733a69 to your computer and use it in GitHub Desktop.
Console Style
var style = "font-size: 24px;" +
"background: #67b26f; /* fallback for old browsers */" +
"background: -webkit-linear-gradient(to right, #67b26f, #4ca2cd); /* Chrome 10-25, Safari 5.1-6 */" +
"background: linear-gradient(to right, #67b26f, #4ca2cd); /* W3C, IE 10+/ Edge, Firefox 16+, Chrome 26+, Opera 12+, Safari 7+ */" +
"color: white;" +
"text-align: center;" +
"padding: 10px 15px;" +
"width: 100%;" +
"border-radius: 20px;";
var text = "%cLet's talk business🙏. liraz.amir.1982@gmail.com";
console.log(text, style);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment