Terminal font aesthetics for NodeJS.
Install Sherbet
npm i sherbet@latest
Sprinkle some on
import {Sherbet} from "sherbet";
const s = new Sherbet()
const Tick = s.coat(
'✔︎',
s.fGreen,
s.bright,
)
const Success = s.coat(
'Success!',
s.underscore,
s.bright
)
console.log(Tick, Success, s.coat('Hello world...', s.dim))