Skip to content

ANSI constants

ANSI codes for coloring and decorating ANSI text

ANSI

  • Type: Ansi
ts
interface Ansi {
	fg: Record<number, string>; // Foreground colors
	bg: Record<number, string>; // Background colors
	decoration: Record<number, string>;
	reset: string;
};

Built by Prozilla