Yes, you can apply CSS styles to console messages similar to html text on the web page.
console.log(
"%c The text has blue color, with large font and red background",
"color: blue; font-size: x-large; background: red"
);
The text will be displayed as below, 
Note: All CSS styles can be applied to console messages.