@HostListener('mouseenter') onMouseEnter() {
this.highlight(this.hight||'red');
}
@HostListener('mouseleave') onMouseLeave() {
this.highlight(null);
}
private highlight(color: string) {
this.el.nativeElement.style.backgroundColor = color;
}