Home
Documentation
Resources
Certifications
Community

Resources

Check for updates on our solutions and system performance, or request technical support.

Community

Get the latest news, ask others for help and share your knowledge.

Change color style - User interface - Mercado Pago Developers

Intelligent search powered by OpenAI 

Change color style

Checkout Pro allows you to customize the color style of your interface elements, customizing the way it will be displayed to the user.

Among the color customizations it is possible to customize the color of the header and checkout elements such as buttons, data fields, borders, transition elements and text.

Important
The customization of colors and elements is valid only for the modal opening scheme. In addition, the color attributes must be in hexadecimal format, for example, #ff0000.

To enable color style editing on the checkout and its elements, add the theme object and the elementsColor and headerColor attribute with the color you want to apply, launch options as shown below.

          
mp.bricks().create("wallet", "wallet_container", {
   initialization: {
       preferenceId: "<PREFERENCE_ID>",
   },
   customization: {
       checkout: {
           theme: {
               elementsColor: "#4287F5",
               headerColor: "#4287F5",
           },
       },
   },
});

        
          
const customization = {
 checkout: {
   theme: {
     elementsColor: '#4287F5',
     headerColor: '#4287F5'
   },
 },
};


<Wallet
  initialization={{ preferenceId: '<PREFERENCE_ID>'}}
  customization={customization}
/>