Mollie Payments

Mollie Payments

Payments designed for growth
Visit
Mollie Payments

Marketing Pages

4
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available
Abstract geometric logo composed of four colorful rounded shapes in red, pink, purple, blue, and green arranged in a stylized 'F'.
Figmaย fileย available

๐Ÿ”’ Get SaaSFrame Pro to see 1 more marketing pages from Mollie Payments

Product Interfaces

0
No items found.
No items found.

๐Ÿ”’ Get SaaSFrame Pro to see 3 more product intefaces from Mollie Payments

Emails

0
No items found.
No items found.

๐Ÿ”’ Get SaaSFrame Pro to see 3 more emails from Mollie Payments

No items found.
No items found.

Stack

Mollie's marketing site (mollie.com) is built on Framer (generator tag: Framer 375af7e). The product dashboard and design system (Mollie UI) is a separate cross-platform system delivered via Figma (design) and Storybook (code). No custom framework or build toolchain is exposed on the public site.

Typography

Three typefaces form the type system:

  • Inter โ€” primary UI and marketing sans-serif. Used for all headings, body copy, navigation, and UI labels across both the marketing site and the product dashboard.
  • Fragment Mono โ€” monospaced accent face used for data displays, code snippets, and numeric readouts (e.g. transaction amounts, dashboard figures).
  • IBM Plex Mono โ€” secondary monospaced face, used alongside Fragment Mono in developer-facing and code contexts.

The type scale follows a clear hierarchy: large display headings (~56โ€“72px) for hero sections, H2 section titles (~32โ€“40px), H3 subsection headers (~22โ€“28px), body text (~16โ€“18px), small labels and captions (~12โ€“14px). Line heights are generous (~1.4โ€“1.6) to support multilingual content across 25+ European languages.

Color Philosophy

Mollie uses a high-contrast, minimal palette anchored in black, white, and a signature electric blue. The current logo and primary brand color is #0092FF (Copper Sulphate blue), supported by pure black (#000000) and white (#FFFFFF). Historical brand references include coral red (#EC4534) and muted steel blue (#C6D6DF), which may still appear in legacy materials. The philosophy emphasises trust and clarity for a fintech audience: a dominant neutral base (dark/light backgrounds) with the blue used sparingly as an action and accent color. Both light and dark themes are fully supported in Mollie UI with per-theme token libraries.

Spacing

Spacing is token-driven with a renamed scale (the naming convention was revised during Mollie UI development). The system uses a base-4 or base-8 grid. Common spacing values inferred from the Framer layout and component matrix: 4px, 8px, 12px, 16px, 24px, 32px, 48px, 64px, 80px, 96px. Section padding on the marketing site is large (64โ€“96px vertical), reflecting the editorial Framer aesthetic.

Component Defaults

Mollie UI shipped 46 components at v1, covering inputs, buttons, pills, tables, toasts, segment controls, checkboxes, radios, and detail lists. All components follow a strict definition of done:

  • States: Default, Hover, Keyboard focus, Active, Pressed, Disabled
  • Themes: Light and Dark
  • Screen sizes: Large (desktop/web) and Small (mobile/touch)
  • Input methods: Mouse, Keyboard, Touch
  • Accessibility: WCAG 2.1 Level AA compliant
  • Availability: Figma (design) + Storybook (code)

Buttons use clear visual hierarchy: primary (filled, brand blue), secondary (outlined), and ghost/text variants. Border radius is moderate and consistent across interactive elements.

Layout

The marketing site uses a full-width editorial layout typical of Framer sites: wide hero sections, constrained content columns (max ~1200px), generous vertical rhythm, and sticky navigation. The product dashboard uses a sidebar + content area layout with left-rail navigation (Home, Notifications, Products, Sales, Payment Links, POS, Business Accounts, Cards, Invoicing, Capital, Reports, Acceptance & Risk, Connect, Help, Developers). Responsive breakpoints adapt to mobile with collapsed navigation. Grid is 12-column on desktop, collapsing to single-column on mobile.

/\* ============================================================
   Mollie Design System โ€” CSS Custom Properties
   Derived from: mollie.com (Framer), Mollie UI design system,
   brand color sources, and official documentation.
   Confidence: HIGH for colors/fonts; MEDIUM for spacing/radius
   (inferred from visual analysis; no public :root exposed)
   ============================================================ \*/

