Using ZIM 17, setting the backgroundColor param to -1 produces a black background
const nameTf = new zim.TextInput({
text: this.player.name,
size: this.h * .175,
font: "fixed",
color: "#fff",
backgroundColor: -1,
borderColor: -1,
shadowColor: -1,
width: maxSide * 3,
height: nameTfH + 4,
padding: 2,
});
How do I get a transparent background?