I am interested in exhaustively rendering quartic (4-regular) simple graphs of increasing order and bi-colored black and white such that the closed neighborhood of each vertex contains an even number of black vertices. Here, the closed neighborhood of a vertex is defined as the vertex itself plus its adjacent vertices.
A non-trivial (not 'all white') example is provided by the quartic graph of order five ($K_5$, the complete graph with 5 vertices) with two or four vertices colored black and the remaining ones colored white.
How to generate non-trivial graphs of higher order? Can this be done exhaustively?


You can use the following Sage program to gain some intuition into your problem. The function checkGraphs(n) iterates over all 4-regular graphs of order $n$ and writes out the respective graphs and the first legal coloring it finds.
For example
**Edit Here is a plot of all such graphs and the respective colorings.