ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
19 lines • 513 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.colors = void 0;
const node_util_1 = require("node:util");
const color = (format) => {
return (text) => (0, node_util_1.styleText)(format, text);
};
exports.colors = {
red: color('red'),
yellow: color('yellow'),
green: color('green'),
blue: color('blue'),
white: color('white'),
bold: color('bold'),
inverse: {
cyan: color(['inverse', 'cyan']),
},
};
//# sourceMappingURL=color.js.map