(token: ColorToken, text: string)
| 37 | /* ── Foreground helpers ── */ |
| 38 | |
| 39 | fg(token: ColorToken, text: string): string { |
| 40 | return chalk.hex(this._palette[token])(text); |
| 41 | } |
| 42 | |
| 43 | boldFg(token: ColorToken, text: string): string { |
| 44 | return chalk.hex(this._palette[token]).bold(text); |
no outgoing calls
no test coverage detected