/** * Background RGB Color * @param r Red color (1 ~ 255) * @param g Green color (1 ~ 255) * @param b Blue color (1 ~ 255) * @returns */ export declare const Bgc: (r: number, g: number, b: number) => string; /** * Text RGB Color * @param r Red color (1 ~ 255) * @param g Green color (1 ~ 255) * @param b Blue color (1 ~ 255) * @returns */ export declare const Rgb: (r: number, g: number, b: number) => string; /** * Declared Colors */ export declare const LoggingsColors: { readonly red: string; readonly green: string; readonly lime: string; readonly blue: string; readonly yellow: string; readonly cyan: string; readonly magenta: string; readonly black: string; readonly white: string; readonly gray: string; readonly maroon: string; readonly olive: string; readonly navy: string; readonly purple: string; readonly teal: string; readonly silver: string; readonly indigo: string; readonly gold: string; readonly pink: string; readonly orange: string; readonly brown: string; readonly peach: string; readonly lavender: string; readonly coral: string; readonly turquoise: string; readonly salmon: string; readonly olivebrab: string; readonly slate: string; readonly lsgreen: string; readonly dorange: string; readonly khaki: string; readonly mvred: string; readonly dsalmon: string; readonly lpink: string; readonly dgray: string; readonly gainsboro: string; readonly nred: string; readonly ngreen: string; readonly nblue: string; readonly nyellow: string; readonly ncyan: string; readonly nmagenta: string; readonly npink: string; readonly norange: string; readonly npurple: string; readonly nturquoise: string; readonly nviolet: string; readonly ncoral: string; readonly inverse: "\u001B[7m"; readonly none: "none"; readonly reset: "\u001B[0m"; readonly bold: "\u001B[1m"; readonly def: "\u001B[49m"; readonly normal: "\u001B[22m"; readonly blink: "\u001B[5m"; readonly nblink: "\u001B[25m"; readonly hidden: "\u001B[8m"; readonly visible: "\u001B[28m"; readonly over: "\u001B[53m"; readonly nover: "\u001B[55m"; readonly dtext: "\u001B[2m"; readonly italic: "\u001B[3m"; readonly icolor: "\u001B[7m"; readonly ncolor: "\u001B[27m"; readonly strike: "\u001B[9m"; readonly nstrike: "\u001B[29m"; readonly under: "\u001B[4m"; readonly dunder: "\u001B[21m"; readonly nunder: "\u001B[24m"; readonly cunder: "\u001B[4:3m"; readonly dounder: "\u001B[4:4m"; readonly daunder: "\u001B[4:5m"; readonly runder: "\u001B[59m"; };