Angular - Animations
Given the Angular animation code below, what will be the final background color after the animation completes?
animate('2s', keyframes([
style({ backgroundColor: 'red', offset: 0 }),
style({ backgroundColor: 'blue', offset: 0.5 }),
style({ backgroundColor: 'green', offset: 1 })
]))