try this: ``` tableRowCell { and (odd) { ...
# tornadofx
a
try this:
Copy code
tableRowCell {
    and (odd) {
        backgroundColor += Color.BLUE
        and(hover) {
            backgroundColor += Color.YELLOW
        }
    }
    and (even) {
        backgroundColor += Color.RED
        and(hover) {
            backgroundColor += Color.YELLOW
        }
    }
}