:root {
  /_ --- Brand Colors --- _/
  --color-brand-blue:        #0092FF;   /_ Primary brand / Copper Sulphate _/
  --color-brand-blue-dark:   #006FCC;   /_ Hover / pressed state _/
  --color-brand-blue-light:  #CCE8FF;   /_ Tint / background accent _/
  --color-brand-black:       #000000;   /_ Logo black _/
  --color-brand-white:       #FFFFFF;   /_ Pure white _/

  /_ --- Legacy / Secondary Brand --- _/
  --color-legacy-coral:      #EC4534;   /_ Former primary red-coral _/
  --color-legacy-steel:      #C6D6DF;   /_ Former light blue-grey _/

  /_ --- Semantic: Light Theme (default) --- _/
  --color-background:        #FFFFFF;
  --color-background-subtle: #F5F6F8;   /_ Subtle section backgrounds _/
  --color-background-muted:  #EAECF0;
  --color-surface:           #FFFFFF;
  --color-surface-raised:    #F9FAFB;
  --color-border:            #DDE1E7;
  --color-border-focus:      #0092FF;

  /_ --- Text --- _/
  --color-text-primary:      #0A0B0D;   /_ Near-black for body _/
  --color-text-secondary:    #4A5568;   /_ Secondary / muted labels _/
  --color-text-tertiary:     #718096;   /_ Placeholders, captions _/
  --color-text-on-brand:     #FFFFFF;   /_ Text on blue backgrounds _/
  --color-text-disabled:     #A0AEC0;

  /_ --- State Colors --- _/
  --color-success:           #16A34A;
  --color-success-bg:        #DCFCE7;
  --color-warning:           #D97706;
  --color-warning-bg:        #FEF3C7;
  --color-error:             #DC2626;
  --color-error-bg:          #FEE2E2;
  --color-info:              #0092FF;
  --color-info-bg:           #CCE8FF;

  /_ --- Typography --- _/
  --font-family-sans:        'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-family-mono:        'Fragment Mono', 'IBM Plex Mono', 'Fira Code', monospace;

  --font-size-xs:            12px;
  --font-size-sm:            14px;
  --font-size-base:          16px;
  --font-size-lg:            18px;
  --font-size-xl:            22px;
  --font-size-2xl:           28px;
  --font-size-3xl:           36px;
  --font-size-4xl:           48px;
  --font-size-5xl:           64px;

  --font-weight-regular:     400;
  --font-weight-medium:      500;
  --font-weight-semibold:    600;
  --font-weight-bold:        700;

  --line-height-tight:       1.2;
  --line-height-snug:        1.35;
  --line-height-normal:      1.5;
  --line-height-relaxed:     1.625;

  --letter-spacing-tight:    -0.02em;
  --letter-spacing-normal:   0em;
  --letter-spacing-wide:     0.02em;
  --letter-spacing-wider:    0.05em;

  /_ --- Spacing (base-8 scale) --- _/
  --space-0:    0px;
  --space-1:    4px;
  --space-2:    8px;
  --space-3:    12px;
  --space-4:    16px;
  --space-5:    20px;
  --space-6:    24px;
  --space-8:    32px;
  --space-10:   40px;
  --space-12:   48px;
  --space-16:   64px;
  --space-20:   80px;
  --space-24:   96px;
  --space-32:   128px;

  /_ --- Border Radius --- _/
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   12px;
  --radius-xl:   16px;
  --radius-2xl:  24px;
  --radius-full: 9999px;   /_ Pills, badges, avatar rings _/

  /_ --- Shadows --- _/
  --shadow-xs:  0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-sm:  0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 2px -1px rgba(0, 0, 0, 0.10);
  --shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.10), 0 2px 4px -2px rgba(0, 0, 0, 0.10);
  --shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.10), 0 4px 6px -4px rgba(0, 0, 0, 0.10);
  --shadow-xl:  0 20px 25px -5px rgba(0, 0, 0, 0.10), 0 8px 10px -6px rgba(0, 0, 0, 0.10);

  /_ --- Z-Index Scale --- _/
  --z-base:     0;
  --z-raised:   10;
  --z-dropdown: 100;
  --z-sticky:   200;
  --z-modal:    300;
  --z-toast:    400;
  --z-tooltip:  500;

  /_ --- Transitions --- _/
  --duration-fast:   100ms;
  --duration-normal: 200ms;
  --duration-slow:   300ms;
  --easing-default:  cubic-bezier(0.4, 0, 0.2, 1);
  --easing-in:       cubic-bezier(0.4, 0, 1, 1);
  --easing-out:      cubic-bezier(0, 0, 0.2, 1);

  /_ --- Layout --- _/
  --max-width-content: 1200px;
  --max-width-narrow:  720px;
  --max-width-wide:    1440px;
  --sidebar-width:     240px;
}

