export function error(label, text) {
    const title = text ? `  ${red(text)}` : '';
    return bgRed(white(`  ${label}  `)) + title;
}