Estaba tratando de establecer el color de mi tabla para construir un nodo-cli-terminal usando bendito
function createListTable(alignment, padding, isInteractive = false) { return { parent: screen, keys: true, align: alignment, selectedFg: "white", selectedBg: "blue", interactive: isInteractive, // Makes the list table scrollable padding: padding, width: '80%', height: '30%', style: { fg: 'cyan', border: { fg: 'cyan' }, cell: { selected: { fg: "black", bg: "light-yellow" } }, header: { fg: "gray", bold: true } }, }; }Cuando estoy creando una nueva instancia de mi tabla, no puedo establecer el color para la celda.
data[1][0] = '{red-fg}' + data1[1][0] + '{/red-fg}';La solución es simple, solo agregue createListTable
tag: true