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
| "use strict";
|
| // Generated by CoffeeScript 2.5.1
| var color, colors, i, len, tags;
| module.exports = tags = {
| 'none': {
| color: 'none',
| bg: 'none'
| },
| 'bg-none': {
| color: 'inherit',
| bg: 'none'
| },
| 'color-none': {
| color: 'none',
| bg: 'inherit'
| }
| };
| colors = ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', 'grey', 'bright-red', 'bright-green', 'bright-yellow', 'bright-blue', 'bright-magenta', 'bright-cyan', 'bright-white'];
|
| for (i = 0, len = colors.length; i < len; i++) {
| color = colors[i];
| tags[color] = {
| color: color,
| bg: 'inherit'
| };
| tags["color-".concat(color)] = {
| color: color,
| bg: 'inherit'
| };
| tags["bg-".concat(color)] = {
| color: 'inherit',
| bg: color
| };
| }
|
|