superuser-task-runner
Version:
A powerful task runner designed to manage complex development workflows across both monorepo and single-project configurations. Built as a more flexible alternative to Turborepo with enhanced customization capabilities, this tool focuses on unique deploym
21 lines (18 loc) • 322 B
JavaScript
// colors.js
const colors = {
reset: '\x1b[0m',
bright: '\x1b[1m',
dim: '\x1b[2m',
cyan: '\x1b[36m',
green: '\x1b[32m',
yellow: '\x1b[33m',
blue: '\x1b[34m',
magenta: '\x1b[35m',
red: '\x1b[31m',
bg: {
blue: '\x1b[44m',
cyan: '\x1b[46m',
green: '\x1b[42m'
}
};
module.exports = colors;