@aibee/crc-bmap 0.0.79 → 0.0.80

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.
package/lib/bmap.esm.js CHANGED
@@ -414,7 +414,7 @@ function darkenColor(hexColor) {
414
414
  let r = parseInt(hexColor.substring(1, 3), 16);
415
415
  let g = parseInt(hexColor.substring(3, 5), 16);
416
416
  let b = parseInt(hexColor.substring(5, 7), 16);
417
- const factor = 0.7;
417
+ const factor = 0.8;
418
418
  r = Math.floor(r * factor);
419
419
  g = Math.floor(g * factor);
420
420
  b = Math.floor(b * factor);