YASAN
04/14/2021, 7:20 PMprivate val DarkColors = darkColors(
primary = Yellow200,
secondary = Blue200,
// ...
)
private val LightColors = lightColors(
primary = Yellow500,
primaryVariant = Yellow400,
secondary = Blue700,
// ...
)
but these can hold like 10 variables, I need my own custom color variables which change depending on the theme. Its super easy to do using XML resources but I am unsure if that's what I should do. Should I just use xml resources for this? or is there a way to handle those in Compose?Bryan Herbst
04/14/2021, 7:29 PMYASAN
04/14/2021, 7:31 PMSlava Glushenkov
04/15/2021, 12:10 PM