jaredrummler / Cyanea

A theme engine for Android
Apache License 2.0
1.45k stars 144 forks source link

Ability to modify custom attributes #53

Open puregallery opened 5 years ago

puregallery commented 5 years ago

I have a few custom attributes in my app to handle some colors...Is support for this possible?

GilangJS commented 5 years ago

Need info on this too

manueldidonna commented 5 years ago

Me too

pchupik commented 5 years ago

Is there a way to add more colors, when those below are not enough?

dphans commented 4 years ago

Me too, for example: I need to custom border color for dark/light theme. With new dark mode, I can do it with:

value/colors.xml

<color name="colorBorder">#EBEEF5</color>

value-night/colors.xml

<color name="colorBorder">#303133</color>

So I can use @color/colorBorder preference and it will switch automatically when user enter dark theme. How can I do with this library?