UNPKG

760 BJavaScriptView Raw
1"use strict";
2
3// Generated by CoffeeScript 2.5.1
4var color, colors, i, len, tags;
5module.exports = tags = {
6 'none': {
7 color: 'none',
8 bg: 'none'
9 },
10 'bg-none': {
11 color: 'inherit',
12 bg: 'none'
13 },
14 'color-none': {
15 color: 'none',
16 bg: 'inherit'
17 }
18};
19colors = ['black', 'red', 'green', 'yellow', 'blue', 'magenta', 'cyan', 'white', 'grey', 'bright-red', 'bright-green', 'bright-yellow', 'bright-blue', 'bright-magenta', 'bright-cyan', 'bright-white'];
20
21for (i = 0, len = colors.length; i < len; i++) {
22 color = colors[i];
23 tags[color] = {
24 color: color,
25 bg: 'inherit'
26 };
27 tags["color-".concat(color)] = {
28 color: color,
29 bg: 'inherit'
30 };
31 tags["bg-".concat(color)] = {
32 color: 'inherit',
33 bg: color
34 };
35}
\No newline at end of file