setFontColor method
Sets the font colour and forces the core to redraw.
Treats red, green, blue and alpha as 1 byte channels.
Implementation
void setFontColor(int red, int green, int blue, int alpha) {
setFontColorNative?.call(_sdk, red, green, blue, alpha);
}