Change table background color for selected rows

Yes, you can do this with custom css @ckissi! Add this to a text component and toggle on the option for "render as HTML":

<style>
  ._retool-table1 .table-widget .table-row.selected {
    background-color: rgba(25,25,255,.1);
  }
</style>

More info on this post too: How to write custom CSS in Retool!