更改颜色导航栏 header Ionic 2

Change colour navbar header Ionic 2

我有这个问题...我现在的颜色是白色,我的代码是这样的:

<ion-header >
  <ion-navbar>
    <ion-title>
      HELLO
    </ion-title>
  </ion-navbar>
</ion-header>

使用此选项更改颜色很容易(主要、次要、危险、浅色、深色)

<ion-header >
      <ion-navbar danger>
        <ion-title>
          HELLO
        </ion-title>
      </ion-navbar>
 </ion-header>

但我的问题是当我想使用自定义颜色时。 有人知道我该如何解决? 提前致谢。

此致。

有两种方法可以执行此操作,具体取决于您是只想在单个页面中更改颜色,还是想在应用程序的所有页面中更改颜色:

1) 一次更改page/view

如你所见here

To change the theme, just tweak the $colors map in your src/theme/variables.scss file:

$colors: (
  // ...
  newcolor:    #55acee

)

然后在视图中使用它

 <ion-header>
      <ion-navbar color="newcolor">
        <ion-title>
          HELLO
        </ion-title>
      </ion-navbar>
 </ion-header>

2) 在所有 pages/views

中更改它

在这种情况下,您需要在 variables.scss 文件中添加以下内容以覆盖 Ionic 的默认设置:

$toolbar-ios-background: #55acee;
$toolbar-md-background: #55acee;
$toolbar-wp-background: #55acee;

编辑

Hi, how can I add gradient in app/theme/app.variables.scss?

您可以添加要在 src/theme/variables.scss 中使用的颜色:

$header-first-color: #AAAAAA;
$header-last-color: #000000;

然后设置一个规则来使用它(在你的 app.scss 文件中,如果你想将它应用到每个页面,或者在 page-name.scss 文件中,如果你想将它应用到单个页面页):

ion-header {
    .toolbar-background {
        background: linear-gradient(135deg, $header-first-color 0%, $header-last-color 100%);
    }
}

覆盖 variables.scss 文件中的离子变量可能更好

因此您可以创建自定义颜色变量

 $new-color:#55acee;

然后传入ionic变量

$toolbar-ios-background:($new-color);
$toolbar-md-background($new-color);
$toolbar-wp-background($new-color);

你可以找到所有的离子变量here