Step-1 :
Create a new page and select table or SQL Query.
Type : Classic report
Step-2 : Create Page Load Dynamic Action
--> Name : row_color
--> Action : Execute javascript code
--> Code :
$('td[headers="BASIC_SALARY"]').each(function() {
if ( $(this).text() <= '15000' ) {
$(this).closest('tr').find('td').css({"background-color":"rgb(37 90 185 / 68%)"});
$(this).closest('tr').find('td').css({"color":"black"});
$(this).closest('tr').find('td').css({"font-weight":"bold"});
$(this).closest('tr').find('td').css({"border":"1px solid #D6EAF8 !important"});
}
if ( $(this).text() >= '25000' && $(this).text() < '50000' ) {
$(this).closest('tr').find('td').css({"background-color":"#4FA64F "});
$(this).closest('tr').find('td').css({"color":"black"});
$(this).closest('tr').find('td').css({"font-weight":"bold"});
$(this).closest('tr').find('td').css({"border":"1px solid #D6EAF8 !important"});
}
if ( $(this).text() === '0' ) {
$(this).closest('tr').find('td').css({"background-color":"ghostwhite"});
$(this).closest('tr').find('td').css({"font-weight":"bold"});
}
if ( $(this).text() >= '50000' ) {
$(this).closest('tr').find('td').css({"background-color":"#997570"});
$(this).closest('tr').find('td').css({"color":"white"});
$(this).closest('tr').find('td').css({"font-weight":"bold"});
}
});