Colorful List Creator
Create beautiful, colorful lists with custom colors, icons, drag-and-drop reordering, and export to HTML, Markdown, JSON, or plain text.
Your colorful list is empty. Add items above or click Example to get started.
About
Plain text lists communicate nothing about hierarchy, priority, or category. A flat bullet list forces the reader to parse every item linearly. Color-coded lists solve this by mapping visual channels (hue, saturation) to semantic meaning. This tool generates lists where each item carries its own background color, computed via HSL rotation to guarantee perceptual distinctness. The contrast ratio between text and background is calculated using the WCAG relative luminance formula: L = 0.2126R + 0.7152G + 0.0722B, ensuring text remains readable at a minimum ratio of 4.5:1. Items are reorderable via drag-and-drop. The tool approximates design intent for non-designers. It does not replace a full layout editor. Export is limited to single-level flat lists.
Formulas
Each item's auto-generated color is distributed evenly across the hue wheel using the golden angle to maximize perceptual separation between adjacent items:
where H0 is the starting hue and 137.508° is the golden angle. Text color is selected by computing relative luminance of the background:
where each linearized channel is Clin = (CsRGB ÷ 255)2.2. If L > 0.179, text is set to dark (#2D3436). Otherwise, text is white (#FFFFFF). The contrast ratio CR = Llighter + 0.05Ldarker + 0.05 must meet or exceed 4.5:1 per WCAG 2.1 AA.
Reference Data
| Color Scheme | Hue Range | Use Case | Saturation | Lightness |
|---|---|---|---|---|
| Pastel Rainbow | 0° - 360° | General lists, brainstorming | 65% | 80% |
| Warm Tones | 0° - 60° | Urgency, action items | 70% | 78% |
| Cool Tones | 180° - 270° | Calm, informational | 60% | 82% |
| Earth Tones | 20° - 50° | Natural, organic themes | 45% | 75% |
| Monochrome Blue | 210° - 230° | Corporate, professional | 50% | 70% - 90% |
| Monochrome Green | 120° - 150° | Eco, health, progress | 50% | 72% - 88% |
| Sunset Gradient | 0° - 45° | Creative, artistic | 75% | 76% |
| Neon Pastel | 0° - 360° | Youth, fun, playful | 80% | 85% |
| Ocean | 170° - 220° | Travel, maritime | 55% | 74% |
| Berry | 280° - 340° | Fashion, luxury | 60% | 78% |
| Custom | User-defined | Any specific branding | User-defined | User-defined |
Frequently Asked Questions
- with inline styles for each
- element, including background-color, color, border-radius, and padding. This can be pasted directly into any HTML document or CMS editor. The Markdown export works for GitHub READMEs and documentation but loses color information since Markdown does not support inline styles.