egoist / codepan

Like codepen and jsbin but works offline.
https://codepan.egoist.sh
MIT License
1.18k stars 178 forks source link

add %c handling to console, add color support for proxy console #71

Closed Prozi closed 5 years ago

Prozi commented 5 years ago

I've added support for:

console.log('%cthis is colored text', 'color: red; background: pink;')

since I work with pixi.js (pixi-shim) and they have a pretty colored hello message that was looking plain ugly

to see the message in action

  1. add library pixi-shim
  2. import {Application} from 'pixi-shim'
    new Application
  3. see console tab
Prozi commented 5 years ago

fixed console.log('%c') corner case

Prozi commented 5 years ago

added %s string replace