Is there a way to change the text color of my nav-bar to white, while keeping the background as 'primary-subtle' with Bootstrap? How can I override Bootstrap's default functions using CSS when combining these two styles?
Here is the code snippet:
<nav class="navbar navbar-expand-lg bg-primary-subtle" data-bs-theme="dark">
<a class="navbar-brand" href=""> CONNECT </a>
<ul class="nav ms-auto" >
<li class="nav-item"><a class="nav-link active:text-decoration:none" href="">Home</a></li>
<li class="nav-item"><a class="nav-link active:text-decoration:none" href="">Signup</a></li>
<li class="nav-item"><a class="nav-link active:text-decoration:none" href="">Reviews</a></li>
<li class="nav-item"><a class="nav-link active:text-decoration:none" href="">Login</a></li>
</ul>
I want the background color to be 'primary-subtle' and the text color to be white for the navbar links - Home, Sign up, Reviews, and Login (currently not showing as white).