@ממ אם זה מאפיין ייחודי לכל אות, אפשר להכניס את זה למבנה הנתונים, כך:
chars = [
{
char: 'א',
position: 'left',
color: 'red'
},
{
char: 'ב',
position: 'right',
color: 'blue'
},
]
וכך אפשר להחיל את הסטייל מההטמל
<div *ngFor="let char of chars" [style.color]="char.color">{{char.char}}</div>