Apply brand color
Using the Sendbird UIKit for Android, you can customize the appearance of your application by applying your brand color to the UIKit components. This feature allows you to align the user interface with your brand's color scheme, ensuring a consistent and visually cohesive experience for users.
Before you start
You'll need to have completed the following set up: Send your first message.
Alternatively, you can use the starter code from this GitHub repository.
The starter code located in the apply-brand-color/before
folder contains the basic setup for the UIKit components.
Once you've completed the set up, your app should look like the image shown below.
How to customize
Step 1 Determine colors to use
We have five colors for primary usage, ranging from primary100
to primary500
.
Use a gradient of colors for a smooth transition in your designs. Primary100 is the lightest color, ideal for backgrounds, while Primary500 is the darkest color, perfect for text and important elements due to its visibility. Primary300 is typically used as the main color due to its balanced intensity.
If you only have one primary color, you can generate variations of this primary color using online tools, which can be found by searching for "color shade generator." This allows you to expand your color palette while maintaining brand consistency.
The following is an example of a color palette that you can use for your application. You can replace the hex codes with your brand colors.
Property name | Hex code | Suggested usage |
---|---|---|
primary_100 | #a8e2ab | Backgrounds (lightest shade) |
primary_200 | #69c085 | Background highlights |
primary_300 | #259c72 | Primary usage (mid-tone shade) |
primary_400 | #027d69 | Secondary elements |
primary_500 | #066858 | Text, important elements (darkest shade) |
Step 2 Modify colors.xml
You can update the res/values/colors.xml
file to include the colors of your brand.
Step 3 Relaunch the App
Congratulations! You have successfully applied your brand color to the UIKit components.
To learn more about UIKit color customization, see UIKit for Android - Customizing Colors.
What's next?
Stay tuned for our next tutorial, where we will guide you through the process of integrating UIKit into your existing app.
Other samples
We have more samples available in our GitHub repository.