The Style Guide - The Style Guide - The Style Guide
Typeface
DM Sans

These fonts are licensed under the Open Font License.  You can use them in your products & projects – print or digital, commercial or otherwise.  This isn't legal advice, please consider consulting a lawyer and see the full license for all details.

Primary Color
#14110f
Background Color
#EDF2F4
Secondary Color
#626c7c
Secondary Color 2
#8d99ae

H1

Heading 1

H2

Heading 2

H3

Heading 3

H4

Heading 4
H5
Heading 5
H6
Heading 6
You can activate the Timezone in the navigation by adding this code in the custom code section.
<script>
function updateTime() {
  const now = new Date();
  const hours = now.getHours().toString().padStart(2, '0');
  const minutes = now.getMinutes().toString().padStart(2, '0');
  
  // Get GMT offset in hours
  const timezoneOffset = -now.getTimezoneOffset() / 60;
  const gmt = timezoneOffset >= 0 ? `GMT+${timezoneOffset}` : `GMT${timezoneOffset}`;

  document.getElementById('local-time').innerText = `${hours}:${minutes} ${gmt}`;
}

// Update every minute
setInterval(updateTime, 60000);

// Initial call
updateTime();
</script>