HomeDocumentationAPI Reference
Getting StartedAPI ReferenceBug ReportingCrash ReportingAPMHelp Center
These docs are for v8.1. Click to read the latest docs for v12.0.0.

Set Primary Color

This API is used to change the color of both the text and icons to match your app color. You can pass to it any color required.

Instabug.tintColor = .lightGray
Instabug.tintColor = UIColor.lightGrayColor;
Instabug.setPrimaryColor(Color.BLUE);
Instabug.setPrimaryColor(processColor('#ff0000'));
//iOS
cordova.plugins.instabug.setPrimaryColor(
    Color.Red,
    function () {
        console.log('Primary color changed.');
    },
    function (error) {
        console.log('Could not change primary color - ' + error);
    }
);

//Android 
//Builder method generated in MyApplication class
new Instabug.Builder(this, "APP_TOKEN")
	.setInvocationEvent(InstabugInvocationEvent.SHAKE)
  .setPrimaryColor(Color.BLUE)
	.build();
//iOS
Instabug.TintColor = UIColor.Red;

//Android
Instabug.PrimaryColor = -7583749;