Using Polymer v1.0
I can't find the proper css to add to change the color of the selected value text.
When I inspect the element, I can change the color value for: .paper-input-container-0 .input-content.paper-input-container label, .paper-input-container-0 .input-content.paper-input-container .paper-input-label
to white, and the text changes. But if I add that to my CSS, nothing changes.
Use custom styles like this:
<style is="custom-style">
:host{
--primary-text-color: blue;
--paper-input-container-label: {
color:orange;
}
}
</style>
default custom style is: --primary-text-color