tables.ts 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /**
  2. * Copyright (c) 2018 mol* contributors, licensed under MIT, See LICENSE file for more info.
  3. *
  4. * @author Alexander Rose <alexander.rose@weirdbyte.de>
  5. */
  6. /**
  7. * Brewer Color Lists
  8. *
  9. * Copyright (c) 2002 Cynthia Brewer, Mark Harrower, and The Pennsylvania State University.
  10. * Licensed under the Apache License, Version 2.0 (the "License");
  11. */
  12. export const ColorBrewer = {
  13. // sequential
  14. OrRd: [0xfff7ec, 0xfee8c8, 0xfdd49e, 0xfdbb84, 0xfc8d59, 0xef6548, 0xd7301f, 0xb30000, 0x7f0000],
  15. PuBu: [0xfff7fb, 0xece7f2, 0xd0d1e6, 0xa6bddb, 0x74a9cf, 0x3690c0, 0x0570b0, 0x045a8d, 0x023858],
  16. BuPu: [0xf7fcfd, 0xe0ecf4, 0xbfd3e6, 0x9ebcda, 0x8c96c6, 0x8c6bb1, 0x88419d, 0x810f7c, 0x4d004b],
  17. Oranges: [0xfff5eb, 0xfee6ce, 0xfdd0a2, 0xfdae6b, 0xfd8d3c, 0xf16913, 0xd94801, 0xa63603, 0x7f2704],
  18. BuGn: [0xf7fcfd, 0xe5f5f9, 0xccece6, 0x99d8c9, 0x66c2a4, 0x41ae76, 0x238b45, 0x006d2c, 0x00441b],
  19. YlOrBr: [0xffffe5, 0xfff7bc, 0xfee391, 0xfec44f, 0xfe9929, 0xec7014, 0xcc4c02, 0x993404, 0x662506],
  20. YlGn: [0xffffe5, 0xf7fcb9, 0xd9f0a3, 0xaddd8e, 0x78c679, 0x41ab5d, 0x238443, 0x006837, 0x004529],
  21. Reds: [0xfff5f0, 0xfee0d2, 0xfcbba1, 0xfc9272, 0xfb6a4a, 0xef3b2c, 0xcb181d, 0xa50f15, 0x67000d],
  22. RdPu: [0xfff7f3, 0xfde0dd, 0xfcc5c0, 0xfa9fb5, 0xf768a1, 0xdd3497, 0xae017e, 0x7a0177, 0x49006a],
  23. Greens: [0xf7fcf5, 0xe5f5e0, 0xc7e9c0, 0xa1d99b, 0x74c476, 0x41ab5d, 0x238b45, 0x006d2c, 0x00441b],
  24. YlGnBu: [0xffffd9, 0xedf8b1, 0xc7e9b4, 0x7fcdbb, 0x41b6c4, 0x1d91c0, 0x225ea8, 0x253494, 0x081d58],
  25. Purples: [0xfcfbfd, 0xefedf5, 0xdadaeb, 0xbcbddc, 0x9e9ac8, 0x807dba, 0x6a51a3, 0x54278f, 0x3f007d],
  26. GnBu: [0xf7fcf0, 0xe0f3db, 0xccebc5, 0xa8ddb5, 0x7bccc4, 0x4eb3d3, 0x2b8cbe, 0x0868ac, 0x084081],
  27. Greys: [0xffffff, 0xf0f0f0, 0xd9d9d9, 0xbdbdbd, 0x969696, 0x737373, 0x525252, 0x252525, 0x000000],
  28. YlOrRd: [0xffffcc, 0xffeda0, 0xfed976, 0xfeb24c, 0xfd8d3c, 0xfc4e2a, 0xe31a1c, 0xbd0026, 0x800026],
  29. PuRd: [0xf7f4f9, 0xe7e1ef, 0xd4b9da, 0xc994c7, 0xdf65b0, 0xe7298a, 0xce1256, 0x980043, 0x67001f],
  30. Blues: [0xf7fbff, 0xdeebf7, 0xc6dbef, 0x9ecae1, 0x6baed6, 0x4292c6, 0x2171b5, 0x08519c, 0x08306b],
  31. PuBuGn: [0xfff7fb, 0xece2f0, 0xd0d1e6, 0xa6bddb, 0x67a9cf, 0x3690c0, 0x02818a, 0x016c59, 0x014636],
  32. Viridis: [0x440154, 0x482777, 0x3f4a8a, 0x31678e, 0x26838f, 0x1f9d8a, 0x6cce5a, 0xb6de2b, 0xfee825],
  33. // diverging
  34. Spectral: [0x9e0142, 0xd53e4f, 0xf46d43, 0xfdae61, 0xfee08b, 0xffffbf, 0xe6f598, 0xabdda4, 0x66c2a5, 0x3288bd, 0x5e4fa2],
  35. RdYlGn: [0xa50026, 0xd73027, 0xf46d43, 0xfdae61, 0xfee08b, 0xffffbf, 0xd9ef8b, 0xa6d96a, 0x66bd63, 0x1a9850, 0x006837],
  36. RdBu: [0x67001f, 0xb2182b, 0xd6604d, 0xf4a582, 0xfddbc7, 0xf7f7f7, 0xd1e5f0, 0x92c5de, 0x4393c3, 0x2166ac, 0x053061],
  37. PiYG: [0x8e0152, 0xc51b7d, 0xde77ae, 0xf1b6da, 0xfde0ef, 0xf7f7f7, 0xe6f5d0, 0xb8e186, 0x7fbc41, 0x4d9221, 0x276419],
  38. PRGn: [0x40004b, 0x762a83, 0x9970ab, 0xc2a5cf, 0xe7d4e8, 0xf7f7f7, 0xd9f0d3, 0xa6dba0, 0x5aae61, 0x1b7837, 0x00441b],
  39. RdYlBu: [0xa50026, 0xd73027, 0xf46d43, 0xfdae61, 0xfee090, 0xffffbf, 0xe0f3f8, 0xabd9e9, 0x74add1, 0x4575b4, 0x313695],
  40. BrBG: [0x543005, 0x8c510a, 0xbf812d, 0xdfc27d, 0xf6e8c3, 0xf5f5f5, 0xc7eae5, 0x80cdc1, 0x35978f, 0x01665e, 0x003c30],
  41. RdGy: [0x67001f, 0xb2182b, 0xd6604d, 0xf4a582, 0xfddbc7, 0xffffff, 0xe0e0e0, 0xbababa, 0x878787, 0x4d4d4d, 0x1a1a1a],
  42. PuOr: [0x7f3b08, 0xb35806, 0xe08214, 0xfdb863, 0xfee0b6, 0xf7f7f7, 0xd8daeb, 0xb2abd2, 0x8073ac, 0x542788, 0x2d004b],
  43. // qualitative
  44. Set2: [0x66c2a5, 0xfc8d62, 0x8da0cb, 0xe78ac3, 0xa6d854, 0xffd92f, 0xe5c494, 0xb3b3b3],
  45. Accent: [0x7fc97f, 0xbeaed4, 0xfdc086, 0xffff99, 0x386cb0, 0xf0027f, 0xbf5b17, 0x666666],
  46. Set1: [0xe41a1c, 0x377eb8, 0x4daf4a, 0x984ea3, 0xff7f00, 0xffff33, 0xa65628, 0xf781bf, 0x999999],
  47. Set3: [0x8dd3c7, 0xffffb3, 0xbebada, 0xfb8072, 0x80b1d3, 0xfdb462, 0xb3de69, 0xfccde5, 0xd9d9d9, 0xbc80bd, 0xccebc5, 0xffed6f],
  48. Dark2: [0x1b9e77, 0xd95f02, 0x7570b3, 0xe7298a, 0x66a61e, 0xe6ab02, 0xa6761d, 0x666666],
  49. Paired: [0xa6cee3, 0x1f78b4, 0xb2df8a, 0x33a02c, 0xfb9a99, 0xe31a1c, 0xfdbf6f, 0xff7f00, 0xcab2d6, 0x6a3d9a, 0xffff99, 0xb15928],
  50. Pastel2: [0xb3e2cd, 0xfdcdac, 0xcbd5e8, 0xf4cae4, 0xe6f5c9, 0xfff2ae, 0xf1e2cc, 0xcccccc],
  51. Pastel1: [0xfbb4ae, 0xb3cde3, 0xccebc5, 0xdecbe4, 0xfed9a6, 0xffffcc, 0xe5d8bd, 0xfddaec, 0xf2f2f2]
  52. }
  53. /** X11 color names http://www.w3.org/TR/css3-color/#svg-color */
  54. export const ColorNames = {
  55. aliceblue: 0xf0f8ff,
  56. antiquewhite: 0xfaebd7,
  57. aqua: 0x00ffff,
  58. aquamarine: 0x7fffd4,
  59. azure: 0xf0ffff,
  60. beige: 0xf5f5dc,
  61. bisque: 0xffe4c4,
  62. black: 0x000000,
  63. blanchedalmond: 0xffebcd,
  64. blue: 0x0000ff,
  65. blueviolet: 0x8a2be2,
  66. brown: 0xa52a2a,
  67. burlywood: 0xdeb887,
  68. cadetblue: 0x5f9ea0,
  69. chartreuse: 0x7fff00,
  70. chocolate: 0xd2691e,
  71. coral: 0xff7f50,
  72. cornflower: 0x6495ed,
  73. cornflowerblue: 0x6495ed,
  74. cornsilk: 0xfff8dc,
  75. crimson: 0xdc143c,
  76. cyan: 0x00ffff,
  77. darkblue: 0x00008b,
  78. darkcyan: 0x008b8b,
  79. darkgoldenrod: 0xb8860b,
  80. darkgray: 0xa9a9a9,
  81. darkgreen: 0x006400,
  82. darkgrey: 0xa9a9a9,
  83. darkkhaki: 0xbdb76b,
  84. darkmagenta: 0x8b008b,
  85. darkolivegreen: 0x556b2f,
  86. darkorange: 0xff8c00,
  87. darkorchid: 0x9932cc,
  88. darkred: 0x8b0000,
  89. darksalmon: 0xe9967a,
  90. darkseagreen: 0x8fbc8f,
  91. darkslateblue: 0x483d8b,
  92. darkslategray: 0x2f4f4f,
  93. darkslategrey: 0x2f4f4f,
  94. darkturquoise: 0x00ced1,
  95. darkviolet: 0x9400d3,
  96. deeppink: 0xff1493,
  97. deepskyblue: 0x00bfff,
  98. dimgray: 0x696969,
  99. dimgrey: 0x696969,
  100. dodgerblue: 0x1e90ff,
  101. firebrick: 0xb22222,
  102. floralwhite: 0xfffaf0,
  103. forestgreen: 0x228b22,
  104. fuchsia: 0xff00ff,
  105. gainsboro: 0xdcdcdc,
  106. ghostwhite: 0xf8f8ff,
  107. gold: 0xffd700,
  108. goldenrod: 0xdaa520,
  109. gray: 0x808080,
  110. green: 0x008000,
  111. greenyellow: 0xadff2f,
  112. grey: 0x808080,
  113. honeydew: 0xf0fff0,
  114. hotpink: 0xff69b4,
  115. indianred: 0xcd5c5c,
  116. indigo: 0x4b0082,
  117. ivory: 0xfffff0,
  118. khaki: 0xf0e68c,
  119. laserlemon: 0xffff54,
  120. lavender: 0xe6e6fa,
  121. lavenderblush: 0xfff0f5,
  122. lawngreen: 0x7cfc00,
  123. lemonchiffon: 0xfffacd,
  124. lightblue: 0xadd8e6,
  125. lightcoral: 0xf08080,
  126. lightcyan: 0xe0ffff,
  127. lightgoldenrod: 0xfafad2,
  128. lightgoldenrodyellow: 0xfafad2,
  129. lightgray: 0xd3d3d3,
  130. lightgreen: 0x90ee90,
  131. lightgrey: 0xd3d3d3,
  132. lightpink: 0xffb6c1,
  133. lightsalmon: 0xffa07a,
  134. lightseagreen: 0x20b2aa,
  135. lightskyblue: 0x87cefa,
  136. lightslategray: 0x778899,
  137. lightslategrey: 0x778899,
  138. lightsteelblue: 0xb0c4de,
  139. lightyellow: 0xffffe0,
  140. lime: 0x00ff00,
  141. limegreen: 0x32cd32,
  142. linen: 0xfaf0e6,
  143. magenta: 0xff00ff,
  144. maroon: 0x800000,
  145. maroon2: 0x7f0000,
  146. maroon3: 0xb03060,
  147. mediumaquamarine: 0x66cdaa,
  148. mediumblue: 0x0000cd,
  149. mediumorchid: 0xba55d3,
  150. mediumpurple: 0x9370db,
  151. mediumseagreen: 0x3cb371,
  152. mediumslateblue: 0x7b68ee,
  153. mediumspringgreen: 0x00fa9a,
  154. mediumturquoise: 0x48d1cc,
  155. mediumvioletred: 0xc71585,
  156. midnightblue: 0x191970,
  157. mintcream: 0xf5fffa,
  158. mistyrose: 0xffe4e1,
  159. moccasin: 0xffe4b5,
  160. navajowhite: 0xffdead,
  161. navy: 0x000080,
  162. oldlace: 0xfdf5e6,
  163. olive: 0x808000,
  164. olivedrab: 0x6b8e23,
  165. orange: 0xffa500,
  166. orangered: 0xff4500,
  167. orchid: 0xda70d6,
  168. palegoldenrod: 0xeee8aa,
  169. palegreen: 0x98fb98,
  170. paleturquoise: 0xafeeee,
  171. palevioletred: 0xdb7093,
  172. papayawhip: 0xffefd5,
  173. peachpuff: 0xffdab9,
  174. peru: 0xcd853f,
  175. pink: 0xffc0cb,
  176. plum: 0xdda0dd,
  177. powderblue: 0xb0e0e6,
  178. purple: 0x800080,
  179. purple2: 0x7f007f,
  180. purple3: 0xa020f0,
  181. rebeccapurple: 0x663399,
  182. red: 0xff0000,
  183. rosybrown: 0xbc8f8f,
  184. royalblue: 0x4169e1,
  185. saddlebrown: 0x8b4513,
  186. salmon: 0xfa8072,
  187. sandybrown: 0xf4a460,
  188. seagreen: 0x2e8b57,
  189. seashell: 0xfff5ee,
  190. sienna: 0xa0522d,
  191. silver: 0xc0c0c0,
  192. skyblue: 0x87ceeb,
  193. slateblue: 0x6a5acd,
  194. slategray: 0x708090,
  195. slategrey: 0x708090,
  196. snow: 0xfffafa,
  197. springgreen: 0x00ff7f,
  198. steelblue: 0x4682b4,
  199. tan: 0xd2b48c,
  200. teal: 0x008080,
  201. thistle: 0xd8bfd8,
  202. tomato: 0xff6347,
  203. turquoise: 0x40e0d0,
  204. violet: 0xee82ee,
  205. wheat: 0xf5deb3,
  206. white: 0xffffff,
  207. whitesmoke: 0xf5f5f5,
  208. yellow: 0xffff00,
  209. yellowgreen: 0x9acd32
  210. }