Theming Your App
Customizing the app will be a cakewalk for you. This is due to the fact that we have provided you with a well prepared code base. This makes it quite easy to dig through the code and hence customize without problems.
- The theme has categorized its screens into different sections.
- The theme has a separate file inclusive of color schemes for different sections.
- The theme strictly follows programming ethics, hence modifying logo at different locations for your app becomes very simple.
- The theme also allows you to customize name for your app.
Change Components Color
- Customizing the color of the app is an easy task. Just go to
src/components/variable.css
.In the file there is field called brand primary. Changing the paramenter of this field will change the color of your components - If you want to change color of a specific component then each of its component has its own .css file which can be changed to change the color of a specfic component.
Change App Icon
- To change the app icon you just need to go to
src/common/images
and put the icon you want in the folder. Your app icon will be changed.