theme.scss ファイルに対応する変数を設定して、企業のテーマ変数 (nb-action の色) を上書きしようとしていました。
次のようになります。
@import '~@nebular/theme/styles/theming';
@import '~@nebular/theme/styles/themes/corporate';
$theme: ( actions-fg:#000000, actions-bg: #000000, actions-separator: #000000, color-fg: #000000, );
$nb-themes: nb-register-theme(( $theme), corporate, default);
問題は、nb-action(s) コンポーネントの色がまったく変わらないことです。私は何を間違っていますか?
よろしくお願いします!