Created
June 11, 2022 18:21
-
-
Save madrus/6d4a10d47b3d110173b0a59fdc8ca47b to your computer and use it in GitHub Desktop.
Tired of black text in DevTools console window? Try my functions.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
const logBlue = (text: string) => | |
console.log(`%c${text}\n`, 'color: blue; font-weight: 700') | |
const logRed = (text: string) => | |
console.log(`%c${text}\n`, 'color: red; font-weight: 700') | |
const logGreen = (text: string) => | |
console.log(`%c${text}\n`, 'color: green; font-weight: 700') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment