Deprecated: The color input has been removed from HTML elements. Please add the ion-text attribute in order to use the color input. For example: <a ion-text color="secondary">Link</a>
I was getting this when I had <h2 color="danger">Title</h2>, I changed it to <h2 ion-text color="danger">Title</h2> and it was gone.
I am guessing that the color attribute has been deprecated from some of the HTML elements. So need to add ion-text when you use the color attribute (except for buttons).