29 lines
564 B
TypeScript
29 lines
564 B
TypeScript
declare const colors: {
|
|
Reset: string;
|
|
Bright: string;
|
|
Dim: string;
|
|
Underscore: string;
|
|
Blink: string;
|
|
Reverse: string;
|
|
Hidden: string;
|
|
FgBlack: string;
|
|
FgRed: string;
|
|
FgGreen: string;
|
|
FgYellow: string;
|
|
FgBlue: string;
|
|
FgMagenta: string;
|
|
FgCyan: string;
|
|
FgWhite: string;
|
|
FgGray: string;
|
|
BgBlack: string;
|
|
BgRed: string;
|
|
BgGreen: string;
|
|
BgYellow: string;
|
|
BgBlue: string;
|
|
BgMagenta: string;
|
|
BgCyan: string;
|
|
BgWhite: string;
|
|
BgGray: string;
|
|
};
|
|
export default colors;
|