I have integrated fabric digits in my app and trying to change its theme. I try using below code but i don't see any change in theme.What am i missing or doing wrong?
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="android:digits">@style/CustomDigitsTheme</item>
</style>
<style name="CustomDigitsTheme" parent="android:Theme.Material.Light" tools:targetApi="lollipop">
<item name="android:textColorPrimary">@color/white</item>
<item name="android:textColorSecondary">@android:color/darker_gray</item>
<item name="android:windowBackground">@color/blue</item>
<item name="android:textColorLink">#ff398622</item>
<item name="android:colorAccent">#ff398622</item>
</style