Here is an example code, you can modify the data of interest but remember that it is the same structure and you can apply it to any column.
public void modificarCelda(TableColumn<Modelo_Mensual, String> cedulas){ // columna de interes
cedulas.setCellFactory(new Callback<TableColumn<Modelo_Mensual, String>, TableCell<Modelo_Mensual, String>>(){ // cambiar el factor o como se va a comportar la celda
@Override
public TableCell<Modelo_Mensual, String> call(TableColumn<Modelo_Mensual, String> param) {
return new TableCell<Modelo_Mensual, String>(){
@Override
protected void updateItem(String item, boolean empty) {//actualizando la celda con los parametros de interes
super.updateItem(item, empty); //To change body of generated methods, choose Tools | Templates.
if (item != null){ //esta es para asegurarse que haya informacion
setStyle("-fx-background-color:#"+item); //y se coloca el estilo de fondo segun el color que mencione la celda
//-fx-background-color:#f0f8ff //este es un ejemplo de como debe quedar.
}
}
};
}
});
}