Is it possible to completely customize the style/CSS of a component from ng-bootstrap?
Here's the issue I'm facing:
I have this code...
<ngb-datepicker
#dp
[(ngModel)]="model"
(navigate)="date = $event.next"
style="color: black; border: solid 3px red"
></ngb-datepicker>
and this is the outcome...
https://i.sstatic.net/epZxS.png
However, my goal is to change the color of the week days to black instead of blue. The "color" property only affects the numbers and not the week days, so I'm struggling to find a solution. Is there a way to achieve this?
When running the code, I inspected the element in hopes of finding some clues, but my knowledge is limited. Here's what I found, hoping it might help:
https://i.sstatic.net/Lebg3.png
I attempted to style the class "ngb-dp-weekday small" without success.
Thank you all in advance!!