The editor reports data-binds as undefined if they reach 3 layers deep e.g.
data-bind-style-background-color="{{one.two.three}}"
The code works as intended in preview, its only the editor reporting an error. The error can be resolved by reorganizing it as follows:
data-bind-style-background-color="{{one}}.two.three"