Aesthetic is a theme engine for Android apps I built to solve a common problem: dynamic theming that actually works.
Most Android apps either:
Aesthetic provides:
// Set primary color
Aesthetic.get()
.colorPrimary(Res.color(R.color.md_indigo_500))
.colorAccent(Res.color(R.color.md_pink_500))
.apply()
// Subscribe to theme changes
Aesthetic.get()
.colorPrimary()
.subscribe { color ->
// Update UI
}
Available on GitHub under MIT license.