ANSI constants
ANSI codes for coloring and decorating ANSI text
- Source:
ansi.const.ts
ANSI
- Type:
Ansi
ts
interface Ansi {
fg: Record<number, string>; // Foreground colors
bg: Record<number, string>; // Background colors
decoration: Record<number, string>;
reset: string;
};