I want to make the colour of a label dependent on a config file. This way I can easily intervene to adjust the look&feel of the app.
In my config file, I define a certain colour in HEX (e.g. varColor = "#4E4E4E").
In the text label, I do the following:
ColorValue( LookUp(Config, Code=3, varColor) )
Nothing changes. If I put this in "text" (without ColorValue of course) then I get the correct value ("#4E4E4E4E") . If I put this in "Color" then nothing happens.
Am I doing something wrong? Is this not possible?
Or how would you handle this?
Thanks for the feedback