DNA typography utility classes for consistent text styling across brands.
.title-large.title-medium.title-small.body-large.body-medium.body-small.label-large.label-medium.label-small.captionDNA typography provides a consistent type system across all Schibsted brands. Each brand uses the same class names but with brand-specific font families, sizes, and weights. Use the bold modifier class to apply bold font weight.
Apply typography classes directly to elements. Combine with the bold modifier:
<!-- HTML --> <h1 class="title-large">Main Headline</h1> <h2 class="title-medium bold">Bold Section Header</h2> <p class="body-medium">Standard paragraph text</p> <!-- React JSX --> <h1 className="title-large">Main Headline</h1> <p className="body-medium bold">Bold paragraph</p>