Given the following .html
.html
<!-- shared-styles.html -->
<dom-module id="shared-styles">
<template>
<style>
.red { color: red; }
</style>
</template>
</dom-module>
and the .dart src
.dart
@property
String redColor = ...
How can I bind the redColor property to the color attribute in the element of the .html declaration?
Thanks