diff options
Diffstat (limited to 'source/style/package.d')
-rw-r--r-- | source/style/package.d | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/source/style/package.d b/source/style/package.d new file mode 100644 index 0000000..76aa044 --- /dev/null +++ b/source/style/package.d @@ -0,0 +1,9 @@ +module style; + +import std.conv; + +import style.color; + +string set(string s, int code) { + return ("%{\x1b[" ~ to!string(code) ~ "m%}") ~ s ~ ("%{\x1b[0m%}"); +} |