Adding on here! If you'd like to change the text color of only the selectedRow, you can use some custom CSS (docs and community forum guide).
Here's the code I'm using:
#table2--0 li[aria-selected=true] div {
color: red;
}
You'll likely just need to change the table name in the CSS for it to work on your end. Let us know if you have any questions!