Theming Fashion App

In environment file, you will see the following variable with JSON objects.

const fashion_app = {
  themeColor:'#3880ff',
  title:'FashionEcommerce',
  subTitle:'Sample fashion ecommerce app',
  ionTitle:'light',
  ionTitleButton:'primary',
  productBox1:'product-box1',
  productBox2:'product-box2',
  homepage:'home/fashion',
  apiurl:'https://projects.planahost.com/ecommerce/fashion/wp-json/wc/v3/',
  consumer_key:'ck_49edfb1164713b9b9b6cfb9270cd76d5d400aa20',
  consumer_secret:'cs_7a648a6a8d32c8c760a3c2ed5f7f40d560b71247',
}
  • themecolor: Use HEX colour for theme of the entire application. E.g.: title, button, footer etc

  • title: Title of your app

  • subTitle: Subtitle of your app, can be your caption.

  • ionTitle: The color to use from your application's color palette. Default options are: "primary", "secondary", "tertiary", "success", "warning", "danger", "light", "medium", and "dark". For more information on colors, see theming.

  • ionTitleButton: Color for button in contrast to Title, you can refer the same documentation as ionTitle.

  • productBox1: Product Box 1 to be displayed in product details page, and home page. We have built in four type of product display. E.g. "product-box1" , "product-box2", "product-box3", "product-box4"

  • productBox2: Product Box 2 to be displayed in product list page, and home page. We have built-in four type of product display. E.g. "product-box1" , "product-box2", "product-box3", "product-box4"

  • homepage: We offer two types of home 'homepage/grocery' or 'homepage/fashion' . However, you are free to make customised one.

Last updated