projex
Version:
A command line to manage the workflow
27 lines (26 loc) • 814 B
TypeScript
export declare enum COLORS {
GREEN = "#8fd19e",
PINK = "#ffb6c1",
BLUE = "#add8e6",
ERROR = "#ff7f7f",
WHITE = "#ffffff",
YELLOW = "#fffacd",
WARNING_TERMINAL = "#e6e6fa"
}
export declare enum LogLevelColors {
'info' = "#8fd19e",
'warn' = "#e6e6fa",
'error' = "#ff7f7f",
'debug' = "#add8e6",
'silly' = "#fffacd",
'verbose' = "#add8e6"
}
export declare class Colors {
static readonly WARNING: (message: string) => string;
static readonly ERROR: (message: string) => string;
static readonly WHITE: (message: string) => string;
static readonly YELLOW: (message: string) => string;
static readonly PINK: (message: string) => string;
static readonly GREEN: (message: string) => string;
static readonly BLUE: (message: string) => string;
}