/\* ============================================================
   Dark Mode Overrides
   Mollie UI explicitly ships dark theme token libraries
   ============================================================ \*/
@media (prefers-color-scheme: dark) {
  :root {
    --color-background:        #0A0B0D;
    --color-background-subtle: #111318;
    --color-background-muted:  #1A1D24;
    --color-surface:           #111318;
    --color-surface-raised:    #1A1D24;
    --color-border:            #2D3240;
    --color-border-focus:      #0092FF;

    --color-text-primary:      #F0F2F5;
    --color-text-secondary:    #9AA5B4;
    --color-text-tertiary:     #6B7A8D;
    --color-text-disabled:     #4A5568;

    --color-success-bg:        #052E16;
    --color-warning-bg:        #1A1200;
    --color-error-bg:          #1A0000;
    --color-info-bg:           #001F3D;

    --shadow-xs:  0 1px 2px 0 rgba(0, 0, 0, 0.40);
    --shadow-sm:  0 1px 3px 0 rgba(0, 0, 0, 0.50), 0 1px 2px -1px rgba(0, 0, 0, 0.40);
    --shadow-md:  0 4px 6px -1px rgba(0, 0, 0, 0.50), 0 2px 4px -2px rgba(0, 0, 0, 0.40);
    --shadow-lg:  0 10px 15px -3px rgba(0, 0, 0, 0.50), 0 4px 6px -4px rgba(0, 0, 0, 0.40);
  }
}

/_ Explicit dark class override (Mollie UI theme switching) _/
[data-theme="dark"] {
  --color-background:        #0A0B0D;
  --color-background-subtle: #111318;
  --color-surface:           #111318;
  --color-surface-raised:    #1A1D24;
  --color-border:            #2D3240;
  --color-text-primary:      #F0F2F5;
  --color-text-secondary:    #9AA5B4;
}

Color Tokens

TokenValueUsage
color.brand.blue#0092FFPrimary CTA buttons, links, focus rings, brand accent
color.brand.blue.dark#006FCCHover/pressed state for primary actions
color.brand.blue.light#CCE8FFInfo backgrounds, badge fills, tinted surfaces
color.brand.black#000000Logo, high-emphasis text on light backgrounds
color.brand.white#FFFFFFPage backgrounds, text on dark/brand surfaces
color.text.primary#0A0B0DBody copy, headings (light mode)
color.text.secondary#4A5568Labels, meta information, secondary copy
color.text.tertiary#718096Placeholders, captions, disabled text hints
color.background.default#FFFFFFPrimary page/panel background
color.background.subtle#F5F6F8Alternating rows, section backgrounds
color.border.default#DDE1E7Input borders, dividers, card outlines
color.success#16A34ASuccess states, "Paid" status badges
color.error#DC2626Validation errors, failed payment indicators
color.warning#D97706Warning alerts, pending states
color.legacy.coral#EC4534Legacy brand red (historical only, avoid in new UI)

Spacing Tokens

TokenValueUsage
space.14pxInline icon gaps, tight internal padding
space.28pxChip/badge padding, small component gaps
space.312pxInput padding (vertical), compact list rows
space.416pxDefault component padding, card padding (sm)
space.624pxCard padding (md), section internal gaps
space.832pxCard padding (lg), between-component gaps
space.1248pxSection top/bottom padding (compact)
space.1664pxSection padding (standard), hero content gap
space.2080pxLarge section separation
space.2496pxMarketing hero vertical padding

Typography Tokens

