(token: ColorToken, text: string)
| 49 | } |
| 50 | |
| 51 | italicFg(token: ColorToken, text: string): string { |
| 52 | return chalk.hex(this._palette[token]).italic(text); |
| 53 | } |
| 54 | |
| 55 | underlineFg(token: ColorToken, text: string): string { |
| 56 | return chalk.hex(this._palette[token]).underline(text); |