> in config.h something along the lines of
>
> enum color_mode {
> REVERSE,
> COLOR,
> };
> struct selection_colors {
> enum color_mode;
> int colors[];
> }
> static const struct selection_colors same = { .color_mode = COLOR,
> .colors = { 7, 0 } };
> static const struct selection_colors different = { .color_mode = REVERSE };
> I think the current selection is the best option. If you want you can add the patch to the wiki because maybe it is going to be useful for someone else.
