Tscope5
graphics8.c

named colors

#include <tscope5.h>
int main()
{
ts5_set_coordinate_scale(TS5_RELATIVE_COORDINATES);
char colors[4][20] = {"aliceblue", "antiquewhite", "aqua", "aquamarine"};
ts5_set_fill_mode(TS5_FILL_ON);
ts5_draw_rectangle(-1.0, 1.0, 1.0, 0.5);
ts5_draw_rectangle(-1.0, 1.0, 0.5, 0.0);
ts5_draw_rectangle(-1.0, 1.0, 0.0, -0.5);
ts5_draw_rectangle(-1.0, 1.0, -0.5, -1.0);
return 0;
}