Loading source
Pulling the file list, source metadata, and syntax-aware rendering for this listing.
Source from repo
Configure and use UnoCSS atomic CSS engine with presets like Wind (Tailwind-compatible), Icons, and Attributify.
Files
Skill
Size
Entrypoint
Format
Open file
Syntax-highlighted preview of this file as included in the skill package.
references/preset-typography.md
1---2name: preset-typography3description: Prose classes for typographic defaults on vanilla HTML content4---56# Preset Typography78Prose classes for adding typographic defaults to vanilla HTML content.910## Installation1112```ts13import { defineConfig, presetTypography, presetWind3 } from 'unocss'1415export default defineConfig({16presets: [17presetWind3(), // Required!18presetTypography(),19],20})21```2223## Basic Usage2425```html26<article class="prose">27<h1>My Article</h1>28<p>This is styled with typographic defaults...</p>29</article>30```3132## Sizes3334```html35<article class="prose prose-sm">Small</article>36<article class="prose prose-base">Base (default)</article>37<article class="prose prose-lg">Large</article>38<article class="prose prose-xl">Extra large</article>39<article class="prose prose-2xl">2X large</article>40```4142Responsive:43```html44<article class="prose prose-sm md:prose-base lg:prose-lg">45Responsive typography46</article>47```4849## Colors5051```html52<article class="prose prose-gray">Gray (default)</article>53<article class="prose prose-slate">Slate</article>54<article class="prose prose-blue">Blue</article>55```5657## Dark Mode5859```html60<article class="prose dark:prose-invert">61Dark mode typography62</article>63```6465## Excluding Elements6667```html68<article class="prose">69<p>Styled</p>70<div class="not-prose">71<p>NOT styled</p>72</div>73</article>74```7576**Note:** `not-prose` only works as a class.7778## Options7980```ts81presetTypography({82selectorName: 'prose', // Custom selector83cssVarPrefix: '--un-prose', // CSS variable prefix84important: false, // Make !important85cssExtend: {86'code': { color: '#8b5cf6' },87'a:hover': { color: '#f43f5e' },88},89})90```9192<!--93Source references:94- https://unocss.dev/presets/typography95-->96