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.
Luciq.tintColor = .lightGray
//Alternatively, you can pass a color in an RGB format
Luciq.tintColor = .init(red: 0, green: 153/255, blue: 1, alpha: 0)Luciq.tintColor = UIColor.lightGrayColor;Luciq.setPrimaryColor(Color.BLUE);Luciq.setPrimaryColor(Color.BLUE)Luciq.setPrimaryColor('#ff0000');Luciq.setPrimaryColor(Color.blue);