TokenValueUsage
font.family.sansInter, system-ui, sans-serifAll UI text, headings, body copy, nav
font.family.monoFragment Mono, IBM Plex Mono, monospaceAmounts, transaction IDs, code snippets
font.size.xs12pxCaptions, legal fine print, badge text
font.size.sm14pxSecondary labels, table data, helper text
font.size.base16pxPrimary body copy
font.size.lg18pxLead text, intro paragraphs
font.size.xl22pxH3 / subsection headings
font.size.2xl28pxH2 / section headings
font.size.4xl48pxH1 / page titles
font.size.5xl64pxHero display headings
font.weight.regular400Body text
font.weight.medium500Nav items, secondary labels
font.weight.semibold600Subheadings, button labels
font.weight.bold700H1/H2 headings, emphasis
line-height.normal1.5Body paragraphs
line-height.tight1.2Display/hero headings

Border Radius Tokens

TokenValueUsage
radius.sm4pxInline tags, small badges, input fields
radius.md8pxButtons, dropdowns, form elements
radius.lg12pxCards, panels, modals
radius.xl16pxLarge cards, promotional blocks
radius.2xl24pxFeature cards on marketing site
radius.full9999pxPills, avatar rings, status dots, chip badges

Shadow Tokens

TokenValueUsage
shadow.xs0 1px 2px rgba(0,0,0,0.05)Subtle lift on inputs, inline badges
shadow.sm0 1px 3px rgba(0,0,0,0.1), 0 1px 2px -1px rgba(0,0,0,0.1)Cards at rest, dropdowns
shadow.md0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -2px rgba(0,0,0,0.1)Hovered cards, popovers
shadow.lg0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1)Modals, drawers, focused panels
shadow.xl0 20px 25px -5px rgba(0,0,0,0.1), 0 8px 10px -6px rgba(0,0,0,0.1)Floating action sheets, tooltips

Framework & Tooling: The mollie.com marketing site is built with Framer (confirmed via meta-generator: Framer 375af7e), which means all layout, animation, and component composition is managed within Framer's visual editor. The product UI (dashboard, checkout components) is a separate system called Mollie UI โ€” a cross-platform design system with delivery in Figma and Storybook. No public npm package or open-source repo for Mollie UI has been identified.

Theme Support: Mollie UI explicitly supports light and dark themes, with token libraries separated by theme in Figma. All 46 components at v1 are verified across both themes. Theme switching is attribute-based (data-theme) in the product, with prefers-color-scheme as the OS-level fallback.

Data Confidence:

  • HIGH โ€” Typography (Inter, Fragment Mono, IBM Plex Mono): confirmed via multiple sources including web search, Mollie team publication on Medium, and visual inspection of the site.
  • HIGH โ€” Framework (Framer): confirmed from meta-generator tag in the page HTML.
  • HIGH โ€” Primary brand blue #0092FF: confirmed from SchemeColor logo palette extraction.
  • HIGH โ€” Design system structure (46 components, Figma + Storybook, light/dark, WCAG 2.1 AA): confirmed from Mollie's own Medium publication by their Design Systems lead.
  • MEDIUM โ€” Exact spacing scale, border radius values, shadow values: inferred from visual analysis of the Framer-rendered site and common design system conventions. No public token file was available.
  • LOW โ€” Exact dark mode hex values for background/surface tokens: derived from visual estimation; Mollie has not published their internal token spec publicly.

Notable Patterns:

  • Dual-system architecture: Marketing (Framer, editorial) and product (Mollie UI, component-driven) are maintained as separate systems with shared brand tokens but different toolchains.
  • Monospaced numerics: Financial data (balances, transaction amounts, chart axes) consistently uses monospaced type (Fragment Mono) for tabular alignment and readability at-a-glance.
  • Motion & brand shapes: Mollie's motion design concept uses two primary geometric shapes โ€” a circle and a square โ€” that converge dynamically to express transparency and simplification. This shape language appears in UI illustrations and marketing animations.
  • Accessibility-first: Every Mollie UI component is built to WCAG 2.1 Level AA. Color contrast ratios, keyboard navigation, and focus states are part of the definition of done.
  • Status color semantics: Payment statuses (Paid, Pending, Failed) are colour-coded with semantic green/amber/red tokens, prominent in dashboard tables and transaction lists.
  • Multilingual by design: With 25+ language variants, the type system and layout use generous line heights and flexible containers to accommodate text expansion in languages like German and Polish.
  • Storybook as source of truth: Component implementation is validated in Storybook before release. The final review phase requires all stakeholders to test implemented components directly in Storybook.

Monthly

$14 /month

Billed $14 monthly
Browse all screens & flows
Filter and search screens & flows
Bookmark items
Access Figma files
Access mobile versions
Join now

Quarterly

