<Stack gap="xxlarge" width={600}>
  <Columns gap="large">
    <div></div>
    <Text size="xsmall" weight="bold" color="muted">
      Subtle
    </Text>
    <Text size="xsmall" weight="bold" color="muted">
      Bold
    </Text>
  </Columns>
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Primary
      </Text>
      <Badge weight="subtle" tone="primary" label="Primary subtle" />
      <Badge weight="bold" tone="primary" label="Primary bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Primary inverse
      </Text>
      <div>N/A</div>
      <Badge
        weight="bold"
        tone="primary-inverse"
        label="Primary inverse subtle"
      />
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Secondary
      </Text>
      <div>N/A</div>
      <Badge weight="bold" tone="secondary" label="Secondary bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Secondary inverse
      </Text>
      <div>N/A</div>
      <Badge
        weight="bold"
        tone="secondary-inverse"
        label="Secondary inverse subtle"
      />
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Neutral
      </Text>
      <Badge weight="subtle" tone="neutral" label="Neutral subtle" />
      <Badge weight="bold" tone="neutral" label="Neutral bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Neutral inverse
      </Text>
      <div>N/A</div>
      <Badge
        weight="bold"
        tone="neutral-inverse"
        label="Neutral inverse subtle"
      />
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Critical
      </Text>
      <Badge weight="subtle" tone="critical" label="Critical subtle" />
      <Badge weight="bold" tone="critical" label="Critical bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Critical inverse
      </Text>
      <div>N/A</div>
      <Badge
        weight="bold"
        tone="critical-inverse"
        label="Critical inverse subtle"
      />
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Positive
      </Text>
      <Badge weight="subtle" tone="positive" label="Positive subtle" />
      <Badge weight="bold" tone="positive" label="Positive bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Positive inverse
      </Text>
      <div>N/A</div>
      <div>N/A</div>
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Cautious
      </Text>
      <Badge weight="subtle" tone="cautious" label="Cautious subtle" />
      <Badge weight="bold" tone="cautious" label="Cautious bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Cautious inverse
      </Text>
      <div>N/A</div>
      <div>N/A</div>
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Informative
      </Text>
      <Badge weight="subtle" tone="informative" label="Informative subtle" />
      <Badge weight="bold" tone="informative" label="Informative bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Informative inverse
      </Text>
      <div>N/A</div>
      <div>N/A</div>
    </Columns>
  </Stack>
  <Divider />
  <Stack gap="small">
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Disabled
      </Text>
      <Badge weight="subtle" tone="disabled" label="Disabled subtle" />
      <Badge weight="bold" tone="disabled" label="Disabled bold" />
    </Columns>
    <Columns gap="large" alignY="center">
      <Text size="xsmall" weight="bold" color="muted">
        Disabled inverse
      </Text>
      <div>N/A</div>
      <div>N/A</div>
    </Columns>
  </Stack>
</Stack>