How to change font color of row in Grid vaadin ?

I still think it would be easier to get you up to date to Vaadin 24, that to style Grid rows in Vaadin 14 :grimacing:

Yeah that’s the Gradle Plugin for 14 :grimacing:

Now, it’s working with below. Thanks all.
_tblGrid.setClassNameGenerator(e → e[0].toString().contains(ā€œMaleā€) ? ā€œMessage-Warnā€ : ā€œMessage-Errorā€);