color[3] value ignored
See original GitHub issueThe alpha channel isn’t respected as it should
This label should be gray, but is bright white:
#!/usr/bin/env python2
# -*- coding: utf-8 -*-
from kivy.app import App
from kivy.lang import Builder
x = Builder.load_string('''
Label:
text: 'test'
color: 1, 1, 1, .3
''')
class Test(App):
def build(self):
return x
Test().run()
Issue Analytics
- State:
- Created 7 years ago
- Comments:18 (10 by maintainers)
Top Results From Across the Web
Changing Color3 through Color3Value not working
I've been trying to add a part to my script where it changes the color of an image gui to a color3 value...
Read more >Setting a Color3 value from a BrickColor value not working ...
In my game, I have a colorizer with a ton of colors that set everything in your "Base" to that color. I want...
Read more >Roblox Lua - Color3 expected, got string - Stack Overflow
My error code was Color3 expected, got string , is there anything I can fix this? My goal was simple, randomizing a specific...
Read more >Color3 Struct | Stride
public Color3(Vector3 value) ... The alpha component is ignored. ... The values to assign to the red, green, and blue components of the...
Read more >CSS Color Module Level 3 - W3C
This specification describes color values and properties for foreground color and group opacity. These include properties and values from ...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
We need to fix these issues till we officially do deprecate it.
This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.