summaryrefslogtreecommitdiff
path: root/source/style/package.d
blob: 76aa044d566e87cc9df6fb093a93190fb2bd814a (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[0m%}");
}