Customize and style your checkout experience with Checkout.
styles
configuration property with the checkoutFlow
or paymentFlow
methods when initializing Checkout.Checkout supports only the variables mentioned on this page. Any other variable declared will be ignored.
Customize the font family
--font-family
variable within the styles
object. All system fonts are accepted, and the selected font will be used across Checkout.The following example sets the font family to Helvetica.
import { checkoutFlow } from '@commercetools/checkout-browser-sdk';
checkoutFlow({
projectKey: '{projectKey}',
region: '{region}',
sessionId: '{sessionId}',
styles: {
'--font-family': 'Helvetica',
},
});
Customize colors
styles
object.--button
to set the background color of the primary button also affects the appearance of the secondary button and the low-opacity button. The secondary button will use the same color for its display text with a transparent background. The low-opacity button will use the same background color, but has transparency mixed in.Variable | Description |
---|---|
--button | Sets the background color of the primary button. |
--button-text | Sets the text color of the primary button. |
--button-disabled | Sets the background color of the primary button when it's not enabled. |
--button-disabled-text | Sets the text color of buttons when they are not enabled. |
--input-field-focus | Sets the text color in an input field when clicked. |
--checkbox | Sets the color of a selected checkbox. |
--radio | Sets the color of a selected radio button. |
The following example sets the color of checkboxes and radio buttons to red.
import { checkoutFlow } from '@commercetools/checkout-browser-sdk';
checkoutFlow({
projectKey: '{projectKey}',
region: '{region}',
sessionId: '{sessionId}',
styles: {
'--checkbox': '#ff0000',
'--radio': '#ff0000',
},
});
Best practices for accessibility
To be inclusive of individuals with visual limitations and ensure optimal accessibility, we advise to use the right choice of colors with appropriate contrast. Therefore, it is recommended to comply with accessibility standards in terms of color and contrast, and choose the best combination that matches your branding to increase readability. To facilitate this, tools such as color contrast checkers help you evaluate the contrast ratio between two colors.