Style console.log() like a PRO

Style console.log() like a PRO

ยท

2 min read

Hello Devs,

In this blog I will guide you all through "HOW WE CAN STYLE CONSOLE.LOG() USING CSS" I have made 12 different styles for you to make sure that you will not ended up with any confusions.

So without wasting any time lets get into this tutorial.

  1. Add %c before the text you want to style.
  2. Insert one more argument in the console log function with the style you want to apply.

1.Simple Console Log Shortcut for JS Objects with the defined color i.e #007acc

console.log("%cThis is my 1st style", "color: #007acc;", "CAPSCODE");

image.png

2.JSON String Output

console.log('%cThis is my 2nd style', 'color: #007acc;', JSON.stringify({fname:'JOHN', lname:'DOE'}, null, "\t" ))

image.png

3.Simple Console Log Shortcut for JS Objects - Green Text

console.log("%cThis is my 4th style", "color: #26bfa5;", {fname:'JOHN', lname:'DOE'});

image.png

4.Simple Console Log for JS Objects - Blue Background with white text

console.log("%cThis is my 5th style", "color: white; background-color: #007acc;", {fname:'JOHN', lname:'DOE'});

image.png

5.Simple Console Log Shortcut for JS Objects - #26bfa5 Background with white text

console.log("%cThis is my 6th style", "color: white; background-color: #26bfa5;", {fname:'JOHN', lname:'DOE'});

image.png

6.Simple Console Log Shortcut for JS Objects - Green Background with white text

console.log("%cThis is my 7th style", "background: green; color: white; display: block;");

image.png

7.Find errors with style

console.log("%cThis is my 8th style", "color: red; display: block; width: 100%;", error);

image.png

8.You need a Rainbow in your code

console.log("%c CapsCode!", "font-weight: bold; font-size: 50px;color: red; text-shadow: 3px 3px 0 rgb(217,31,38) , 6px 6px 0 rgb(226,91,14) , 9px 9px 0 rgb(245,221,8) , 12px 12px 0 rgb(5,148,68) , 15px 15px 0 rgb(2,135,206) , 18px 18px 0 rgb(4,77,145) , 21px 21px 0 rgb(42,21,113); margin-bottom: 12px; padding: 5%");

image.png

9.Insert image of size 500 X 333 in console

console.log("%c ", "font-size: 1px; padding: 166.5px 250px; background-size: 500px 333px; background: no-repeat url(https://www.capscode.in/static/media/cap.0d0af8f0.png);");

image.png

10.Insert image of size 247X 480 in console

console.log("%c ", "font-size: 1px; padding: 240px 123.5px; background-size: 247px 480px; background: no-repeat url(https://www.capscode.in/static/media/cap.0d0af8f0.png);");

image.png

11.Insert image of size 250 X 250 in console

console.log("%c ", "font-size: 1px; padding: 125px 125px; background-size: 250px 250px; background: no-repeat url(https://i2.wp.com/i.giphy.com/media/12BYUePgtn7sis/giphy-downsized.gif?w=770&ssl=1);")

image.png

12.Inserting GIF in console

console.log("%c ", "font-size: 1px; padding: 215px 385px; background-size: 770px 430px; background: no-repeat url(https://i0.wp.com/i.giphy.com/media/ZVik7pBtu9dNS/giphy-downsized.gif?w=770&ssl=1);");

image.png

Thank you for reading this far. This is a brief introduction of How to style console.log using some CSS . If you find this article useful/ FUN, like and share this article. Someone could find it useful too. If you find anything technically inaccurate please feel free to comment below.

Hope its a nice and informative read for you. VISIT capscode.in/#/blog TO LEARN MORE...

Thanks, @capscode

Did you find this article valuable?

Support CapsCode's Blog by becoming a sponsor. Any amount is appreciated!

ย