dragoon0x/everything-design-taste

type-rendering

Font rendering across platforms, hinting, subpixel rendering, and font loading optimization.

First seen Jul 18, 2026

Installation

$ npx skills add dragoon0x/everything-design-taste --skill type-rendering

Similar popular skills

Related neighbors and high-traction skills in the same topics — useful to compare before installing.

Also in this package

Other skills from dragoon0x/everything-design-taste · top by installs.

npx skills add dragoon0x/everything-design-taste

Browse all from dragoon0x/everything-design-taste

More details

Agent compatibility

Declared targets from SKILL.md / docs. Unmarked agents are not listed — the skill may still install via the CLI.

Claude Code Not declared
Cursor Not declared
Codex Not declared
GitHub Copilot Not declared
Windsurf Not declared
Gemini CLI Not declared
Cline Not declared
OpenCode Not declared

Repository health

Stars 11
License LICENSE
Default branch main
Open issues 0
Status Active

Package contents

Files included with this skill beyond the listing page.

  • skill md SKILL.md 1,341 B
  • docs SUMMARY.md 114 B

History

  1. First seen on skills.sh
  2. First recorded snapshot · 2 installs

SKILL.md

Type Rendering

Cross-Platform Differences

Platform Rendering Impact
macOS Smooth, slightly heavier Looks good at all sizes
Windows (ClearType) Sharper, thinner Thin weights look bad
Linux Varies by distro Inconsistent
iOS Same as macOS Excellent
Android Varies by device Test on budget devices

Font Loading Strategy

<!-- Preload critical fonts -->
<link rel="preload" href="/fonts/body.woff2" as="font" type="font/woff2" crossorigin>

<!-- Font display strategy -->
@font-face {
  font-family: 'BodyFont';
  src: url('/fonts/body.woff2') format('woff2');
  font-display: swap; /* Show fallback immediately, swap when loaded */
}

Rules

  1. WOFF2 format only (best compression, broadest support)
  2. Subset fonts (only include characters you use)
  3. Preload above-fold fonts
  4. font-display: swap for body, optional for decorative
  5. System font stack as fallback with matching metrics
  6. Test on Windows with ClearType (thin weights may be unreadable)
  7. Variable fonts: one file for all weights (better performance)