YoYoPixel Gallery

Pure-code pixel art — zero images, zero dependencies
Micro 8×8 — Minimal
3-5 colors · icon style · static render
Mini 12×12 — Standard
5-8 colors · sprite style · grid render
Small 16×16 — Standard
8-12 colors · character style · CSS box-shadow render
Medium 24×24 — Detailed
10-16 colors · character style · grid render
Large 32×32 — Detailed
12-20 colors · character style · grid render · adjustable scale
Data Format
Each pixel art piece is a simple JS object — human-readable, AI-generatable
const wizard = { name: 'Wizard', width: 24, height: 24, scale: 6, palette: { '.': 'transparent', 'H': '#2a1a4e', // hat 'S': '#f5d0a0', // skin 'R': '#6a3cbf', // robe 'G': '#ffd700', // gold }, pixels: [ '........HHHH............', '......HHHHHHHH..........', '....HHHHHHHHHHH.........', // ... each char = 1 pixel ] };
Swordsman — Moonlit Scene (16×24) → Cyberpunk Girl — Neon Rain (32×32) → Fire Dragon — Ember Scene (24×24) → Pixel Icons — 8×8 Collection →