Theming
Buglife uses 4 colors that are automatically derived from your application's theme.
If you'd like to customize the colors used by the Buglife bug reporter UI without changing your app's theme colors, you can do so using the following color attributes:
Attribute | Effect |
---|---|
buglifeColorPrimary | Background color |
buglifeColorPrimaryDark | Status bar color |
buglifeColorAccent | Annotation button color |
buglifeTextColorPrimary | Title color |
Example:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<color name="buglifeColorPrimary">#242a33</color>
<color name="buglifeColorPrimaryDark">@android:color/black</color>
<color name="buglifeColorAccent">#00d9c7</color>
<color name="buglifeTextColorPrimary">@android:color/white</color>
</resources>