$12 /month

Billed $36 quarterly
Browse all screens & flows
Filter and search screens & flows
Bookmark items
Access Figma files
Access mobile versions
Join now

Yearly

$10 /month

Billed $120 yearly
Browse all screens & flows
Filter and search screens & flows
Bookmark items
Access Figma files
Access mobile versions
Join now

Ask For A Quote

For teams with specific billing and compliance needs
Get A Quote
Pay by invoice
Multi-annual billing
Compliance process
No automatic renewal

Biggest SaaS library.

Browse website pages, product interfaces and emails from a growing library of hundreds of SaaS.
Abstract red geometric shape with diagonal lines forming a diamond on a black background.Black and white 3D cube with a bold letter N on the front face, representing the Notion app logo.White lowercase 'fs' letters on a pink and orange gradient background.White uppercase letter S on a blue and purple gradient background.A purple icon consisting of two vertically overlapping circles on a light lavender background.White circle with three diagonal white stripes in lower left corner on a gradient blue background.

Desktop & mobile versions.

Switch from desktop to mobile versions to see how the best designers make websites responsive.
Attio website homepage with navigation links, headline 'Customer relationship magic,' a CRM dashboard screenshot, call-to-action buttons, and logos of companies like CocaCola, OpenAI, and Pallet.Attio homepage showing the tagline 'Customer relationship magic' with a description about flexible, data-driven CRM, buttons for 'Start for free' and 'Talk to sales', and a screenshot of a sales pipeline interface with a play button.

Access the Figma files.

You like a design? Download the Figma file of any website page you see on SaaSFrame.

Advanced filtering.

Use filters to find the design or copywriting inspiration that you need in seconds.
Thank you! Your submission has been received!
Oops! Something went wrong while submitting the form.

Let it flow.

Discover the user journey of the best SaaS with interfaces organized in flows.
Mercury banking dashboard showing account balances, recent transactions, and a menu for moving money with options to pay, add funds, request payment, or transfer between accounts.
Payment interface showing recipient selection with options to add or invite a recipient and a list of recently paid recipients including Jason Green (Contractor) and Aliyah McMahon (Vendor).
Payment method selection screen for 'Payment to Jason Green' showing options ACH, Check, Wire, and selected International Wire with details and navigation buttons.
International wire payment interface showing $120 USD to Jason Green with options to send wire as SHA for free or OUR for $15, sending from Ops/Payroll account with balance $1,374,471.14, with navigation buttons Go Back and Next.
Confirmation screen showing a recurring international wire payment setup to pay $120 monthly to Jason Green on the 27th, with dates for April 27, May 26 noting May 27 is a weekend, and June 27, no end date, and buttons to view payments or make another payment.
Mercury banking dashboard showing account balances, recent transactions, and a menu for moving money with options to pay, add funds, request payment, or transfer between accounts.

Save design inspirations.

Bookmark screens and flows so you can find them any time you need it.
โŒ˜
B
BOOKMARK DESIGN
Start your design
research
Web form titled 'Create a new order' for selecting journey type, origin, destination, departure and return dates, passengers, and class with a 'Find available flights' button.Three software interface screenshots: Surfe CRM LinkedIn integration, Linear product management tool, and Mercury banking dashboard.Three side-by-side website screenshots showing a login page for Copperx, a team collaboration platform with bright yellow background, and an AI-powered developer platform with space-themed graphics.Three website screenshots showing a design tool and distribution dashboard for design tokens, promoting ease and automation.Three side-by-side website screenshots showing a login page for Copperx, a team collaboration platform with bright yellow background, and an AI-powered developer platform with space-themed graphics.

How do you process payment?

SaaSFrame subscriptions are sold on Lemon Squeezy, a secured online selling platform for creators.

What about future updates and versions?

SaaSFrame gets updated all the time! Every new update and version will immediately be made available to all SaaSFrame users.

Can you send me an invoice?

You can generate an invoice on your Lemon Squeezy portal once you purchased SaaSFrame. You will find the link in the order confirmation email.

How can I cancel my membership subscription?

You can cancel your membership subscription at any moment on your profile page.โ€

Can I get a refund?

If you're not satisfied, you can ask for a refund within 7 days. Just send me an email at antoine[at]unmake[dot]io

I have another question.

You can send me an email at antoine[at]unmake[dot]io, I'll be happy to help with any questions.