Colorful icon indicating copy to clipboard operation
Colorful copied to clipboard

Android runtime theme library

Results 9 Colorful issues
Sort by recently updated
recently updated
newest added

i want app and status bar same color but its bot work ` Defaults defaults = new Defaults( ThemeColor.GREEN, ThemeColor.GREEN, false, false, 0); initColorful(this, defaults);` it show status bar different...

As the AndroidX version of AppCompat is stable now, I'd recommend to update.

I followed all the step ofI implement for current version to my kotlin project `implementation 'com.github.garretyoder:Colorful:2.3.4' ` But always failed to build the library.

I have added Colorful library into my app and ActionMode is broken now. Action toolbar appears above the toolbar. Looks like Colorful style doesn't have or ignore my `windowActionModeOverlay`. Library...

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...

Please be aware that this pull request was automatically created using [gtf](https://github.com/schneiderl/gtf) You should be able to merge this with no other problems. In case the proposed changes do not...

I tries build a release build of my app and app crashed while start: ``` Fatal Exception: java.lang.AssertionError: impossible at java.lang.Enum$1.create(Enum.java:272) at java.lang.Enum$1.create(Enum.java:263) at libcore.util.BasicLruCache.get(BasicLruCache.java:58) at java.lang.Enum.getSharedConstants(Enum.java:289) at java.lang.Enum.valueOf(Enum.java:244) at...

@garretyoder I want to use "customTheme", because only in this way can I change `textColorPrimary` color, but now `primaryColor ` and `accentColor ` are not used, this may be misunderstood,...

Resource IDs are not 100% guaranteed to never change and this could potentially cause problems. We should be loading style resources internally by string name over res id int.

enhancement