(text: string)
| 431 | const primary = (text: string): string => chalk.hex(darkColors.primary)(text); |
| 432 | const title = (text: string): string => chalk.bold.hex(darkColors.primary)(text); |
| 433 | const dim = (text: string): string => chalk.hex(darkColors.textDim)(text); |
| 434 | const muted = (text: string): string => chalk.hex(darkColors.textMuted)(text); |
| 435 | const label = (text: string): string => chalk.bold.hex(darkColors.textDim)(text); |
| 436 | const url = (text: string): string => chalk.hex(darkColors.accent)(text); |
no outgoing calls
no test coverage detected