# Theming

You can substantially change the look and feel of your touchpoint by adding a few simple theming configuration options:

<pre class="language-html" data-overflow="wrap" data-full-width="false"><code class="lang-html">&#x3C;!doctype html>
&#x3C;html lang="en">
  &#x3C;head>
    &#x3C;meta charset="UTF-8" />
    &#x3C;title>Touchpoint&#x3C;/title>
    &#x3C;link
      href="https://db.onlinewebfonts.com/c/0970e3fd1aa7e6ff6937c76a583f3a30?family=BW+Haas+Text+Mono+C+55+Rom+Regular"
      rel="stylesheet"
    />
  &#x3C;/head>

  &#x3C;body
    style="
      background-image: url(https://platform.nlx.ai/onboarding-bg/voiceplus.webp);
      background-size: cover;
      color: white;
    "
  >
    &#x3C;div
      style="width: 40vw; height: 80vh; margin: auto; padding-top: 10vh"
    >&#x3C;/div>
    &#x3C;script type="module">
      import {
        create,
        html,
      } from "https://unpkg.com/@nlxai/touchpoint-ui/lib/index.js?module";

      const touchpoint = await create({
        config: {
          applicationUrl: "REPLACE_WITH_APPLICATION_URL",
          headers: {
            "nlx-api-key": "REPLACE_WITH_API_KEY",
          },
          languageCode: "en-US",
        },
<strong>        windowSize: "full",
</strong><strong>        userMessageBubble: true,
</strong><strong>        agentMessageBubble: true,
</strong><strong>        chatMode: true,
</strong><strong>        theme: {
</strong><strong>          accent: "rgba(255, 253, 114, 1)",
</strong><strong>          primary80: "rgba(255, 255, 255, 0.85)",
</strong><strong>          secondary80: "rgba(0, 2, 9, 0.4)",
</strong><strong>          background: "rgba(35, 43, 80, 0.9)",
</strong><strong>          fontFamily: "'BW Haas Text Mono C 55 Rom Regular', monospace",
</strong><strong>        },
</strong>      });
    &#x3C;/script>
  &#x3C;/body>
&#x3C;/html>

</code></pre>

which results in

<figure><img src="https://3978076094-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2F2VnkvXtkrR2qhkVBmB1l%2Fuploads%2FqBV2w5j1PtrEsKfXYSrS%2FScreenshot%202025-11-26%20at%2012.40.45.png?alt=media&#x26;token=22a926a5-3782-44bb-8caa-4cf9011a1654" alt=""><figcaption></figcaption></figure>
