module style.color; import std.conv; enum Color { black = 30, red, green, yellow, blue, magenta, cyan, white, def, reset = 0 } string setColor(string s, int code) { return "%{\x1b[" ~ to!string(code) ~ "m%}" ~ s; }