condenser 0.0.12 → 0.1
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/condenser/asset.rb +1 -1
- data/lib/condenser/build_cache.rb +47 -24
- data/lib/condenser/environment.rb +0 -6
- data/lib/condenser/processors/node_modules/@types/estree/LICENSE +21 -21
- data/lib/condenser/processors/node_modules/@types/estree/README.md +16 -16
- data/lib/condenser/processors/node_modules/@types/node/LICENSE +21 -21
- data/lib/condenser/processors/node_modules/@types/node/README.md +16 -16
- data/lib/condenser/processors/node_modules/@types/resolve/README.md +16 -16
- data/lib/condenser/processors/node_modules/babel-plugin-transform-class-extended-hook/test/index.js +107 -107
- data/lib/condenser/processors/node_modules/color-name/.npmignore +106 -106
- data/lib/condenser/processors/node_modules/color-name/LICENSE +7 -7
- data/lib/condenser/processors/node_modules/color-name/README.md +11 -11
- data/lib/condenser/processors/node_modules/color-name/index.js +152 -152
- data/lib/condenser/processors/node_modules/color-name/test.js +7 -7
- data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/LICENSE +21 -21
- data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/README.md +16 -16
- data/lib/condenser/processors/node_modules/is-reference/node_modules/@types/estree/index.d.ts +548 -548
- data/lib/condenser/resolve.rb +12 -8
- data/lib/condenser/version.rb +1 -1
- data/test/cache_test.rb +16 -0
- data/test/test_helper.rb +5 -1
- metadata +2 -2
@@ -1,107 +1,107 @@
|
|
1
|
-
//this will affect all the git repos
|
2
|
-
git config --global core.excludesfile ~/.gitignore
|
3
|
-
|
4
|
-
|
5
|
-
//update files since .ignore won't if already tracked
|
6
|
-
git rm --cached <file>
|
7
|
-
|
8
|
-
# Compiled source #
|
9
|
-
###################
|
10
|
-
*.com
|
11
|
-
*.class
|
12
|
-
*.dll
|
13
|
-
*.exe
|
14
|
-
*.o
|
15
|
-
*.so
|
16
|
-
|
17
|
-
# Packages #
|
18
|
-
############
|
19
|
-
# it's better to unpack these files and commit the raw source
|
20
|
-
# git has its own built in compression methods
|
21
|
-
*.7z
|
22
|
-
*.dmg
|
23
|
-
*.gz
|
24
|
-
*.iso
|
25
|
-
*.jar
|
26
|
-
*.rar
|
27
|
-
*.tar
|
28
|
-
*.zip
|
29
|
-
|
30
|
-
# Logs and databases #
|
31
|
-
######################
|
32
|
-
*.log
|
33
|
-
*.sql
|
34
|
-
*.sqlite
|
35
|
-
|
36
|
-
# OS generated files #
|
37
|
-
######################
|
38
|
-
.DS_Store
|
39
|
-
.DS_Store?
|
40
|
-
._*
|
41
|
-
.Spotlight-V100
|
42
|
-
.Trashes
|
43
|
-
# Icon?
|
44
|
-
ehthumbs.db
|
45
|
-
Thumbs.db
|
46
|
-
.cache
|
47
|
-
.project
|
48
|
-
.settings
|
49
|
-
.tmproj
|
50
|
-
*.esproj
|
51
|
-
nbproject
|
52
|
-
|
53
|
-
# Numerous always-ignore extensions #
|
54
|
-
#####################################
|
55
|
-
*.diff
|
56
|
-
*.err
|
57
|
-
*.orig
|
58
|
-
*.rej
|
59
|
-
*.swn
|
60
|
-
*.swo
|
61
|
-
*.swp
|
62
|
-
*.vi
|
63
|
-
*~
|
64
|
-
*.sass-cache
|
65
|
-
*.grunt
|
66
|
-
*.tmp
|
67
|
-
|
68
|
-
# Dreamweaver added files #
|
69
|
-
###########################
|
70
|
-
_notes
|
71
|
-
dwsync.xml
|
72
|
-
|
73
|
-
# Komodo #
|
74
|
-
###########################
|
75
|
-
*.komodoproject
|
76
|
-
.komodotools
|
77
|
-
|
78
|
-
# Node #
|
79
|
-
#####################
|
80
|
-
node_modules
|
81
|
-
|
82
|
-
# Bower #
|
83
|
-
#####################
|
84
|
-
bower_components
|
85
|
-
|
86
|
-
# Folders to ignore #
|
87
|
-
#####################
|
88
|
-
.hg
|
89
|
-
.svn
|
90
|
-
.CVS
|
91
|
-
intermediate
|
92
|
-
publish
|
93
|
-
.idea
|
94
|
-
.graphics
|
95
|
-
_test
|
96
|
-
_archive
|
97
|
-
uploads
|
98
|
-
tmp
|
99
|
-
|
100
|
-
# Vim files to ignore #
|
101
|
-
#######################
|
102
|
-
.VimballRecord
|
103
|
-
.netrwhist
|
104
|
-
|
105
|
-
bundle.*
|
106
|
-
|
1
|
+
//this will affect all the git repos
|
2
|
+
git config --global core.excludesfile ~/.gitignore
|
3
|
+
|
4
|
+
|
5
|
+
//update files since .ignore won't if already tracked
|
6
|
+
git rm --cached <file>
|
7
|
+
|
8
|
+
# Compiled source #
|
9
|
+
###################
|
10
|
+
*.com
|
11
|
+
*.class
|
12
|
+
*.dll
|
13
|
+
*.exe
|
14
|
+
*.o
|
15
|
+
*.so
|
16
|
+
|
17
|
+
# Packages #
|
18
|
+
############
|
19
|
+
# it's better to unpack these files and commit the raw source
|
20
|
+
# git has its own built in compression methods
|
21
|
+
*.7z
|
22
|
+
*.dmg
|
23
|
+
*.gz
|
24
|
+
*.iso
|
25
|
+
*.jar
|
26
|
+
*.rar
|
27
|
+
*.tar
|
28
|
+
*.zip
|
29
|
+
|
30
|
+
# Logs and databases #
|
31
|
+
######################
|
32
|
+
*.log
|
33
|
+
*.sql
|
34
|
+
*.sqlite
|
35
|
+
|
36
|
+
# OS generated files #
|
37
|
+
######################
|
38
|
+
.DS_Store
|
39
|
+
.DS_Store?
|
40
|
+
._*
|
41
|
+
.Spotlight-V100
|
42
|
+
.Trashes
|
43
|
+
# Icon?
|
44
|
+
ehthumbs.db
|
45
|
+
Thumbs.db
|
46
|
+
.cache
|
47
|
+
.project
|
48
|
+
.settings
|
49
|
+
.tmproj
|
50
|
+
*.esproj
|
51
|
+
nbproject
|
52
|
+
|
53
|
+
# Numerous always-ignore extensions #
|
54
|
+
#####################################
|
55
|
+
*.diff
|
56
|
+
*.err
|
57
|
+
*.orig
|
58
|
+
*.rej
|
59
|
+
*.swn
|
60
|
+
*.swo
|
61
|
+
*.swp
|
62
|
+
*.vi
|
63
|
+
*~
|
64
|
+
*.sass-cache
|
65
|
+
*.grunt
|
66
|
+
*.tmp
|
67
|
+
|
68
|
+
# Dreamweaver added files #
|
69
|
+
###########################
|
70
|
+
_notes
|
71
|
+
dwsync.xml
|
72
|
+
|
73
|
+
# Komodo #
|
74
|
+
###########################
|
75
|
+
*.komodoproject
|
76
|
+
.komodotools
|
77
|
+
|
78
|
+
# Node #
|
79
|
+
#####################
|
80
|
+
node_modules
|
81
|
+
|
82
|
+
# Bower #
|
83
|
+
#####################
|
84
|
+
bower_components
|
85
|
+
|
86
|
+
# Folders to ignore #
|
87
|
+
#####################
|
88
|
+
.hg
|
89
|
+
.svn
|
90
|
+
.CVS
|
91
|
+
intermediate
|
92
|
+
publish
|
93
|
+
.idea
|
94
|
+
.graphics
|
95
|
+
_test
|
96
|
+
_archive
|
97
|
+
uploads
|
98
|
+
tmp
|
99
|
+
|
100
|
+
# Vim files to ignore #
|
101
|
+
#######################
|
102
|
+
.VimballRecord
|
103
|
+
.netrwhist
|
104
|
+
|
105
|
+
bundle.*
|
106
|
+
|
107
107
|
_demo
|
@@ -1,8 +1,8 @@
|
|
1
|
-
The MIT License (MIT)
|
2
|
-
Copyright (c) 2015 Dmitry Ivanov
|
3
|
-
|
4
|
-
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
5
|
-
|
6
|
-
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
7
|
-
|
1
|
+
The MIT License (MIT)
|
2
|
+
Copyright (c) 2015 Dmitry Ivanov
|
3
|
+
|
4
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
|
5
|
+
|
6
|
+
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
|
7
|
+
|
8
8
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
@@ -1,11 +1,11 @@
|
|
1
|
-
A JSON with color names and its values. Based on http://dev.w3.org/csswg/css-color/#named-colors.
|
2
|
-
|
3
|
-
[![NPM](https://nodei.co/npm/color-name.png?mini=true)](https://nodei.co/npm/color-name/)
|
4
|
-
|
5
|
-
|
6
|
-
```js
|
7
|
-
var colors = require('color-name');
|
8
|
-
colors.red //[255,0,0]
|
9
|
-
```
|
10
|
-
|
11
|
-
<a href="LICENSE"><img src="https://upload.wikimedia.org/wikipedia/commons/0/0c/MIT_logo.svg" width="120"/></a>
|
1
|
+
A JSON with color names and its values. Based on http://dev.w3.org/csswg/css-color/#named-colors.
|
2
|
+
|
3
|
+
[![NPM](https://nodei.co/npm/color-name.png?mini=true)](https://nodei.co/npm/color-name/)
|
4
|
+
|
5
|
+
|
6
|
+
```js
|
7
|
+
var colors = require('color-name');
|
8
|
+
colors.red //[255,0,0]
|
9
|
+
```
|
10
|
+
|
11
|
+
<a href="LICENSE"><img src="https://upload.wikimedia.org/wikipedia/commons/0/0c/MIT_logo.svg" width="120"/></a>
|
@@ -1,152 +1,152 @@
|
|
1
|
-
'use strict'
|
2
|
-
|
3
|
-
module.exports = {
|
4
|
-
"aliceblue": [240, 248, 255],
|
5
|
-
"antiquewhite": [250, 235, 215],
|
6
|
-
"aqua": [0, 255, 255],
|
7
|
-
"aquamarine": [127, 255, 212],
|
8
|
-
"azure": [240, 255, 255],
|
9
|
-
"beige": [245, 245, 220],
|
10
|
-
"bisque": [255, 228, 196],
|
11
|
-
"black": [0, 0, 0],
|
12
|
-
"blanchedalmond": [255, 235, 205],
|
13
|
-
"blue": [0, 0, 255],
|
14
|
-
"blueviolet": [138, 43, 226],
|
15
|
-
"brown": [165, 42, 42],
|
16
|
-
"burlywood": [222, 184, 135],
|
17
|
-
"cadetblue": [95, 158, 160],
|
18
|
-
"chartreuse": [127, 255, 0],
|
19
|
-
"chocolate": [210, 105, 30],
|
20
|
-
"coral": [255, 127, 80],
|
21
|
-
"cornflowerblue": [100, 149, 237],
|
22
|
-
"cornsilk": [255, 248, 220],
|
23
|
-
"crimson": [220, 20, 60],
|
24
|
-
"cyan": [0, 255, 255],
|
25
|
-
"darkblue": [0, 0, 139],
|
26
|
-
"darkcyan": [0, 139, 139],
|
27
|
-
"darkgoldenrod": [184, 134, 11],
|
28
|
-
"darkgray": [169, 169, 169],
|
29
|
-
"darkgreen": [0, 100, 0],
|
30
|
-
"darkgrey": [169, 169, 169],
|
31
|
-
"darkkhaki": [189, 183, 107],
|
32
|
-
"darkmagenta": [139, 0, 139],
|
33
|
-
"darkolivegreen": [85, 107, 47],
|
34
|
-
"darkorange": [255, 140, 0],
|
35
|
-
"darkorchid": [153, 50, 204],
|
36
|
-
"darkred": [139, 0, 0],
|
37
|
-
"darksalmon": [233, 150, 122],
|
38
|
-
"darkseagreen": [143, 188, 143],
|
39
|
-
"darkslateblue": [72, 61, 139],
|
40
|
-
"darkslategray": [47, 79, 79],
|
41
|
-
"darkslategrey": [47, 79, 79],
|
42
|
-
"darkturquoise": [0, 206, 209],
|
43
|
-
"darkviolet": [148, 0, 211],
|
44
|
-
"deeppink": [255, 20, 147],
|
45
|
-
"deepskyblue": [0, 191, 255],
|
46
|
-
"dimgray": [105, 105, 105],
|
47
|
-
"dimgrey": [105, 105, 105],
|
48
|
-
"dodgerblue": [30, 144, 255],
|
49
|
-
"firebrick": [178, 34, 34],
|
50
|
-
"floralwhite": [255, 250, 240],
|
51
|
-
"forestgreen": [34, 139, 34],
|
52
|
-
"fuchsia": [255, 0, 255],
|
53
|
-
"gainsboro": [220, 220, 220],
|
54
|
-
"ghostwhite": [248, 248, 255],
|
55
|
-
"gold": [255, 215, 0],
|
56
|
-
"goldenrod": [218, 165, 32],
|
57
|
-
"gray": [128, 128, 128],
|
58
|
-
"green": [0, 128, 0],
|
59
|
-
"greenyellow": [173, 255, 47],
|
60
|
-
"grey": [128, 128, 128],
|
61
|
-
"honeydew": [240, 255, 240],
|
62
|
-
"hotpink": [255, 105, 180],
|
63
|
-
"indianred": [205, 92, 92],
|
64
|
-
"indigo": [75, 0, 130],
|
65
|
-
"ivory": [255, 255, 240],
|
66
|
-
"khaki": [240, 230, 140],
|
67
|
-
"lavender": [230, 230, 250],
|
68
|
-
"lavenderblush": [255, 240, 245],
|
69
|
-
"lawngreen": [124, 252, 0],
|
70
|
-
"lemonchiffon": [255, 250, 205],
|
71
|
-
"lightblue": [173, 216, 230],
|
72
|
-
"lightcoral": [240, 128, 128],
|
73
|
-
"lightcyan": [224, 255, 255],
|
74
|
-
"lightgoldenrodyellow": [250, 250, 210],
|
75
|
-
"lightgray": [211, 211, 211],
|
76
|
-
"lightgreen": [144, 238, 144],
|
77
|
-
"lightgrey": [211, 211, 211],
|
78
|
-
"lightpink": [255, 182, 193],
|
79
|
-
"lightsalmon": [255, 160, 122],
|
80
|
-
"lightseagreen": [32, 178, 170],
|
81
|
-
"lightskyblue": [135, 206, 250],
|
82
|
-
"lightslategray": [119, 136, 153],
|
83
|
-
"lightslategrey": [119, 136, 153],
|
84
|
-
"lightsteelblue": [176, 196, 222],
|
85
|
-
"lightyellow": [255, 255, 224],
|
86
|
-
"lime": [0, 255, 0],
|
87
|
-
"limegreen": [50, 205, 50],
|
88
|
-
"linen": [250, 240, 230],
|
89
|
-
"magenta": [255, 0, 255],
|
90
|
-
"maroon": [128, 0, 0],
|
91
|
-
"mediumaquamarine": [102, 205, 170],
|
92
|
-
"mediumblue": [0, 0, 205],
|
93
|
-
"mediumorchid": [186, 85, 211],
|
94
|
-
"mediumpurple": [147, 112, 219],
|
95
|
-
"mediumseagreen": [60, 179, 113],
|
96
|
-
"mediumslateblue": [123, 104, 238],
|
97
|
-
"mediumspringgreen": [0, 250, 154],
|
98
|
-
"mediumturquoise": [72, 209, 204],
|
99
|
-
"mediumvioletred": [199, 21, 133],
|
100
|
-
"midnightblue": [25, 25, 112],
|
101
|
-
"mintcream": [245, 255, 250],
|
102
|
-
"mistyrose": [255, 228, 225],
|
103
|
-
"moccasin": [255, 228, 181],
|
104
|
-
"navajowhite": [255, 222, 173],
|
105
|
-
"navy": [0, 0, 128],
|
106
|
-
"oldlace": [253, 245, 230],
|
107
|
-
"olive": [128, 128, 0],
|
108
|
-
"olivedrab": [107, 142, 35],
|
109
|
-
"orange": [255, 165, 0],
|
110
|
-
"orangered": [255, 69, 0],
|
111
|
-
"orchid": [218, 112, 214],
|
112
|
-
"palegoldenrod": [238, 232, 170],
|
113
|
-
"palegreen": [152, 251, 152],
|
114
|
-
"paleturquoise": [175, 238, 238],
|
115
|
-
"palevioletred": [219, 112, 147],
|
116
|
-
"papayawhip": [255, 239, 213],
|
117
|
-
"peachpuff": [255, 218, 185],
|
118
|
-
"peru": [205, 133, 63],
|
119
|
-
"pink": [255, 192, 203],
|
120
|
-
"plum": [221, 160, 221],
|
121
|
-
"powderblue": [176, 224, 230],
|
122
|
-
"purple": [128, 0, 128],
|
123
|
-
"rebeccapurple": [102, 51, 153],
|
124
|
-
"red": [255, 0, 0],
|
125
|
-
"rosybrown": [188, 143, 143],
|
126
|
-
"royalblue": [65, 105, 225],
|
127
|
-
"saddlebrown": [139, 69, 19],
|
128
|
-
"salmon": [250, 128, 114],
|
129
|
-
"sandybrown": [244, 164, 96],
|
130
|
-
"seagreen": [46, 139, 87],
|
131
|
-
"seashell": [255, 245, 238],
|
132
|
-
"sienna": [160, 82, 45],
|
133
|
-
"silver": [192, 192, 192],
|
134
|
-
"skyblue": [135, 206, 235],
|
135
|
-
"slateblue": [106, 90, 205],
|
136
|
-
"slategray": [112, 128, 144],
|
137
|
-
"slategrey": [112, 128, 144],
|
138
|
-
"snow": [255, 250, 250],
|
139
|
-
"springgreen": [0, 255, 127],
|
140
|
-
"steelblue": [70, 130, 180],
|
141
|
-
"tan": [210, 180, 140],
|
142
|
-
"teal": [0, 128, 128],
|
143
|
-
"thistle": [216, 191, 216],
|
144
|
-
"tomato": [255, 99, 71],
|
145
|
-
"turquoise": [64, 224, 208],
|
146
|
-
"violet": [238, 130, 238],
|
147
|
-
"wheat": [245, 222, 179],
|
148
|
-
"white": [255, 255, 255],
|
149
|
-
"whitesmoke": [245, 245, 245],
|
150
|
-
"yellow": [255, 255, 0],
|
151
|
-
"yellowgreen": [154, 205, 50]
|
152
|
-
};
|
1
|
+
'use strict'
|
2
|
+
|
3
|
+
module.exports = {
|
4
|
+
"aliceblue": [240, 248, 255],
|
5
|
+
"antiquewhite": [250, 235, 215],
|
6
|
+
"aqua": [0, 255, 255],
|
7
|
+
"aquamarine": [127, 255, 212],
|
8
|
+
"azure": [240, 255, 255],
|
9
|
+
"beige": [245, 245, 220],
|
10
|
+
"bisque": [255, 228, 196],
|
11
|
+
"black": [0, 0, 0],
|
12
|
+
"blanchedalmond": [255, 235, 205],
|
13
|
+
"blue": [0, 0, 255],
|
14
|
+
"blueviolet": [138, 43, 226],
|
15
|
+
"brown": [165, 42, 42],
|
16
|
+
"burlywood": [222, 184, 135],
|
17
|
+
"cadetblue": [95, 158, 160],
|
18
|
+
"chartreuse": [127, 255, 0],
|
19
|
+
"chocolate": [210, 105, 30],
|
20
|
+
"coral": [255, 127, 80],
|
21
|
+
"cornflowerblue": [100, 149, 237],
|
22
|
+
"cornsilk": [255, 248, 220],
|
23
|
+
"crimson": [220, 20, 60],
|
24
|
+
"cyan": [0, 255, 255],
|
25
|
+
"darkblue": [0, 0, 139],
|
26
|
+
"darkcyan": [0, 139, 139],
|
27
|
+
"darkgoldenrod": [184, 134, 11],
|
28
|
+
"darkgray": [169, 169, 169],
|
29
|
+
"darkgreen": [0, 100, 0],
|
30
|
+
"darkgrey": [169, 169, 169],
|
31
|
+
"darkkhaki": [189, 183, 107],
|
32
|
+
"darkmagenta": [139, 0, 139],
|
33
|
+
"darkolivegreen": [85, 107, 47],
|
34
|
+
"darkorange": [255, 140, 0],
|
35
|
+
"darkorchid": [153, 50, 204],
|
36
|
+
"darkred": [139, 0, 0],
|
37
|
+
"darksalmon": [233, 150, 122],
|
38
|
+
"darkseagreen": [143, 188, 143],
|
39
|
+
"darkslateblue": [72, 61, 139],
|
40
|
+
"darkslategray": [47, 79, 79],
|
41
|
+
"darkslategrey": [47, 79, 79],
|
42
|
+
"darkturquoise": [0, 206, 209],
|
43
|
+
"darkviolet": [148, 0, 211],
|
44
|
+
"deeppink": [255, 20, 147],
|
45
|
+
"deepskyblue": [0, 191, 255],
|
46
|
+
"dimgray": [105, 105, 105],
|
47
|
+
"dimgrey": [105, 105, 105],
|
48
|
+
"dodgerblue": [30, 144, 255],
|
49
|
+
"firebrick": [178, 34, 34],
|
50
|
+
"floralwhite": [255, 250, 240],
|
51
|
+
"forestgreen": [34, 139, 34],
|
52
|
+
"fuchsia": [255, 0, 255],
|
53
|
+
"gainsboro": [220, 220, 220],
|
54
|
+
"ghostwhite": [248, 248, 255],
|
55
|
+
"gold": [255, 215, 0],
|
56
|
+
"goldenrod": [218, 165, 32],
|
57
|
+
"gray": [128, 128, 128],
|
58
|
+
"green": [0, 128, 0],
|
59
|
+
"greenyellow": [173, 255, 47],
|
60
|
+
"grey": [128, 128, 128],
|
61
|
+
"honeydew": [240, 255, 240],
|
62
|
+
"hotpink": [255, 105, 180],
|
63
|
+
"indianred": [205, 92, 92],
|
64
|
+
"indigo": [75, 0, 130],
|
65
|
+
"ivory": [255, 255, 240],
|
66
|
+
"khaki": [240, 230, 140],
|
67
|
+
"lavender": [230, 230, 250],
|
68
|
+
"lavenderblush": [255, 240, 245],
|
69
|
+
"lawngreen": [124, 252, 0],
|
70
|
+
"lemonchiffon": [255, 250, 205],
|
71
|
+
"lightblue": [173, 216, 230],
|
72
|
+
"lightcoral": [240, 128, 128],
|
73
|
+
"lightcyan": [224, 255, 255],
|
74
|
+
"lightgoldenrodyellow": [250, 250, 210],
|
75
|
+
"lightgray": [211, 211, 211],
|
76
|
+
"lightgreen": [144, 238, 144],
|
77
|
+
"lightgrey": [211, 211, 211],
|
78
|
+
"lightpink": [255, 182, 193],
|
79
|
+
"lightsalmon": [255, 160, 122],
|
80
|
+
"lightseagreen": [32, 178, 170],
|
81
|
+
"lightskyblue": [135, 206, 250],
|
82
|
+
"lightslategray": [119, 136, 153],
|
83
|
+
"lightslategrey": [119, 136, 153],
|
84
|
+
"lightsteelblue": [176, 196, 222],
|
85
|
+
"lightyellow": [255, 255, 224],
|
86
|
+
"lime": [0, 255, 0],
|
87
|
+
"limegreen": [50, 205, 50],
|
88
|
+
"linen": [250, 240, 230],
|
89
|
+
"magenta": [255, 0, 255],
|
90
|
+
"maroon": [128, 0, 0],
|
91
|
+
"mediumaquamarine": [102, 205, 170],
|
92
|
+
"mediumblue": [0, 0, 205],
|
93
|
+
"mediumorchid": [186, 85, 211],
|
94
|
+
"mediumpurple": [147, 112, 219],
|
95
|
+
"mediumseagreen": [60, 179, 113],
|
96
|
+
"mediumslateblue": [123, 104, 238],
|
97
|
+
"mediumspringgreen": [0, 250, 154],
|
98
|
+
"mediumturquoise": [72, 209, 204],
|
99
|
+
"mediumvioletred": [199, 21, 133],
|
100
|
+
"midnightblue": [25, 25, 112],
|
101
|
+
"mintcream": [245, 255, 250],
|
102
|
+
"mistyrose": [255, 228, 225],
|
103
|
+
"moccasin": [255, 228, 181],
|
104
|
+
"navajowhite": [255, 222, 173],
|
105
|
+
"navy": [0, 0, 128],
|
106
|
+
"oldlace": [253, 245, 230],
|
107
|
+
"olive": [128, 128, 0],
|
108
|
+
"olivedrab": [107, 142, 35],
|
109
|
+
"orange": [255, 165, 0],
|
110
|
+
"orangered": [255, 69, 0],
|
111
|
+
"orchid": [218, 112, 214],
|
112
|
+
"palegoldenrod": [238, 232, 170],
|
113
|
+
"palegreen": [152, 251, 152],
|
114
|
+
"paleturquoise": [175, 238, 238],
|
115
|
+
"palevioletred": [219, 112, 147],
|
116
|
+
"papayawhip": [255, 239, 213],
|
117
|
+
"peachpuff": [255, 218, 185],
|
118
|
+
"peru": [205, 133, 63],
|
119
|
+
"pink": [255, 192, 203],
|
120
|
+
"plum": [221, 160, 221],
|
121
|
+
"powderblue": [176, 224, 230],
|
122
|
+
"purple": [128, 0, 128],
|
123
|
+
"rebeccapurple": [102, 51, 153],
|
124
|
+
"red": [255, 0, 0],
|
125
|
+
"rosybrown": [188, 143, 143],
|
126
|
+
"royalblue": [65, 105, 225],
|
127
|
+
"saddlebrown": [139, 69, 19],
|
128
|
+
"salmon": [250, 128, 114],
|
129
|
+
"sandybrown": [244, 164, 96],
|
130
|
+
"seagreen": [46, 139, 87],
|
131
|
+
"seashell": [255, 245, 238],
|
132
|
+
"sienna": [160, 82, 45],
|
133
|
+
"silver": [192, 192, 192],
|
134
|
+
"skyblue": [135, 206, 235],
|
135
|
+
"slateblue": [106, 90, 205],
|
136
|
+
"slategray": [112, 128, 144],
|
137
|
+
"slategrey": [112, 128, 144],
|
138
|
+
"snow": [255, 250, 250],
|
139
|
+
"springgreen": [0, 255, 127],
|
140
|
+
"steelblue": [70, 130, 180],
|
141
|
+
"tan": [210, 180, 140],
|
142
|
+
"teal": [0, 128, 128],
|
143
|
+
"thistle": [216, 191, 216],
|
144
|
+
"tomato": [255, 99, 71],
|
145
|
+
"turquoise": [64, 224, 208],
|
146
|
+
"violet": [238, 130, 238],
|
147
|
+
"wheat": [245, 222, 179],
|
148
|
+
"white": [255, 255, 255],
|
149
|
+
"whitesmoke": [245, 245, 245],
|
150
|
+
"yellow": [255, 255, 0],
|
151
|
+
"yellowgreen": [154, 205, 50]
|
152
|
+
};
|