Skip to content

Instantly share code, notes, and snippets.

@documentprocessing
Created April 30, 2025 02:39
Show Gist options
  • Save documentprocessing/c4c1f01c9115ffad6729b5f383839a7f to your computer and use it in GitHub Desktop.
Save documentprocessing/c4c1f01c9115ffad6729b5f383839a7f to your computer and use it in GitHub Desktop.
Custom Styling with JSON Crack
const options = {
theme: 'dark',
nodeStyle: {
object: { fill: '#4CAF50' },
array: { fill: '#2196F3' },
value: { fill: '#FFC107' }
},
direction: 'TB' // Top-to-bottom layout
};
JsonCrack.draw('container', complexData, options);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment