Учти это:
styles.xml
<style name="BlueTheme" parent="@android:style/Theme.Black.NoTitleBar">
<item name="theme_color">@color/theme_color_blue</item>
</style>
attrs.xml
<attr name="theme_color" format="reference" />
color.xml
<color name="theme_color_blue">#ff0071d3</color>
Таким образом, на цвет темы ссылается тема. Как я могу программно получить theme_color (reference)? Обычно я бы использовал, getResources().getColor()
но не в этом случае, потому что на него есть ссылка!