summaryrefslogtreecommitdiff
path: root/source/style/color.d
blob: 01159ecc3dccc09c6377581e6a8e6796b1d49082 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
module style.color;

enum Color {
  black = 30,
  red,
  green,
  yellow,
  blue,
  magenta,
  cyan,
  white,
  def,
  reset = 0
}

enum Bright {
  black = 90,
  red,
  green,
  yellow,
  blue,
  magenta,
  cyan,
  white,
  def,
  reset = 0
}

enum Bg {
  black = 40,
  red,
  green,
  yellow,
  blue,
  magenta,
  cyan,
  white,
  def,
  reset = 0
}

enum BrightBg {
  black = 100,
  red,
  green,
  yellow,
  blue,
  magenta,
  cyan,
  white,
  def,
  reset = 0
}