Tanoshi
projectsEye-friendly VS Code theme
Color Palette
Syntax Preview
utils.ts
1// Formats a duration to human-readable form2function formatDuration(ms: number): string {3 if (ms < 1_000) return `${ms}ms`4 if (ms < 60_000) return `${(ms/1000).toFixed(1)}s`5 const mins = Math.floor(ms / 60_000)6 const secs = Math.floor((ms % 60_000) / 1_000)7 return `${mins}m ${secs}s`8}
About
An eye-friendly VS Code color theme designed for long coding sessions. The palette is desaturated enough to reduce strain but not so muted that it loses the utility of syntax highlighting. Every color decision was made for a specific reason — keyword colors, string colors, comment opacity. Seventeen hundred installs and fourteen GitHub stars.
Highlights
- 1,700+ installs on VS Code Marketplace
- 14 GitHub stars
- Desaturated palette designed for long sessions
- Consistent logic across 20+ languages
- Available for dark and light modes