Resources
Our resource centre makes it easy to grab all of our assets you might need.

Logos (CMYK)
CMYK logo for use in four colour process print.

Logos (Pantone)
Pantone logo for use in single colour pantone ink print.

Logos (RGB)
RGB logo for use on screen and the web.

Brand Guidelines
Our branding document ensures consistency in the portrayal of our brand in your own projects.

Lexend Deca Font (TTF)
Lexend Deca font in .ttf format for use in offline design software. You should use Google's API to import to web projects (see below).

Responsive Website Design Whitepaper
Is your business missing out on opportunities because your website doesn't work on a mobile phone or tablet? This whitepaper is everything you need to know.
How to import Lexend Deca in to your web environment
HTML Import
To include the font in your HTML add this code inside your head tags:
<link href="https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap" rel="stylesheet">
CSS Import
If you want to include the font in your CSS use the following but ensure it is the first thing you declare in your CSS file:
@import url('https://fonts.googleapis.com/css2?family=Lexend+Deca&display=swap');
Drupal 8
In Drupal 8 themes you can now include external fonts in your libraries.yml by adding the following to bottom of the file:
fonts:
css:
theme:
//fonts.googleapis.com/css2?family=Lexend+Deca&display=swap: { type: external }
Usage
To call the font in your CSS use:
font-family: 'Lexend Deca', sans-serif;