Skip to main content

Overview

The Checkout Builder is a no-code visual editor in the Yuno Dashboard that lets you customize the appearance of your Full Checkout and Lite Checkout experiences. Changes apply to all SDK integrations without code modifications.
Checkout Builder settings apply as defaults. SDK-level theme configurations passed during initialization will override Checkout Builder settings. See SDK Customization for programmatic theming.

Accessing the Checkout Builder

Navigate to Dashboard > Checkout Builder. The editor displays a live preview on the right and configuration options on the left.

Customization Options

1

Brand Identity

Upload your logo and configure brand elements:
SettingDescriptionFormat
LogoDisplayed at the top of checkoutPNG, SVG (max 200x60px)
FaviconBrowser tab iconICO, PNG (32x32px)
Business NameShown in payment confirmationText
2

Colors

Configure the color palette for checkout elements:
ElementDescription
PrimaryButtons, links, active states
SecondarySecondary actions, borders
BackgroundPage and form background
TextPrimary text color
ErrorValidation errors, decline messages
SuccessConfirmation states
Enter hex color codes or use the color picker.
3

Typography

Select fonts and sizes:
SettingOptions
Font FamilySystem fonts, Google Fonts, or custom
Heading SizeSmall, Medium, Large
Body Size12px - 18px range
Font WeightRegular, Medium, Bold
4

Layout

Configure structural elements:
SettingOptions
Border RadiusSquare (0px) to Rounded (16px)
SpacingCompact, Normal, Spacious
Payment Method DisplayList, Grid, Accordion
Show Payment IconsToggle payment method brand icons
5

Preview and Publish

Review changes in the live preview panel. The preview shows both desktop and mobile layouts.Click Publish to apply changes. Published changes take effect within 2-3 minutes for all active SDK integrations.
Publishing changes affects all environments using this account’s SDK integrations. Test in sandbox before publishing to production.

Dark Mode

Toggle dark mode in the Checkout Builder to see how your checkout appears in dark themes. You can configure separate color schemes for light and dark modes.

Mobile Responsiveness

The checkout UI is automatically responsive. The Checkout Builder preview includes device toggles to verify appearance on:
  • Desktop (1024px+)
  • Tablet (768px - 1023px)
  • Mobile (< 768px)

Reset to Defaults

Click Reset in the Checkout Builder to revert all customizations to Yuno’s default theme. This action requires confirmation and takes effect immediately upon publishing.

Exporting Configuration

Export your Checkout Builder configuration as JSON to use programmatically in SDK initialization:
{
  "theme": {
    "primary": "#0066FF",
    "background": "#FFFFFF",
    "text": "#1F2937",
    "borderRadius": "8px",
    "fontFamily": "Inter, sans-serif"
  }
}
Copy this into your SDK theme configuration for consistent branding across programmatic and Dashboard-managed integrations.