blob: 57e87c25b3a82483f463b826bebbf3c478bd679b (
plain)
1
2
3
4
5
6
7
8
9
|
module style;
import std.conv;
import style.color;
string set(string s, int code) {
return ("%{\x1b[" ~ to!string(code) ~ "m%}") ~ s ~ ("%{\x1b[" ~ to!string((Color.reset + 0)) ~ "m%}");
}
|