Welcome to the family!

Two. Merchant Tool Kit

Effectively communicating with your buyers about purchasing with Two will increase your orders. You'll find marketing resources on this page to promote your new B2B payment solution and boost sales.

You have just launched with Two.

Newsletter

Below is a text you can use for your merchants’ newsletters. NB: The X has to be replaced with the net terms offered.

Success Story

Turn your successful partnership into a compelling blog story to engage your audience and inspire action.

Social Media post

Everyone's on social media these days! Why not post a piece of content highlighting this new exciting partnership? Let's coordinate a time to post together.

Emails

Introduce Two to your buyers, and follow up if they haven't tried us out yet! 

Logo

Logo variants and usage.

Our Logo is ideal to be used below top module on website or in newsletters. Thumbnails can be used in your footer next to other payment methods.

Not sure where to place it? 
Download our Website Brand Placement Guide
Try out banner resizing.
Banners

We have made easy to use HTML banners.

This banner can be copied as it is, it scales down based on screen size and will convey the message without stealing all the attention.

HTML 

<div class="two-banner">
  <div class="two-banner-content">
    <div class="two-logo">
      <svg xmlns="http://www.w3.org/2000/svg" width="auto" height="100%" viewBox="0 0 212.352 69.842">
        <g transform="translate(-6280.148 -3617.579)">
          <path d="M490,33.576V16h14.424V33.576H516.2V45.614H504.424V64.939c0,5.168,2.291,7.319,7.763,7.319h6.545V84.85h-9.227C495.668,84.85,490,78.7,490,66.985Z" transform="translate(5790.148 3601.579)" fill="currentColor"/>
          <path d="M520.265,73.048,502.953,22.3h14.725l11.144,35.818L542.732,22.3h15.027l13.826,35.818L582.728,22.3h14.831L580.242,73.048H564.247L550.215,37.223,536.309,73.048Z" transform="translate(5813.382 3612.871)" fill="currentColor"/>
          <path d="M545.951,67.865A26.017,26.017,0,0,1,538.187,48.6a25.857,25.857,0,0,1,7.666-19.133c5.079-5.072,12.138-7.712,20.893-7.712s15.823,2.536,20.894,7.616a26.277,26.277,0,0,1,7.766,19.261A25.949,25.949,0,0,1,587.64,67.9c-5.168,5.112-12.041,7.616-20.894,7.616C558.092,75.481,551.119,72.937,545.951,67.865Zm20.8-4.855c4.476,0,8.059-1.372,10.635-4.013a14.294,14.294,0,0,0,3.886-10.345,14.246,14.246,0,0,0-3.886-10.345c-2.584-2.632-6.169-4.013-10.635-4.013s-8.059,1.364-10.636,4.013a14.291,14.291,0,0,0-3.877,10.345A14.23,14.23,0,0,0,556.111,59C558.7,61.629,562.271,63.009,566.747,63.009Z" transform="translate(5876.581 3611.908)" fill="currentColor"/>
          <ellipse cx="8.257" cy="8.148" rx="8.257" ry="8.148" transform="translate(6475.986 3671.125)" fill="#fbce49"/>
        </g>
      </svg>
    </div>
    <span class="two-message">Buy now, pay later with Two<span class="two-dot">.</span></span>
    <a href="https://www.two.inc/resources/buyers" class="two-button">Learn more</a>
  </div>
</div>

CSS 

/* Colour variables */
:root {
  --two-color-text: #fafafa;
  --two-color-banner-bg: #1e1e6c;
  --two-color-button-text: #1e1e6c;
  --two-color-button-bg: #f0f4ff;
  --two-color-button-hover-bg: #fafafa;
}

/* Banner CSS */
.two-banner {
  background-color: var(--two-color-banner-bg); 
  color: var(--two-color-text);
  padding: 10px 20px; 
}

.two-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.two-message {
  font-size: 1.2rem;
  font-weight: 500;
}

.two-dot {
  color: #fbce49; 
}

.two-button {
  background-color: var(--two-color-button-bg); 
  color: var(--two-color-button-text); 
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.two-button:hover {
  background-color: var(--two-color-button-hover-bg);
}

.two-logo svg {
  height: 1.5rem;
  width: auto; 
  color: var(--two-color-text);
}

/* Tablet styles */
@media (max-width: 991px) {
  .two-message {
    font-size: 1.1rem; 
  }
  .two-logo svg {
    height: 1.4rem;
  }
}

/* Mobile landscape styles */
@media (max-width: 767px) {
  .two-message {
    font-size: 1rem; 
  }
  
  .two-logo svg {
    height: 1.2rem;
  }

  .two-button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* Mobile portrait styles */
@media (max-width: 478px) {
  .two-logo {
    display: none; 
  }

  .two-banner-content {
    justify-content: space-between; 
  }

  .two-message {
    font-size: 0.9rem; 
  }

  .two-button {
    background: none;
    color: var(--two-color-button-bg);
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
    font-size: 0.9rem;
  }

  .two-button:hover {
    background-color: transparent;
    text-decoration: underline;
  }
}
/* Colour variables */
:root {
  --two-color-text: #1d1f5b;
  --two-color-banner-bg: #f1f3fe;
  --two-color-button-text:  #f1f3fe;
  --two-color-button-bg: #1d1f5b;
  --two-color-button-hover-bg: #091030;
}

/* Banner CSS */
.two-banner {
  background-color: var(--two-color-banner-bg); 
  color: var(--two-color-text);
  padding: 10px 20px; 
}

.two-banner-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.two-message {
  font-size: 1.2rem;
  font-weight: 500;
}

.two-dot {
  color: #fbce49; 
}

.two-button {
  background-color: var(--two-color-button-bg); 
  color: var(--two-color-button-text); 
  padding: 8px 16px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.3s ease;
}

.two-button:hover {
  background-color: var(--two-color-button-hover-bg);
}

.two-logo svg {
  height: 1.5rem;
  width: auto; 
  color: var(--two-color-text);
}

/* Tablet styles */
@media (max-width: 991px) {
  .two-message {
    font-size: 1.1rem; 
  }
  .two-logo svg {
    height: 1.4rem;
  }
}

/* Mobile landscape styles */
@media (max-width: 767px) {
  .two-message {
    font-size: 1rem; 
  }
  
  .two-logo svg {
    height: 1.2rem;
  }

  .two-button {
    font-size: 0.9rem;
    padding: 6px 12px;
  }
}

/* Mobile portrait styles */
@media (max-width: 478px) {
  .two-logo {
    display: none; 
  }

  .two-banner-content {
    justify-content: space-between; 
  }

  .two-message {
    font-size: 0.9rem; 
  }

  .two-button {
    background: none;
    color: var(--two-color-button-bg);
    padding: 0;
    border-radius: 0;
    text-decoration: underline;
    font-size: 0.9rem;
  }

  .two-button:hover {
    background-color: transparent;
    text-decoration: underline;
  }
}

Buttons.

We use the Aeonik as primary font with Poppins as backup. Since Aeonik is a paid font we recomend to use the free and available Poppins for all buttons.

Text: 16px
Padding: 12px 16px
Radius: 8px
Stroke: 1px

Primary

#444CE7
#3538CD
#3538CD
#C7D7FE

Secondary

#444CE7
#EEF4FF
#EEF4FF
#8098F9
PDF Guides

Short PDF documents that provide key information.

Our Guides provide both you and your buyers' essential insights. Feel free to share! 

See how Two works.

Our demo videos can be useful for sharing with your buyers and getting to know our products yourself. 

Download everything.

Want all the resources from this page? You can find all the listed marketing assets directly in the Google Drive folder below, and download accordingly.