I'm creating a game played in the console and I would like to decorate my console.log messages to give them more flare.
Since I'm new to coding, I'm trying to learn to use template literals any time I console.log a message.
If I reverted to quotes and concatenation, I could style my console.log messages like so: console.log('%c some message' + someVar, 'color: red') 
How can I style my console.log messages using template literals?
 
     
     
    