Usign HTML propieties

Let’s say I ahve #Text1 and a database with the field favColor

If favColor = red then set #Text1 color to #FF0000

if (favColor === red) { $w(”#Text1”).style.color = ”#ff0000”; }

should work