I expected the following to output "Hello........World" but it comes out as "Hello.World"
(had to swap spaces for . due to markdown formatting)
import std.stdio, consoled;
alias GreenText = ColorTheme!(Color.green, Color.black);
void main() {
writefln("%s %12s", "Hello" GreenText("World"));
}