🟣Colors Module
Loxt doesn't just make it easier to add your own custom themes, it even makes easier the use of colors in the terminal, all in one module!
The colors module has terminal colors, bold, dim, underlined, inverted, hidden and more.
Since the methods return strings you can chain them.
import { Colors } from 'loxt';
const { underline, bold, red } = Colors
console.log(underline(bold(red('This is a text!'))))
Last updated