Tsvb markdown with two different color table

Hello,

I have a use case that i need to created two different bg color table in the same markdown. As i know markdown support class (so i may use class selector in css). But it seems that it don't work in Kibana tsvb markdown. Any suggestion?

thx

capho

Hey @Cap_Ho, I guess you could do something like that

table {
    background-color: yellow;
}

table: last-child {
    background-color: red;
}

This will result in something like that:

@Stratoula_Kalafateli thx a lot. Actually my real question is this:

Do u think that your suggestion may cover this? Showing different color based on the data?

@Stratoula_Kalafateli . To be more specific, i would like to see if markdown may resolve my problem. Using different color to represent the status based on the metrics value.