We have an issue with ThemeBuilder output and some variables not being used.
For example, we're trying to override the drawer colors. In the generated CSS, the draw item's background color is defined as:
background-color: var(--kendo-drawer-item-bg, var(--kendo-component-bg, initial));
It turns out that --kendo-drawer-item-bg isn't actually defined anywhere in ThemeBuilder or anywhere else, so we added it as a custom variable. Unfortunately, when the CSS is generated, the variable is generated with a tb- prefix and thus isn't picked up by the standard background-color style definition above. Yet it shows in the ThemeBuilder correctly!
How do we go about fixing this issue so that --kendo-drawer-item-bg actually gets set to our custom version in the final CSS?