Handle color of node in neovis.js

I'm using neovis for visualize the db in my web app.
I'm searching for a way to handle the node color. For example in my db there are the two type of node Friend and RemovedFriend. The first ones are yellow in the figure below, the second one is red.

I want to color the Friend node with green. Is there a way to handle the color?

Actually this is my config. I tried to add 'color' attrbute in labels without any results

let config = {
         container_id: "viz",
        server_url: "bolt://localhost:7687",
        server_user: "neo4j",
        server_password: "neo4j",
        arrows: direction,
        labels: {
            'User': {
                'caption': 'name',
            },
            'Friend': {
                'caption': 'name',
                'size': dimension,
            },
            'RemovedFriend': {
                'caption': 'name',
                'size': dimension,
            },
        },
        relationships: {
            "FRIEND": {
                "thickness": "count",
                "caption": false
            },
        }
   initial_cypher: cmd,
    };

Did you looked at this link: https://github.com/neo4j-contrib/neovis.js/issues/49 ?

Thanks for your answer. I have already read that link, but I don't understand how can I handle colors. I tried to add a community for that nodes, but I didn't get any results

Hey did you find anything for this? :sweat_smile: