Ionic2如何设置图像背景颜色?

时间:2017-07-25 04:07:36

标签: background ionic2

enter image description here

这是我的图像,背景颜色是透明的,我不想使用ionic2默认颜色,我想将默认颜色更改为红色,我应该怎么做。

当我关注此enter link description here时 它会像这样显示出来 enter image description here

我想改变整个背景颜色,而不仅仅是图像背景颜色!!!

2 个答案:

答案 0 :(得分:0)

以下是关于主题应用程序的信息:https://ionicframework.com/docs/theming/theming-your-app/ 请注意$ colors地图中的Null checkmark属性...

答案 1 :(得分:0)

variables.scss

中更改或添加默认颜色
$colors: ( primary: #ff0000, secondary: #32db64, danger: #f53d3d, light: #f4f4f4, dark: #222);

对于完整的背景色,试试这个 -

在page.scss中 -

 .masters .scroll-content {
      background-color: color($colors, primary) !important; // or  background-color: red !important;
 }