colors.js 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. /**
  2. * Licensed to the Apache Software Foundation (ASF) under one
  3. * or more contributor license agreements. See the NOTICE file
  4. * distributed with this work for additional information
  5. * regarding copyright ownership. The ASF licenses this file
  6. * to you under the Apache License, Version 2.0 (the
  7. * "License"); you may not use this file except in compliance
  8. * with the License. You may obtain a copy of the License at
  9. *
  10. * http://www.apache.org/licenses/LICENSE-2.0
  11. *
  12. * Unless required by applicable law or agreed to in writing,
  13. * software distributed under the License is distributed on an
  14. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  15. * KIND, either express or implied. See the License for the
  16. * specific language governing permissions and limitations
  17. * under the License.
  18. */
  19. // https://www.w3.org/wiki/CSS/Properties/color/keywords
  20. module.exports = [
  21. 'black',
  22. 'silver',
  23. 'gray',
  24. 'grey',
  25. 'white',
  26. 'maroon',
  27. 'red',
  28. 'purple',
  29. 'fuchsia',
  30. 'green',
  31. 'lime',
  32. 'olive',
  33. 'yellow',
  34. 'navy',
  35. 'blue',
  36. 'teal',
  37. 'aqua',
  38. 'aliceblue',
  39. 'antiquewhite',
  40. 'aquamarine',
  41. 'azure',
  42. 'beige',
  43. 'bisque',
  44. 'blanchedalmond',
  45. 'blueviolet',
  46. 'brown',
  47. 'burlywood',
  48. 'cadetblue',
  49. 'chartreuse',
  50. 'chocolate',
  51. 'coral',
  52. 'cornflowerblue',
  53. 'cornsilk',
  54. 'crimson',
  55. 'cyan',
  56. 'darkblue',
  57. 'darkcyan',
  58. 'darkgoldenrod',
  59. 'darkgray',
  60. 'darkgreen',
  61. 'darkgrey',
  62. 'darkkhaki',
  63. 'darkmagenta',
  64. 'darkolivegreen',
  65. 'darkorange',
  66. 'darkorchid',
  67. 'darkred',
  68. 'darksalmon',
  69. 'darkseagreen',
  70. 'darkslateblue',
  71. 'darkslategray',
  72. 'darkslategrey',
  73. 'darkturquoise',
  74. 'darkviolet',
  75. 'deeppink',
  76. 'deepskyblue',
  77. 'dimgray',
  78. 'dimgrey',
  79. 'dodgerblue',
  80. 'firebrick',
  81. 'floralwhite',
  82. 'forestgreen',
  83. 'fuchsia',
  84. 'gainsboro',
  85. 'ghostwhite',
  86. 'gold',
  87. 'goldenrod',
  88. 'greenyellow',
  89. 'honeydew',
  90. 'hotpink',
  91. 'indianred',
  92. 'indigo',
  93. 'ivory',
  94. 'khaki',
  95. 'lavender',
  96. 'lavenderblush',
  97. 'lawngreen',
  98. 'lemonchiffon',
  99. 'lightblue',
  100. 'lightcoral',
  101. 'lightcyan',
  102. 'lightgoldenrodyellow',
  103. 'lightgray',
  104. 'lightgreen',
  105. 'lightgrey',
  106. 'lightpink',
  107. 'lightsalmon',
  108. 'lightseagreen',
  109. 'lightskyblue',
  110. 'lightslategray',
  111. 'lightslategrey',
  112. 'lightsteelblue',
  113. 'lightyellow',
  114. 'limegreen',
  115. 'linen',
  116. 'magenta',
  117. 'maroon',
  118. 'mediumaquamarine',
  119. 'mediumblue',
  120. 'mediumorchid',
  121. 'mediumpurple',
  122. 'mediumseagreen',
  123. 'mediumslateblue',
  124. 'mediumspringgreen',
  125. 'mediumturquoise',
  126. 'mediumvioletred',
  127. 'midnightblue',
  128. 'mintcream',
  129. 'mistyrose',
  130. 'moccasin',
  131. 'navajowhite',
  132. 'oldlace',
  133. 'olivedrab',
  134. 'orange',
  135. 'orangered',
  136. 'orchid',
  137. 'palegoldenrod',
  138. 'palegreen',
  139. 'paleturquoise',
  140. 'palevioletred',
  141. 'papayawhip',
  142. 'peachpuff',
  143. 'peru',
  144. 'pink',
  145. 'plum',
  146. 'powderblue',
  147. 'rosybrown',
  148. 'royalblue',
  149. 'saddlebrown',
  150. 'salmon',
  151. 'sandybrown',
  152. 'seagreen',
  153. 'seashell',
  154. 'sienna',
  155. 'skyblue',
  156. 'slateblue',
  157. 'slategray',
  158. 'slategrey',
  159. 'snow',
  160. 'springgreen',
  161. 'steelblue',
  162. 'tan',
  163. 'teal',
  164. 'thistle',
  165. 'tomato',
  166. 'turquoise',
  167. 'violet',
  168. 'wheat',
  169. 'whitesmoke',
  170. 'yellowgreen',
  171. ];