This repository was archived by the owner on Dec 20, 2023. It is now read-only.

Description
I have forced to load an style by calling:
Colorful().edit()
.setPrimaryColor(ThemeColor.RED)
.setAccentColor(ThemeColor.BLUE)
.setDarkTheme(false)
.setTranslucent(false)
.setCustomThemeOverride(R.style.AppThemeDark)
.apply(activity!!) { activity!!.recreate() }
And set a textAppearance in my style:

But nothing seems to take a change in text color of my textviews or buttons.
Is there any guide to how to customize widgets?