(token: ColorToken, text: string)
| 41 | } |
| 42 | |
| 43 | boldFg(token: ColorToken, text: string): string { |
| 44 | return chalk.hex(this._palette[token]).bold(text); |
| 45 | } |
| 46 | |
| 47 | dimFg(token: ColorToken, text: string): string { |
| 48 | return chalk.hex(this._palette[token]).dim(text); |
no test coverage detected