@intlayer/config
Version:
Retrieve Intlayer configurations and manage environment variables for both server-side and client-side environments.
19 lines (18 loc) • 586 B
JavaScript
//#region src/colors.ts
const RESET = "\x1B[0m";
const GREY = "\x1B[90m";
const GREY_DARK = "\x1B[38;5;239m";
const GREY_LIGHT = "\x1B[38;5;252m";
const BLUE = "\x1B[34m";
const RED = "\x1B[31m";
const GREEN = "\x1B[32m";
const YELLOW = "\x1B[38;5;226m";
const MAGENTA = "\x1B[35m";
const BEIGE = "\x1B[38;5;3m";
const ORANGE = "\x1B[38;5;208m";
const CYAN = "\x1B[36m";
const WHITE = "\x1B[37m";
const BOLD = "\x1B[1m";
//#endregion
export { BEIGE, BLUE, BOLD, CYAN, GREEN, GREY, GREY_DARK, GREY_LIGHT, MAGENTA, ORANGE, RED, RESET, WHITE, YELLOW };
//# sourceMappingURL=colors.mjs.map