I'm trying to change the color of the ActionBar from the default dark grey to a different color. I used the suggestion from @inclement from a related question here. Here is my code:
ActionBar:
background_normal: 'white_background.png'
background_down: 'white_background.png'
background_color: [51, 102, 255, .5]
The white_background.png
is a 8px * 8px white png image.
Doing this changes the ActionBar's background color from dark grey to light grey (not the color I was expecting). I'm guessing this is due to the behavior that @inclement alluded to regarding the background_color
having a tinting effect rather than a block color replacement.
As recommended by @AronBordin, I also tried setting the background_normal
and background_down
to empty strings, but this does not override the tinting behavior.
What is the correct way to replace the background color of the ActionBar?