persona-community-5/.pnpm-store/v3/files/1e/86817e8b3304685302a6e831d0f62a4dbc48279862d2fe7fc57301f7ce71eb13f8f399ef19d25a8e9d394b925df2b6c86e967c360e3408816db719aa36c8bc
rdev-worker a1d0d1bf1c
Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
build: /implement-feature community-ui --requirements 'Build the React commu...
2026-02-24 08:22:30 +00:00

30 lines
416 B
Plaintext

'use strict';
function red(str) {
return '\u001b[31m' + str + '\u001b[0m';
}
function green(str) {
return '\u001b[32m' + str + '\u001b[0m';
}
function yellow(str) {
return '\u001b[33m' + str + '\u001b[0m';
}
function cyan(str) {
return '\u001b[36m' + str + '\u001b[0m';
}
function grey(str) {
return '\u001b[90m' + str + '\u001b[0m';
}
module.exports = {
red,
green,
yellow,
cyan,
grey,
};