python - Kivy: Change background color of ActionBar -
i'm trying change color of actionbar default dark grey different color. used suggestion @inclement related question here. here code:
actionbar: background_normal: 'white_background.png' background_down: 'white_background.png' background_color: [51, 102, 255, .5]
the white_background.png
8px * 8px white png image.
doing changes actionbar's background color dark grey light grey (not color expecting). i'm guessing due behavior @inclement alluded regarding background_color
having tinting effect rather block color replacement.
as recommended @aronbordin, tried setting background_normal
, background_down
empty strings, not override tinting behavior.
what correct way replace background color of actionbar?
you have set background_image pure white image first. correct implementation is:
background_image: 'white-bg.png' background_color: .3,.3,.3,1
Comments
Post a Comment