Skip to content

Instantly share code, notes, and snippets.

@nzambello
Created February 9, 2018 17:31
Show Gist options
  • Save nzambello/87a81eb852ec814b9a1e28475dda5c0c to your computer and use it in GitHub Desktop.
Save nzambello/87a81eb852ec814b9a1e28475dda5c0c to your computer and use it in GitHub Desktop.
RedTurtle credits in console
/*
* Credits in console
*/
var redColor = '#CB1D15';
var blackColor= '#000';
setTimeout(function() {
console.log('\n' +
'%c ____ _ %c_____ _ _ \n' +
'%c | _ \\ ___ __| |%c|_ _|_ _ _ __ | |_ | | ___ \n' +
'%c | |_) |/ _ \\ / _` | %c | | | | | || \'__|| __|| | / _ \\ \n' +
'%c | _ <| __/| (_| | %c| | | |_| || | | |_ | || __/ \n' +
'%c |_| \\_\\\\___| \\__,_|%c |_| \\__,_||_| \\__||_| \\___| \n' +
'\nProudly developed by RedTurtle Technology\n' +
'https://www.redturtle.it/\n',
'color: ' + redColor,
'color: ' + blackColor,
'color: ' + redColor,
'color: ' + blackColor,
'color: ' + redColor,
'color: ' + blackColor,
'color: ' + redColor,
'color: ' + blackColor,
'color: ' + redColor,
'color: ' + blackColor
);
}, 1000); // non-blocking call, executes after anything else
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment