/* These triplets _must_ be separated by a single space */

char* fig_colours[MAX_COL+1]={  /* Solid */
  "0 0 0","0 0 1","0 1 0","0 1 1","1 0 0","1 0 1","1 1 0","1 1 1",
  /* Blues */
  "0 0 0.565","0 0 0.690","0 0 0.816","0.529 0.808 1",
  /* Greens */
  "0 0.565 0","0 0.690 0","0 0.816 0",
  /* Cyans */
  "0 0.565 0.565","0 0.690 0.690","0 0.816 0.816",
  /* Reds */
  "0.565 0 0","0.690 0 0","0.816 0 0",
  /* Magentas */
  "0.565 0 0.565","0.690 0 0.690","0.816 0 0.816",
  /* Browns */
  "0.502 0.188 0","0.627 0.251 0","0.753 0.376 0",
  /* Pinks */
  "1 0.502 0.502","1 0.627 0.627","1 0.753 0.753","1 0.878 0.878",
  /* Gold */
  "1 0.843 0"
};
