Change text color of the inline list

I can’t seem to find a way to target placeholders, so if anyone can chime in and help it’d be appreciated.

<pre><span><style>

/* This changes the color and font-size of email entry and text entry's titles*/

[data-test="app-text-field"] .tf-inner >* {
color: black;
font-size: 15px;
}

/* This changes the color and font-size of rating title */

[data-test="app-rating-component"] :nth-child(1) {
color: black;
font-size: 15px;
}

3 Likes