Last active
February 7, 2021 08:54
-
-
Save blakazulu/67f7391120c813095ca47be76a733a69 to your computer and use it in GitHub Desktop.
Console Style
This file contains 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 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🙏. [email protected]"; | |
console.log(text, style); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment