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

# TextStyle

> Semantic text styles that scale with Dynamic Type, from caption2 to largeTitle.

```typescript theme={null}
type TextStyle =
    | "caption2"
    | "caption"
    | "callout"
    | "footnote"
    | "body"
    | "subheadline"
    | "headline"
    | "title3"
    | "title2"
    | "title"
    | "largeTitle";
```

<ParamField path="caption2" type="string">
  The smallest text style. Used for secondary captions and fine print.
</ParamField>

<ParamField path="caption" type="string">
  Small text for captions and supplementary information.
</ParamField>

<ParamField path="callout" type="string">
  Slightly emphasized text, between footnote and body size.
</ParamField>

<ParamField path="footnote" type="string">
  Small text for footnotes and disclaimers.
</ParamField>

<ParamField path="body" type="string">
  The default text style for body content and general reading.
</ParamField>

<ParamField path="subheadline" type="string">
  Text for subheadings and section introductions.
</ParamField>

<ParamField path="headline" type="string">
  Prominent text for headlines and important content. Rendered bold by default.
</ParamField>

<ParamField path="title3" type="string">
  The smallest title style for tertiary headings.
</ParamField>

<ParamField path="title2" type="string">
  A medium title style for secondary headings.
</ParamField>

<ParamField path="title" type="string">
  A large title style for primary headings.
</ParamField>

<ParamField path="largeTitle" type="string">
  The largest title style, typically used for page titles.
</ParamField>
