> ## Documentation Index
> Fetch the complete documentation index at: https://doc.lucidworks.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Typography

export const LwTemplate = ({title = "Key questions to get you started", icon = "sparkles", cta = "Powered by Agent Studio", linkHref = "https://lucidworks.com/demo/?utm_source=docs&utm_medium=referral&utm_campaign=docs_cta_ai"}) => {
  const [isLoaded, setIsLoaded] = useState(false);
  useEffect(() => {
    const timer = setTimeout(() => {
      setIsLoaded(true);
    }, 500);
    return () => clearTimeout(timer);
  }, []);
  return <div className="lw-template-container">
      <Card title={title} icon={icon}>
        {isLoaded && <span dangerouslySetInnerHTML={{
    __html: `<lw-template id="a029c1a9-28be-427e-b0e1-5d918920246a"></lw-template
            >`
  }} />}
        <Link href={linkHref} className="agent-studio-link text-left text-gray-600 gap-2 dark:text-gray-400 text-sm font-medium flex flex-row items-center hover:text-primary dark:hover:text-primary-light group-hover:text-primary group-hover:dark:text-primary-light">Powered by Lucidworks Agent Studio</Link>
      </Card>
    </div>;
};

[localhost link]: http://localhost:3000/docs/5/app-studio/reference/gallery/typography

[mintlify link]: https://doc.lucidworks.com/docs/5/app-studio/reference/gallery/typography

[old doc.lw link]: https://doc.lucidworks.com/app-studio/4.2/1030

<LwTemplate />

## Default

Standard Button

<img src="https://mintcdn.com/lucidworks/_JCWsGwGCZxJia7w/assets/images/app-studio/as-examples/gallery/typography01.png?fit=max&auto=format&n=_JCWsGwGCZxJia7w&q=85&s=e8d782af8c1966ea583750c492d22ce2" alt="Example" width="1271" height="445" data-path="assets/images/app-studio/as-examples/gallery/typography01.png" />

```html wrap  theme={"dark"}
<h2>H1 - 2.18em</h2>
<h2>H2 - 1.64em</h2>
<h3>H3 - 1.45em</h3>
<h4>H4 - 1.33em</h4>
<h5>H5 - 1em</h5>
<h6>H6 - 0.83em</h6>
```

## Small - Secondary

<img src="https://mintcdn.com/lucidworks/_JCWsGwGCZxJia7w/assets/images/app-studio/as-examples/gallery/typography02.png?fit=max&auto=format&n=_JCWsGwGCZxJia7w&q=85&s=f74198f2d28f340187082d99add0e4ac" alt="Example" width="1271" height="445" data-path="assets/images/app-studio/as-examples/gallery/typography02.png" />

```html wrap  theme={"dark"}
<h2>App Studio <small>Framework</small></h2>
<h2>App Studio <small>Framework</small></h2>
<h3>App Studio <small>Framework</small></h3>
<h4>App Studio <small>Framework</small></h4>
<h5>App Studio <small>Framework</small></h5>
<h6>App Studio <small>Framework</small></h6>
```

## Paragraph

<img src="https://mintcdn.com/lucidworks/_JCWsGwGCZxJia7w/assets/images/app-studio/as-examples/gallery/typography03.png?fit=max&auto=format&n=_JCWsGwGCZxJia7w&q=85&s=8475100f6aaf39166ff8d9927a5a87f9" alt="Example" width="1271" height="228" data-path="assets/images/app-studio/as-examples/gallery/typography03.png" />

```html wrap  theme={"dark"}
<p>Lorem Ipsum is simply dummy text of the printing and typesetting industry.
    Lorem Ipsum has been the industry's standard dummy text ever since the 1500s</p>
<p>when an unknown printer took a galley of type and scrambled it to make a type specimen book.
    It has survived not only five centuries, but also the leap into electronic typesetting</p>
```

## Highlight

Can be highlighted

<img src="https://mintcdn.com/lucidworks/_JCWsGwGCZxJia7w/assets/images/app-studio/as-examples/gallery/typography04.png?fit=max&auto=format&n=_JCWsGwGCZxJia7w&q=85&s=cb24ee83b282f562fe951de24deb58ab" alt="Example" width="1271" height="134" data-path="assets/images/app-studio/as-examples/gallery/typography04.png" />

```html wrap  theme={"dark"}
<p>Lorem Ipsum is simply <mark>dummy text</mark> of the printing and typesetting industry.</p>
```
