Skip to content

Instantly share code, notes, and snippets.

@madrus
Created June 11, 2022 18:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save madrus/6d4a10d47b3d110173b0a59fdc8ca47b to your computer and use it in GitHub Desktop.
Save madrus/6d4a10d47b3d110173b0a59fdc8ca47b to your computer and use it in GitHub Desktop.
Tired of black text in DevTools console window? Try my functions.
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