我试图通过在我的 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) 组件的颜色根本没有改变。我究竟做错了什么?
提前非常感谢!