3

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

提前非常感谢!

4

1 回答 1

0

干得好:

$nb-themes: nb-register-theme((
  // add your variables here like:
  actions-fg:#000000,
  actions-bg: #000000,
  actions-separator: #000000,
  color-fg: #000000,
), corporate, corporate);

并且不要忘记更改NbThemeModule.forRoot({ name: 'corporate' })零件。这是一个完整的例子:https ://stackblitz.com/edit/github-kafw6m?file=src/themes.scss

于 2019-03-12T14:07:07.007 回答