Currently, ppjson prints formatted JSON output, but all text appears in a single color. It would be great if ppjson could optionally output colorful (syntax-highlighted) JSON to improve readability — especially for command-line users who inspect JSON responses frequently.
Add an option (e.g., --color or --pretty-color) that enables colorized output.
Example:
ppjson --color input.json
ppjson -c input.json
Example Preview (Concept)
{
"user": "alice",
"active": true,
"score": 42,
"tags": ["blue", "json", "cli"]
}