ColorValue in PowerApps
In PowerApps to update the CSS color using following functions
- Color
- ColorValue
- RGBA
Using Color we have the enumerated values as shown below.
- Color.Red
- Color.Yellow
Using Color Value we can pass the 6 - digit or 8- digit hex values or Color name as shown below.
- ColorValue( "#faebd7" )
- ColorValue( "#54faebd7" )
- ColorValur("Red")
Comments