Switch on buffer payload type

I've got an MQTT buffer feed of the RGB values of a coloured switch press

e.g. press red - get [255,0,0], blue get [0,0,255] etc

I'd like to have a switch that routes each colour to a different output but there doesn't seem to be a switch comparison operator to do that

Any ideas?

As a workaround - I've set the MQTT out to be a base64 encoded string and then just used string comparison
image

[
    {
        "id": "928a4710e5e70a19",
        "type": "inject",
        "z": "d49edf046b897d61",
        "name": "",
        "props": [
            {
                "p": "payload"
            }
        ],
        "repeat": "",
        "crontab": "",
        "once": false,
        "onceDelay": 0.1,
        "topic": "",
        "payload": "[255,0,0]",
        "payloadType": "bin",
        "x": 190,
        "y": 100,
        "wires": [
            [
                "7a703f07cf234f1c"
            ]
        ]
    },
    {
        "id": "8cc4566c09cb0e64",
        "type": "debug",
        "z": "d49edf046b897d61",
        "name": "debug 5",
        "active": true,
        "tosidebar": true,
        "console": false,
        "tostatus": false,
        "complete": "true",
        "targetType": "full",
        "statusVal": "",
        "statusType": "auto",
        "x": 640,
        "y": 100,
        "wires": []
    },
    {
        "id": "7a703f07cf234f1c",
        "type": "change",
        "z": "d49edf046b897d61",
        "name": "",
        "rules": [
            {
                "t": "set",
                "p": "result",
                "pt": "msg",
                "to": "payload[0]",
                "tot": "msg"
            }
        ],
        "action": "",
        "property": "",
        "from": "",
        "to": "",
        "reg": false,
        "x": 400,
        "y": 100,
        "wires": [
            [
                "8cc4566c09cb0e64"
            ]
        ]
    }
]