Carousel Indicators Colour

Ah, this was the problem: filter: grayscale(0%) invert(100%);

Once deleted from the Indicator’s attribute, the colors display as expected.

    **<div class="carousel-indicators" style="filter: grayscale(0%) invert(100%);">**
      <button type="button" data-bs-target="#carousel" data-bs-slide-to="0" class="active"></button> 
      <button type="button" data-bs-target="#carousel" data-bs-slide-to="1"></button> 
      <button type="button" data-bs-target="#carousel" data-bs-slide-to="2"></button> 
      <button type="button" data-bs-target="#carousel" data-bs-slide-to="3"></button> 
      <button type="button" data-bs-target="#carousel" data-bs-slide-to="4"></button> 
    </div>

Thank you for your help!