This color comparison and merging tool compares two JSON color files, identifies differences in color and names, and merges unique colors into one file, useful for developers and designers managing color data or palettes.
[
{
"name": "Red",
"hex": "#FF0000",
"rgb": {
"r": 255,
"g": 0,
"b": 0
}
},
{
"name": "Green",
"hex": "#00FF00",
"rgb": {
"r": 0,
"g": 255,
"b": 0
}
},
{
"name": "Blue",
"hex": "#0000FF",
"rgb": {
"r": 0,
"g": 0,
"b": 255
}
}
]