gedcom-d3 2.0.8 → 2.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/d3ize.js +18 -18
  2. package/package.json +1 -1
package/d3ize.js CHANGED
@@ -422,35 +422,35 @@ const getFamilies = (p) => {
422
422
  // Get color
423
423
  const getColor = (p, surnameList) => {
424
424
  const colorList = [
425
- '#ff7f50', // coral
425
+ '#ef8a65', // coral
426
426
  '#00b4ff', // sky blue
427
427
  '#fac641', // mexican egg yolk
428
- '#8a9b0f', // olive
429
- '#70ccc7', // sea foam
430
- '#a37e58', // light brown
431
- '#ec4913', // burnt orange
432
- '#a27dbd', // soft royal purple
433
- '#11644d', // forest
434
- '#b3347c', // magenta
435
- '#359668', // grass & sage
428
+ '#c8d84c', // olive
429
+ '#e1b386', // light brown
430
+ '#a5c2cc', // light blue grey
436
431
  '#e87c76', // soft pink
437
- '#80d152', // neon green
438
- '#ecd078', // tangerine
432
+ '#d0a8ec', // soft royal purple
433
+ '#8ad5b2', // grass & sage
434
+ '#f8a7d0', // dry wine
439
435
  '#6e90e6', // ligt purple blue
436
+ '#a6e9e6', // sea foam
437
+ '#df9ac1', // magenta
438
+ '#4ae9bc', // forest
440
439
  '#e08e79', // blush
441
- '#c44d58', // rouge
440
+ '#80d152', // neon green
441
+ '#e7c34e', // tangerine
442
442
  '#7ff0ca', // light sea foam
443
+ '#ff835a', // burnt orange
444
+ '#eebd6e', // chocolate
443
445
  '#a6b890', // olive sage
444
- '#a5c2cc', // light blue grey
446
+ '#c44d58', // rouge
445
447
  '#e8b28e', // peach
446
- '#826942', // chocolate
447
448
  '#d4ee5e', // lime
448
- '#cad96a', // light yellow
449
+ '#f3f621', // light yellow
449
450
  '#e887aa', // newborn pink
450
- '#6541a3', // royal purple
451
- '#75616b', // dry wine
451
+ '#c4a8f6', // royal purple
452
452
  '#71cfde', // baby foam
453
- '#7a7a7a', // light grey
453
+ '#ccc', // light grey
454
454
  ]
455
455
 
456
456
  // If color description listed in GEDCOM
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "gedcom-d3",
3
- "version": "2.0.8",
3
+ "version": "2.0.9",
4
4
  "description": "A GEDCOM parser, which translates GEDCOM (.ged) files into D3 capable JSON. This package is specifically designed to prepare data for use in https://github.com/oh-kay-blanket/blood-lines",
5
5
  "main": "index.js",
6
6
  "scripts": {