Я новичок в ng-bootstrap. Цвет по умолчанию переключателей в ng-bootsrap - синий. Мне нужен желтый цвет по умолчанию, а при нажатии он должен быть зеленым.
Кнопка-radio.html
<code> <div class="btn-group btn-group-toggle" ngbRadioGroup name="radioBasic" [(ngModel)]="model">
<label ngbButtonLabel class="btn-primary">
<input ngbButton type="radio" [value]="1"> Left (pre-checked)
</label>
<label ngbButtonLabel class="btn-primary">
<input ngbButton type="radio" value="middle"> Middle
</label>
<label ngbButtonLabel class="btn-primary">
<input ngbButton type="radio" [value]="false"> Right
</label>
</div>
<hr>
<pre>{{model}}
кнопка-radio.ts
import {Component} from '@angular/core';
@Component({
selector: 'ngbd-buttons-radio',
templateUrl: './buttons-radio.html'
})
export class NgbdButtonsRadio {
model = 1;
}
Пожалуйста, посмотрите пример кода здесь