export function warn(label, text) {
    const title = text ? `  ${yellow(text)}` : '';
    return bgYellow(black(`  ${label}  `)) + title;
}