Nbspinner背景颜色已更改

问题描述

我想更改nbspinner的背景颜色。 我已经尝试过nb主题变量,但是它对我不起作用。

@import "~@nebular/theme/styles/theming";
@import "~@nebular/theme/styles/themes/default";

$nb-themes: nb-register-theme(
  (
    background-color: red,),default
);

解决方法

注册主题时,您必须使用变量名称: spinner-basic-background-color ,它肯定会像对我一样起作用。您还可以在下面的文档中检查与nb-spinner相关的其他颜色。

Nebular Docs

$nb-themes: nb-register-theme((
  font-family-primary: unquote('Roboto,sans-serif'),font-family-secondary: font-family-primary,spinner-basic-background-color: red,),default-ltr,default );