How to change the color of a Text?

export function input21_change ( event ) {
history4 = ( Number ( $w ( “#input20” ). value ))-( Number ( $w ( “#input21” ). value ));
$w ( “#text33” ). text = history4 . toString ();
if ( history4 === 0 ) {
$w ( “#text33” ). html = <p style = "color: red"> ${ $w ( "#text33" ). text } </p> ;
}
console . log ( “history4” );
}

I just need the color to change… not all the properties.