So I want to create an app with different colored backgrounds, and the text color should be either white or black, I want to invert it, but how?
For colors use the color blocks
If TextColor = white
Then set TextColor to black
Else set TextColor to white
Taifun
But I want to invert the color according to the background color, for example if yellow means the text color is black, if blue means white and other colors.
Put your background colors into a list, which should get a black text color
If background color is in list myList
Then set TextColor to black
Else set TextColor to white
Taifun
Thanks!It helped me!
1 Like