(token: ColorToken, text: string)
| 45 | } |
| 46 | |
| 47 | dimFg(token: ColorToken, text: string): string { |
| 48 | return chalk.hex(this._palette[token]).dim(text); |
| 49 | } |
| 50 | |
| 51 | italicFg(token: ColorToken, text: string): string { |
| 52 | return chalk.hex(this._palette[token]).italic(text); |
no test coverage detected