yariel.dev-colors
Version:
colores de consola
21 lines (20 loc) • 398 B
TypeScript
export interface IColor {
Red: string;
Green: string;
Yellow: string;
Blue: string;
Magenta: string;
Cyan: string;
White: string;
Black: string;
Gray: string;
RedBg: string;
GreenBg: string;
YellowBg: string;
BlueBg: string;
Random?: string;
Warn?: string;
Error?: string;
Info?: string;
Check?: string;
}