I am very new to igraph, and have been plotting out a project of mine. In my python code I used the:
igraph.VertexClustering.FromAttribute(graph, attribute)
to identify the groups.
The problem is the coloring of this VertexCluster. When using the VertexCluster as “mark_groups” for the visual style, the groups are grey. Despite using “mark_col”, it does not change. Example of the grey marked groups
How do I change the colors for mark_groups when using a VertexClustering.FromAttribute?

