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 };

Sorry for the previous email. My email client went crazy on me.

cheers!
mar77i

Reply via email to