```ts
import { blue, bold, underline } from "colorette"
console.log(
blue("I'm blue"),
bold(blue("da ba dee")),
underline(bold(blue("da ba daa")))
)
```
that could very much be something like this
```ts
import { colors as c } from "colorette"
console.log(
c.blue("I'm blue"),
c.bold(c.blue("da ba dee")),
c.underline(c.bold(c.blue("da ba daa")))
)
```
without compromising on anything, but improving dx tremendously by not litterling the global auto-import namespace + not making the user go through the docs every time they don't remember the exact naming of whatever the lib has