Can I DevTools?
Console
Edit
  1. Open console (Cmd+Option+J or Ctrl+Shift+J).
  2. Prefix the log statement with %c, and supply the CSS styles as the second argument to console.log()

For example,

console.log(
  "%cThis is green text with yellow background",
  "color:green; background:yellow"
)