I am currently learning the basics of Bootstrap for front-end web development. However, I am facing difficulty in changing the color of navbar text items to blue. I have tried several online solutions but none seem to work with the following code:
<nav class="navbar navbar-expand-lg navbar-light bg-white shadow fixed-top bg-light">
<div class="container-fluid">
<a class="navbar-brand" href="#"><img src="" alt="Site logo"> <!--edit--></a>
<button class="navbar-toggler" type="button" data-bs-toggle="collapse" data-bs-target="#navbarText" aria-controls="navbarText" aria-expanded="false" aria-label="Toggle navigation">
<span class="navbar-toggler-icon"></span>
</button>
<div class="collapse navbar-collapse" id="navbarText">
<ul class="navbar-nav me-auto mb-2 mb-lg-0">
<li class="nav-item">
<a class="nav-link" href="#" style="color: #0d6efd;">Home</a>
</li>
<li class="nav-item">
<a class="nav-link active" aria-current="page" href="#" style="color: #0d6efd;">Statistics</a>
</li>
</ul>
</div>
</div>
</nav>
This code is based on Bootstrap 5 and it requires adding the color #0d6efd to the text. Any help would be appreciated. Thank you.