Author -  Sai gowtham

How to Style the Chrome Console with Colors

In this tutorial, we are going to learn about styling the console.log output with colors using css.

Adding colors to console.log

We can add the colors to the console.log outputs by using %c as a first argument and css properties as the second argument.

Example: This example shows you how to add a red background color with font-size:20px to the console.log().

console.log('%c Hello Users','background:red;color:black;font-size:20px');

red color added to console.log

Storing css properties inside variables

Instead of typing the same css styling on every console.log we can also store our css properties inside JavaScript variables.

Example:

const redColor = 'background:red;color:black;font-size:20px';
const greenColor = 'background:green;color:black;font-size:20px';

console.log('%c Hello Users',redColor);

console.log('%c Hello Users',greenColor);

storing console.log colors in variables

Note: The same code also works to style the mozilla firefox console.log outputs.

Css Tutorials & Demos

How rotate an image continuously in CSS

In this demo, we are going to learn about how to rotate an image continuously using the css animations.

How to create a Instagram login Page

In this demo, i will show you how to create a instagram login page using html and css.

How to create a pulse animation in CSS

In this demo, i will show you how to create a pulse animation using css.

Creating a snowfall animation using css and JavaScript

In this demo, i will show you how to create a snow fall animation using css and JavaScript.

Top Udemy Courses

JavaScript - The Complete Guide 2023 (Beginner + Advanced)
JavaScript - The Complete Guide 2023 (Beginner + Advanced)
116,648 students enrolled
52 hours of video content
$14.99 FROM UDEMY
React - The Complete Guide (incl Hooks, React Router, Redux)
React - The Complete Guide (incl Hooks, React Router, Redux)
631,582 students enrolled
49 hours of video content
$24.99 FROM UDEMY
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
Vue - The Complete Guide (w/ Router, Vuex, Composition API)
203,937 students enrolled
31.5 hours of video content
$14.99 FROM UDEMY