I'm having this bootstrap tabs
<ngb-tabset>
    <ngb-tab title="Tab 1">
        <ng-template ngbTabContent>
            Tab 1
        </ng-template>
    </ngb-tab>
    <ngb-tab title="Tab 2">
        <ng-template ngbTabContent>
            Tab 2
        </ng-template>
    </ngb-tab>
</ngb-tabset>
The text color on the tabs is blue. I know that if I create global styles I can override the defaults. But I want to style the tabs from the parent component
I know that I can style children components but it doesn't work in this case (How to style child components from parent component's css file?). Any advice?
styles: [
`
 :host { color: red; }
 :host ::ng-deep parent {
   color:blue;
 }
 :host ::ng-deep child{
   color:orange;
 }
 :host ::ng-deep child.class1 {
   color:yellow;
 }
 :host ::ng-deep child.class2{
   color:pink;
 }
`
],
 
    