In the Declarative Rendering section of README.md it seems to be using lit-html syntax rather than how we use properties in LitElement where we'd need to specify the 'this' keyword?
So rather than:
attribute: html<div class="${color} special"></div>
we should have
attribute: html<div class="${**this**.color} special"></div>