Lack of contrast of subtle rows in AUI Tables

When I make an AUI Table row “subtle” using the aui-row-subtle CSS class, text is barely readable, both in light and dark themes.

Hey,

What version of AUI are you using? Which product? Cloud or DC? Do you have a codesandbox or reproduction repo?

I am on Jira Data Center 10.3.6.
How can I see the AUI version?

If you have ScriptRunner, you can simply paste this code on the script console:

"""
<table class="aui aui-table-list">
  <thead>
    <tr>
      <th>Col 1</th>
      <th>Col 2</th>
    </tr>
  </thead>
  <tbody>
    <tr class="aui-row-subtle">
        <td>Value A1</td>
        <td>Value A2</td>
    </tr>
    <tr>
        <td>Value B1</td>
        <td>Value B2</td>
    </tr>
  </tbody>
</table>
"""

and hit the RUN button.

Here is how the table appears in dark, light, and original themes:


light-theme

Thanks.