@threedddplus/logoeditor 0.0.146 → 0.0.148
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/dist/logoeditor.cjs.development.js +339 -283
- package/dist/logoeditor.cjs.development.js.map +1 -1
- package/dist/logoeditor.cjs.production.min.js +1 -1
- package/dist/logoeditor.cjs.production.min.js.map +1 -1
- package/dist/logoeditor.esm.js +339 -283
- package/dist/logoeditor.esm.js.map +1 -1
- package/dist/store/converters/index.d.ts +2 -2
- package/package.json +2 -1
package/dist/logoeditor.esm.js
CHANGED
@@ -4028,10 +4028,13 @@ var optionpresets = {
|
|
4028
4028
|
}; // End of optionpresets
|
4029
4029
|
|
4030
4030
|
var converterSlice = function converterSlice(set, get) {
|
4031
|
-
var processImage = function processImage(svgstr, colorValue, canvasToLoad) {
|
4031
|
+
var processImage = function processImage(svgstr, colorValue, canvasToLoad, addCheckerBox) {
|
4032
4032
|
if (canvasToLoad === void 0) {
|
4033
4033
|
canvasToLoad = use3dddPlus.getState().popupCanv;
|
4034
4034
|
}
|
4035
|
+
if (addCheckerBox === void 0) {
|
4036
|
+
addCheckerBox = true;
|
4037
|
+
}
|
4035
4038
|
fabric.loadSVGFromString(
|
4036
4039
|
//@ts-ignore
|
4037
4040
|
new String(svgstr), function (objects, options) {
|
@@ -4222,40 +4225,42 @@ var converterSlice = function converterSlice(set, get) {
|
|
4222
4225
|
});
|
4223
4226
|
return rect;
|
4224
4227
|
}
|
4225
|
-
|
4226
|
-
|
4227
|
-
var
|
4228
|
-
|
4229
|
-
|
4230
|
-
|
4231
|
-
|
4232
|
-
|
4233
|
-
|
4234
|
-
|
4235
|
-
|
4236
|
-
|
4237
|
-
|
4238
|
-
|
4239
|
-
var y = j * gridSize;
|
4240
|
-
canvas.add(new fabric.Line([0, y, canvasWidth, y], {
|
4241
|
-
stroke: '#FFFFFF',
|
4242
|
-
selectable: false,
|
4243
|
-
lockMovementX: true,
|
4244
|
-
lockMovementY: true,
|
4245
|
-
lockScalingX: true,
|
4246
|
-
lockScalingY: true,
|
4247
|
-
type: 'line'
|
4248
|
-
}));
|
4249
|
-
}
|
4250
|
-
// Fill grid with checkerboard pattern
|
4251
|
-
for (var i = 0; i < numCols; i++) {
|
4228
|
+
if (addCheckerBox) {
|
4229
|
+
// Create grid lines
|
4230
|
+
for (var i = 0; i < numCols; i++) {
|
4231
|
+
var x = i * gridSize;
|
4232
|
+
canvas.add(new fabric.Line([x, 0, x, canvasHeight], {
|
4233
|
+
stroke: '#dadadac7',
|
4234
|
+
selectable: false,
|
4235
|
+
lockMovementX: true,
|
4236
|
+
lockMovementY: true,
|
4237
|
+
lockScalingX: true,
|
4238
|
+
lockScalingY: true,
|
4239
|
+
type: 'line'
|
4240
|
+
}));
|
4241
|
+
}
|
4252
4242
|
for (var j = 0; j < numRows; j++) {
|
4253
|
-
var
|
4254
|
-
|
4255
|
-
|
4256
|
-
|
4257
|
-
|
4258
|
-
|
4243
|
+
var y = j * gridSize;
|
4244
|
+
canvas.add(new fabric.Line([0, y, canvasWidth, y], {
|
4245
|
+
stroke: '#FFFFFF',
|
4246
|
+
selectable: false,
|
4247
|
+
lockMovementX: true,
|
4248
|
+
lockMovementY: true,
|
4249
|
+
lockScalingX: true,
|
4250
|
+
lockScalingY: true,
|
4251
|
+
type: 'line'
|
4252
|
+
}));
|
4253
|
+
}
|
4254
|
+
// Fill grid with checkerboard pattern
|
4255
|
+
for (var i = 0; i < numCols; i++) {
|
4256
|
+
for (var j = 0; j < numRows; j++) {
|
4257
|
+
var _use3dddPlus$getState2, _use3dddPlus$getState3;
|
4258
|
+
var left = i * gridSize;
|
4259
|
+
var top = j * gridSize;
|
4260
|
+
var isEvenRow = j % 2 === 0;
|
4261
|
+
var rect = createCheckerboardRect(left, top, gridSize, gridSize, isEvenRow);
|
4262
|
+
(_use3dddPlus$getState2 = use3dddPlus.getState()) == null ? void 0 : (_use3dddPlus$getState3 = _use3dddPlus$getState2.popupCanv) == null ? void 0 : _use3dddPlus$getState3.add(rect);
|
4263
|
+
}
|
4259
4264
|
}
|
4260
4265
|
}
|
4261
4266
|
canvas.add(loadedObject).renderAll();
|
@@ -4270,7 +4275,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4270
4275
|
use3dddPlus.getState().popUpCanvasUpdateModification(true);
|
4271
4276
|
var _objects = canvas.getObjects();
|
4272
4277
|
_objects.forEach(function (element) {
|
4273
|
-
if (element.type !==
|
4278
|
+
if (element.type !== 'line') {
|
4274
4279
|
element.set({
|
4275
4280
|
perPixelTargetFind: true
|
4276
4281
|
});
|
@@ -4366,7 +4371,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4366
4371
|
return aiConvert;
|
4367
4372
|
}(),
|
4368
4373
|
loadImageFromURL: function () {
|
4369
|
-
var _loadImageFromURL = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(url, canvasToLoad) {
|
4374
|
+
var _loadImageFromURL = _asyncToGenerator( /*#__PURE__*/_regeneratorRuntime().mark(function _callee3(url, canvasToLoad, createCheckerBox) {
|
4370
4375
|
var response, blob;
|
4371
4376
|
return _regeneratorRuntime().wrap(function _callee3$(_context3) {
|
4372
4377
|
while (1) switch (_context3.prev = _context3.next) {
|
@@ -4381,7 +4386,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4381
4386
|
return response.text();
|
4382
4387
|
case 6:
|
4383
4388
|
blob = _context3.sent;
|
4384
|
-
processImage(blob, 8, canvasToLoad);
|
4389
|
+
processImage(blob, 8, canvasToLoad, createCheckerBox);
|
4385
4390
|
// return url;
|
4386
4391
|
case 8:
|
4387
4392
|
case "end":
|
@@ -4389,7 +4394,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4389
4394
|
}
|
4390
4395
|
}, _callee3);
|
4391
4396
|
}));
|
4392
|
-
function loadImageFromURL(_x3, _x4) {
|
4397
|
+
function loadImageFromURL(_x3, _x4, _x5) {
|
4393
4398
|
return _loadImageFromURL.apply(this, arguments);
|
4394
4399
|
}
|
4395
4400
|
return loadImageFromURL;
|
@@ -4406,7 +4411,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4406
4411
|
});
|
4407
4412
|
if (convert) {
|
4408
4413
|
if (isSVG) {
|
4409
|
-
if (ext ===
|
4414
|
+
if (ext === 'vectorSVG') {
|
4410
4415
|
use3dddPlus.setState({
|
4411
4416
|
loading: true
|
4412
4417
|
});
|
@@ -4425,7 +4430,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4425
4430
|
reader.readAsText(data);
|
4426
4431
|
}
|
4427
4432
|
} else {
|
4428
|
-
console.log(
|
4433
|
+
console.log('entering INTO ImageTracer-->');
|
4429
4434
|
ImageTracer.imageToSVG(data, function (svgstr) {
|
4430
4435
|
use3dddPlus.setState({
|
4431
4436
|
imageData: svgstr
|
@@ -4434,7 +4439,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4434
4439
|
}, ext && (ext.toLowerCase() === 'jpg' || ext.toLowerCase() === 'jpeg') ? optionpresets.jpg : ext.toLowerCase() === 'png' ? optionpresets.png : optionpresets["default"]);
|
4435
4440
|
}
|
4436
4441
|
} else {
|
4437
|
-
console.log(
|
4442
|
+
console.log('entering iINTO PROCESSIMAGE--->');
|
4438
4443
|
processImage(data, 8);
|
4439
4444
|
}
|
4440
4445
|
},
|
@@ -4655,7 +4660,7 @@ var converterSlice = function converterSlice(set, get) {
|
|
4655
4660
|
}
|
4656
4661
|
}, _callee5);
|
4657
4662
|
}));
|
4658
|
-
function convertPdfToImages(
|
4663
|
+
function convertPdfToImages(_x6) {
|
4659
4664
|
return _convertPdfToImages.apply(this, arguments);
|
4660
4665
|
}
|
4661
4666
|
return convertPdfToImages;
|
@@ -5620,6 +5625,7 @@ var initCanvas = function initCanvas() {
|
|
5620
5625
|
};
|
5621
5626
|
|
5622
5627
|
var ContextMenu = function ContextMenu() {
|
5628
|
+
var _canvas$getActiveObje, _canvas$getActiveObje2;
|
5623
5629
|
var _use3dddPlus = use3dddPlus(function (state) {
|
5624
5630
|
return [state.activeSelection, state.fabricCanvas];
|
5625
5631
|
}, shallow),
|
@@ -5747,10 +5753,38 @@ var ContextMenu = function ContextMenu() {
|
|
5747
5753
|
showContextMenu: false
|
5748
5754
|
});
|
5749
5755
|
};
|
5756
|
+
var ungroup = function ungroup() {
|
5757
|
+
activeObj.toObject = function (toObject) {
|
5758
|
+
return function () {
|
5759
|
+
return fabric.util.object.extend(toObject.call(this), {
|
5760
|
+
objects: this._objects.map(function (obj) {
|
5761
|
+
return obj.toObject();
|
5762
|
+
})
|
5763
|
+
});
|
5764
|
+
};
|
5765
|
+
}(activeObj.toObject);
|
5766
|
+
var items = activeObj._objects;
|
5767
|
+
activeObj._restoreObjectsState();
|
5768
|
+
use3dddPlus.getState().fabricCanvas.remove(activeObj);
|
5769
|
+
items.forEach(function (item) {
|
5770
|
+
use3dddPlus.getState().fabricCanvas.add(item);
|
5771
|
+
// 'id', 'colorFill','shapeType','shapeSize','text','textAlign','stroke',
|
5772
|
+
// 'strokeWidth','fontFamily','icon'
|
5773
|
+
console.log();
|
5774
|
+
});
|
5775
|
+
};
|
5776
|
+
var group = function group() {
|
5777
|
+
var activeObject = use3dddPlus.getState().fabricCanvas.getActiveObject();
|
5778
|
+
if (activeObject.type === 'activeSelection') {
|
5779
|
+
activeObject.toGroup();
|
5780
|
+
canvas.renderAll();
|
5781
|
+
}
|
5782
|
+
};
|
5750
5783
|
var menu = [{
|
5751
5784
|
id: 1,
|
5752
5785
|
name: 'COPY / PASTE ',
|
5753
5786
|
onclick: copy,
|
5787
|
+
display: true,
|
5754
5788
|
icon: React.createElement(Copy, null)
|
5755
5789
|
},
|
5756
5790
|
// {
|
@@ -5763,47 +5797,69 @@ var ContextMenu = function ContextMenu() {
|
|
5763
5797
|
id: 3,
|
5764
5798
|
name: 'Bring to front',
|
5765
5799
|
onclick: bringForward,
|
5800
|
+
display: true,
|
5766
5801
|
icon: React.createElement(SendToFront, null)
|
5767
5802
|
}, {
|
5768
5803
|
id: 4,
|
5769
5804
|
name: 'Send to back',
|
5770
5805
|
onclick: sendBackwards,
|
5806
|
+
display: true,
|
5771
5807
|
icon: React.createElement(SendToBack, null)
|
5772
5808
|
}, {
|
5773
5809
|
id: 5,
|
5774
5810
|
name: 'Bring above objects',
|
5775
5811
|
onclick: bringToFront,
|
5812
|
+
display: true,
|
5776
5813
|
icon: React.createElement(SendAObject, null)
|
5777
5814
|
}, {
|
5778
5815
|
id: 6,
|
5779
5816
|
name: 'Send under objects',
|
5780
5817
|
onclick: sendToBack,
|
5818
|
+
display: true,
|
5781
5819
|
icon: React.createElement(SendUnderObject, null)
|
5782
5820
|
}, {
|
5783
5821
|
id: 7,
|
5784
5822
|
name: 'Flip Horizontal',
|
5785
5823
|
onclick: flipX,
|
5824
|
+
display: true,
|
5786
5825
|
icon: React.createElement(FlipH, null)
|
5787
5826
|
}, {
|
5788
5827
|
id: 8,
|
5789
5828
|
name: 'Flip Vertical',
|
5790
5829
|
onclick: flipY,
|
5830
|
+
display: true,
|
5791
5831
|
icon: React.createElement(FlipV, null)
|
5792
5832
|
}, {
|
5793
5833
|
id: 9,
|
5794
5834
|
name: 'Snap to center',
|
5835
|
+
display: true,
|
5795
5836
|
onclick: snapToCenter,
|
5796
5837
|
icon: React.createElement(SnapToCenter, null)
|
5838
|
+
}, {
|
5839
|
+
id: 10,
|
5840
|
+
name: 'group',
|
5841
|
+
onclick: group,
|
5842
|
+
display: (canvas == null ? void 0 : (_canvas$getActiveObje = canvas.getActiveObject()) == null ? void 0 : _canvas$getActiveObje.type) === 'activeSelection',
|
5843
|
+
icon: React.createElement(SnapToCenter, null)
|
5844
|
+
}, {
|
5845
|
+
id: 10,
|
5846
|
+
name: 'ungroup',
|
5847
|
+
onclick: ungroup,
|
5848
|
+
display: (canvas == null ? void 0 : (_canvas$getActiveObje2 = canvas.getActiveObject()) == null ? void 0 : _canvas$getActiveObje2.type) === "group",
|
5849
|
+
icon: React.createElement(SnapToCenter, null)
|
5797
5850
|
}];
|
5798
5851
|
return React.createElement("ul", null, menu.map(function (item, index) {
|
5799
5852
|
return React.createElement("li", {
|
5800
5853
|
className: "flex cursor-pointer hover:text-[#e11a38] border border-b-[1px] border-[#EBEBEB] px-[30px] py-[14px] ",
|
5801
5854
|
onClick: item.onclick,
|
5802
|
-
key: index
|
5855
|
+
key: index,
|
5856
|
+
style: !item.display ? {
|
5857
|
+
display: 'none'
|
5858
|
+
} : {}
|
5803
5859
|
}, React.createElement("span", null, React.createElement(IconButton, {
|
5804
5860
|
label: "",
|
5805
5861
|
icon: item.icon,
|
5806
|
-
className: "
|
5862
|
+
className: "m-auto cursor-pointer pointer-events-auto",
|
5807
5863
|
size: "1.125rem"
|
5808
5864
|
})), React.createElement("span", {
|
5809
5865
|
className: " pl-[20px] text-sm font-bold uppercase"
|
@@ -6062,365 +6118,365 @@ var css_248z$2 = ".positionClass:before{left:calc(var(--arrowPosition))}";
|
|
6062
6118
|
styleInject(css_248z$2);
|
6063
6119
|
|
6064
6120
|
var defaultColorNames = [{
|
6065
|
-
color: '
|
6066
|
-
name: '
|
6121
|
+
color: 'transparent',
|
6122
|
+
name: 'Transparent'
|
6067
6123
|
}, {
|
6068
|
-
color: '#
|
6069
|
-
name: '
|
6124
|
+
color: '#FFFFFF',
|
6125
|
+
name: 'White'
|
6070
6126
|
}, {
|
6071
|
-
color: '#
|
6072
|
-
name: '
|
6127
|
+
color: '#FAF7ED',
|
6128
|
+
name: 'Cream'
|
6073
6129
|
}, {
|
6074
|
-
color: '#
|
6075
|
-
name: '
|
6130
|
+
color: '#EAE3DC',
|
6131
|
+
name: 'Metallic Champagne'
|
6076
6132
|
}, {
|
6077
|
-
color: '#
|
6078
|
-
name: '
|
6133
|
+
color: '#D7DEE2',
|
6134
|
+
name: 'Light Silver'
|
6079
6135
|
}, {
|
6080
|
-
color: '#
|
6081
|
-
name: '
|
6136
|
+
color: '#E9E7D9',
|
6137
|
+
name: 'Eggshell'
|
6082
6138
|
}, {
|
6083
|
-
color: '#
|
6084
|
-
name: '
|
6139
|
+
color: '#CFCDCD',
|
6140
|
+
name: 'Metallic Silver'
|
6085
6141
|
}, {
|
6086
|
-
color: '#
|
6087
|
-
name: '
|
6142
|
+
color: '#D6D1C3',
|
6143
|
+
name: 'Stone'
|
6088
6144
|
}, {
|
6089
|
-
color: '#
|
6090
|
-
name: '
|
6145
|
+
color: '#C6C8C8',
|
6146
|
+
name: 'Heather Grey'
|
6091
6147
|
}, {
|
6092
|
-
color: '#
|
6093
|
-
name: '
|
6148
|
+
color: '#E9D7B7',
|
6149
|
+
name: 'Khaki'
|
6094
6150
|
}, {
|
6095
|
-
color: '#
|
6096
|
-
name: '
|
6151
|
+
color: '#BDBDC0',
|
6152
|
+
name: 'Silver'
|
6097
6153
|
}, {
|
6098
|
-
color: '#
|
6099
|
-
name: '
|
6154
|
+
color: '#C2C2B8',
|
6155
|
+
name: 'Dark Stone'
|
6100
6156
|
}, {
|
6101
|
-
color: '#
|
6102
|
-
name: '
|
6157
|
+
color: '#FFF9B7',
|
6158
|
+
name: 'Mellow Yellow'
|
6103
6159
|
}, {
|
6104
|
-
color: '#
|
6105
|
-
name: '
|
6160
|
+
color: '#F5DDA2',
|
6161
|
+
name: 'Vegas Gold'
|
6106
6162
|
}, {
|
6107
|
-
color: '#
|
6108
|
-
name: '
|
6163
|
+
color: '#CDE4B4',
|
6164
|
+
name: 'Patina Green'
|
6109
6165
|
}, {
|
6110
|
-
color: '#
|
6111
|
-
name: '
|
6166
|
+
color: '#AADAC9',
|
6167
|
+
name: 'Light Mint'
|
6112
6168
|
}, {
|
6113
|
-
color: '#
|
6114
|
-
name: '
|
6169
|
+
color: '#AECBAC',
|
6170
|
+
name: 'Willow'
|
6115
6171
|
}, {
|
6116
|
-
color: '#
|
6117
|
-
name: '
|
6172
|
+
color: '#BDA998',
|
6173
|
+
name: 'Camo Stone'
|
6118
6174
|
}, {
|
6119
|
-
color: '#
|
6120
|
-
name: '
|
6175
|
+
color: '#8BD6D4',
|
6176
|
+
name: 'Aruba Blue'
|
6121
6177
|
}, {
|
6122
|
-
color: '#
|
6123
|
-
name: '
|
6178
|
+
color: '#EFC78D',
|
6179
|
+
name: 'Tan'
|
6124
6180
|
}, {
|
6125
|
-
color: '#
|
6126
|
-
name: '
|
6181
|
+
color: '#7BBEE8',
|
6182
|
+
name: 'Columbia Blue'
|
6127
6183
|
}, {
|
6128
|
-
color: '#
|
6129
|
-
name: '
|
6184
|
+
color: '#BFA881',
|
6185
|
+
name: 'Beige'
|
6130
6186
|
}, {
|
6131
|
-
color: '#
|
6132
|
-
name: '
|
6187
|
+
color: '#9BA997',
|
6188
|
+
name: 'Spring Green'
|
6133
6189
|
}, {
|
6134
|
-
color: '#
|
6135
|
-
name: '
|
6190
|
+
color: '#84B5B2',
|
6191
|
+
name: 'Smoke Blue'
|
6136
6192
|
}, {
|
6137
|
-
color: '#
|
6138
|
-
name: '
|
6193
|
+
color: '#F4AC96',
|
6194
|
+
name: 'Peach'
|
6139
6195
|
}, {
|
6140
|
-
color: '#
|
6141
|
-
name: '
|
6196
|
+
color: '#6AC4CC',
|
6197
|
+
name: 'Southern Mint'
|
6142
6198
|
}, {
|
6143
|
-
color: '#
|
6144
|
-
name: '
|
6199
|
+
color: '#CE9F9F',
|
6200
|
+
name: 'Light Rose'
|
6145
6201
|
}, {
|
6146
|
-
color: '#
|
6147
|
-
name: '
|
6202
|
+
color: '#DEB66A',
|
6203
|
+
name: 'Brass'
|
6148
6204
|
}, {
|
6149
|
-
color: '#
|
6150
|
-
name: '
|
6205
|
+
color: '#F6D75E',
|
6206
|
+
name: 'Lt. Cal Gold'
|
6151
6207
|
}, {
|
6152
|
-
color: '#
|
6153
|
-
name: '
|
6208
|
+
color: '#FBB66E',
|
6209
|
+
name: 'Honey'
|
6154
6210
|
}, {
|
6155
|
-
color: '#
|
6156
|
-
name: '
|
6211
|
+
color: '#C09B7B',
|
6212
|
+
name: 'Taupe'
|
6157
6213
|
}, {
|
6158
|
-
color: '#
|
6159
|
-
name: '
|
6214
|
+
color: '#FCAE77',
|
6215
|
+
name: 'Light Peach'
|
6160
6216
|
}, {
|
6161
|
-
color: '#
|
6162
|
-
name: '
|
6217
|
+
color: '#EEBD5B',
|
6218
|
+
name: 'Metallic Gold'
|
6163
6219
|
}, {
|
6164
|
-
color: '#
|
6165
|
-
name: '
|
6220
|
+
color: '#F5A2C6',
|
6221
|
+
name: 'Cotton Candy'
|
6166
6222
|
}, {
|
6167
|
-
color: '#
|
6168
|
-
name: '
|
6223
|
+
color: '#F8ED4D',
|
6224
|
+
name: 'Neon Yellow'
|
6169
6225
|
}, {
|
6170
|
-
color: '#
|
6171
|
-
name: '
|
6226
|
+
color: '#FFC937',
|
6227
|
+
name: 'Gold'
|
6172
6228
|
}, {
|
6173
|
-
color: '#
|
6174
|
-
name: '
|
6229
|
+
color: '#FDED00',
|
6230
|
+
name: 'Lemon'
|
6175
6231
|
}, {
|
6176
|
-
color: '#
|
6177
|
-
name: '
|
6232
|
+
color: '#CB9E59',
|
6233
|
+
name: 'Old Gold'
|
6178
6234
|
}, {
|
6179
|
-
color: '#
|
6180
|
-
name: '
|
6235
|
+
color: '#16B1D1',
|
6236
|
+
name: 'Aqua'
|
6181
6237
|
}, {
|
6182
|
-
color: '#
|
6183
|
-
name: '
|
6238
|
+
color: '#FCC614',
|
6239
|
+
name: 'Yellow'
|
6184
6240
|
}, {
|
6185
|
-
color: '#
|
6186
|
-
name: '
|
6241
|
+
color: '#C6FF19',
|
6242
|
+
name: 'Optic Green'
|
6187
6243
|
}, {
|
6188
|
-
color: '#
|
6189
|
-
name: '
|
6244
|
+
color: '#B790C2',
|
6245
|
+
name: 'Pale Lilac'
|
6190
6246
|
}, {
|
6191
|
-
color: '#
|
6192
|
-
name: '
|
6247
|
+
color: '#F4B716',
|
6248
|
+
name: 'Dark Cal Gold'
|
6193
6249
|
}, {
|
6194
|
-
color: '#
|
6195
|
-
name: '
|
6250
|
+
color: '#72C164',
|
6251
|
+
name: 'Key Lime'
|
6196
6252
|
}, {
|
6197
|
-
color: '#
|
6198
|
-
name: '
|
6253
|
+
color: '#85C44B',
|
6254
|
+
name: 'Neon Green'
|
6199
6255
|
}, {
|
6200
|
-
color: '#
|
6201
|
-
name: '
|
6256
|
+
color: '#89906D',
|
6257
|
+
name: 'Light Olive'
|
6202
6258
|
}, {
|
6203
|
-
color: '#
|
6204
|
-
name: '
|
6259
|
+
color: '#F283B4',
|
6260
|
+
name: 'Pink'
|
6205
6261
|
}, {
|
6206
|
-
color: '#
|
6207
|
-
name: '
|
6262
|
+
color: '#BEA82F',
|
6263
|
+
name: 'Green Gold'
|
6208
6264
|
}, {
|
6209
|
-
color: '#
|
6210
|
-
name: '
|
6265
|
+
color: '#F37F95',
|
6266
|
+
name: 'Optic Pink'
|
6211
6267
|
}, {
|
6212
|
-
color: '#
|
6213
|
-
name: '
|
6268
|
+
color: '#F27D66',
|
6269
|
+
name: 'Southern Peach'
|
6214
6270
|
}, {
|
6215
|
-
color: '#
|
6216
|
-
name: '
|
6271
|
+
color: '#867E72',
|
6272
|
+
name: 'Putty'
|
6217
6273
|
}, {
|
6218
|
-
color: '#
|
6219
|
-
name: '
|
6274
|
+
color: '#ED9717',
|
6275
|
+
name: 'Dark Gold'
|
6220
6276
|
}, {
|
6221
|
-
color: '#
|
6222
|
-
name: '
|
6277
|
+
color: '#81A046',
|
6278
|
+
name: 'D Sport Green'
|
6223
6279
|
}, {
|
6224
|
-
color: '#
|
6225
|
-
name: '
|
6280
|
+
color: '#F5831E',
|
6281
|
+
name: 'Tenn. Orange'
|
6226
6282
|
}, {
|
6227
|
-
color: '#
|
6228
|
-
name: '
|
6283
|
+
color: '#CE8A2D',
|
6284
|
+
name: 'Mustard'
|
6229
6285
|
}, {
|
6230
|
-
color: '#
|
6231
|
-
name: '
|
6232
|
-
}, {
|
6233
|
-
color: '#A276B3',
|
6234
|
-
name: 'Lavender'
|
6286
|
+
color: '#0A96BD',
|
6287
|
+
name: 'Cyan'
|
6235
6288
|
}, {
|
6236
|
-
color: '#
|
6237
|
-
name: '
|
6289
|
+
color: '#6C7A89',
|
6290
|
+
name: 'Steel Grey'
|
6238
6291
|
}, {
|
6239
|
-
color: '#
|
6240
|
-
name: '
|
6292
|
+
color: '#00A192',
|
6293
|
+
name: 'Green Teal'
|
6241
6294
|
}, {
|
6242
|
-
color: '#
|
6243
|
-
name: '
|
6295
|
+
color: '#53878B',
|
6296
|
+
name: 'Bahama Blue'
|
6244
6297
|
}, {
|
6245
6298
|
color: '#1B91D0',
|
6246
6299
|
name: 'Sky Blue'
|
6247
6300
|
}, {
|
6248
|
-
color: '#
|
6249
|
-
name: '
|
6301
|
+
color: '#05A17E',
|
6302
|
+
name: 'Mint'
|
6250
6303
|
}, {
|
6251
|
-
color: '#
|
6252
|
-
name: '
|
6304
|
+
color: '#F3751F',
|
6305
|
+
name: 'Gold Orange'
|
6253
6306
|
}, {
|
6254
|
-
color: '#
|
6255
|
-
name: '
|
6307
|
+
color: '#00A84E',
|
6308
|
+
name: 'Emerald Maderia'
|
6256
6309
|
}, {
|
6257
|
-
color: '#
|
6258
|
-
name: '
|
6310
|
+
color: '#A276B3',
|
6311
|
+
name: 'Lavender'
|
6259
6312
|
}, {
|
6260
|
-
color: '#
|
6261
|
-
name: '
|
6313
|
+
color: '#93715B',
|
6314
|
+
name: 'Light Brown'
|
6262
6315
|
}, {
|
6263
|
-
color: '#
|
6264
|
-
name: '
|
6316
|
+
color: '#857262',
|
6317
|
+
name: 'Desert Brown'
|
6265
6318
|
}, {
|
6266
|
-
color: '#
|
6267
|
-
name: '
|
6319
|
+
color: '#F26920',
|
6320
|
+
name: 'Neon Orange'
|
6268
6321
|
}, {
|
6269
|
-
color: '#
|
6270
|
-
name: '
|
6322
|
+
color: '#E86432',
|
6323
|
+
name: 'Salmon'
|
6271
6324
|
}, {
|
6272
|
-
color: '#
|
6273
|
-
name: '
|
6325
|
+
color: '#00A34A',
|
6326
|
+
name: 'Emerald'
|
6274
6327
|
}, {
|
6275
|
-
color: '#
|
6276
|
-
name: '
|
6328
|
+
color: '#2481B3',
|
6329
|
+
name: 'Baltic Blue'
|
6277
6330
|
}, {
|
6278
|
-
color: '#
|
6279
|
-
name: '
|
6331
|
+
color: '#AB6B6C',
|
6332
|
+
name: 'Dark Rose'
|
6280
6333
|
}, {
|
6281
|
-
color: '#
|
6282
|
-
name: 'Green
|
6334
|
+
color: '#667360',
|
6335
|
+
name: 'Mute Green'
|
6283
6336
|
}, {
|
6284
|
-
color: '#
|
6285
|
-
name: '
|
6337
|
+
color: '#766A5B',
|
6338
|
+
name: 'Driftwood'
|
6286
6339
|
}, {
|
6287
|
-
color: '#
|
6288
|
-
name: '
|
6340
|
+
color: '#E64677',
|
6341
|
+
name: 'Neon Pink'
|
6289
6342
|
}, {
|
6290
|
-
color: '#
|
6291
|
-
name: '
|
6343
|
+
color: '#C16A27',
|
6344
|
+
name: 'Toast'
|
6292
6345
|
}, {
|
6293
|
-
color: '#
|
6294
|
-
name: '
|
6346
|
+
color: '#0080C1',
|
6347
|
+
name: 'Bright Blue'
|
6295
6348
|
}, {
|
6296
|
-
color: '#
|
6297
|
-
name: '
|
6349
|
+
color: '#F04D30',
|
6350
|
+
name: 'Blaze Orange'
|
6298
6351
|
}, {
|
6299
|
-
color: '#
|
6300
|
-
name: '
|
6352
|
+
color: '#E45224',
|
6353
|
+
name: 'Orange'
|
6301
6354
|
}, {
|
6302
|
-
color: '#
|
6303
|
-
name: '
|
6355
|
+
color: '#747C32',
|
6356
|
+
name: 'Moss'
|
6304
6357
|
}, {
|
6305
|
-
color: '#
|
6306
|
-
name: '
|
6358
|
+
color: '#057F88',
|
6359
|
+
name: 'Blue Teal'
|
6307
6360
|
}, {
|
6308
|
-
color: '#
|
6309
|
-
name: '
|
6361
|
+
color: '#5F6162',
|
6362
|
+
name: 'Charcoal'
|
6310
6363
|
}, {
|
6311
|
-
color: '#
|
6312
|
-
name: '
|
6364
|
+
color: '#007189',
|
6365
|
+
name: 'Surf Blue'
|
6313
6366
|
}, {
|
6314
|
-
color: '#
|
6315
|
-
name: '
|
6367
|
+
color: '#DE1761',
|
6368
|
+
name: 'Fuchsia'
|
6316
6369
|
}, {
|
6317
|
-
color: '#
|
6318
|
-
name: '
|
6370
|
+
color: '#DD2825',
|
6371
|
+
name: 'Red-Orange'
|
6319
6372
|
}, {
|
6320
|
-
color: '#
|
6321
|
-
name: '
|
6373
|
+
color: '#3F7336',
|
6374
|
+
name: 'Lime Green'
|
6322
6375
|
}, {
|
6323
|
-
color: '#
|
6324
|
-
name: '
|
6376
|
+
color: '#005F9C',
|
6377
|
+
name: 'Air Force Blue'
|
6325
6378
|
}, {
|
6326
|
-
color: '#
|
6327
|
-
name: '
|
6379
|
+
color: '#0D5EA0',
|
6380
|
+
name: 'Royal'
|
6328
6381
|
}, {
|
6329
|
-
color: '#
|
6330
|
-
name: '
|
6382
|
+
color: '#4856A6',
|
6383
|
+
name: 'Lilac'
|
6331
6384
|
}, {
|
6332
|
-
color: '#
|
6333
|
-
name: '
|
6385
|
+
color: '#8C4522',
|
6386
|
+
name: 'Copper'
|
6334
6387
|
}, {
|
6335
|
-
color: '#
|
6336
|
-
name: '
|
6388
|
+
color: '#B82026',
|
6389
|
+
name: 'Red'
|
6337
6390
|
}, {
|
6338
|
-
color: '#
|
6339
|
-
name: '
|
6391
|
+
color: '#624B36',
|
6392
|
+
name: 'Medium Brown'
|
6340
6393
|
}, {
|
6341
|
-
color: '#
|
6342
|
-
name: '
|
6394
|
+
color: '#824323',
|
6395
|
+
name: 'Buck'
|
6343
6396
|
}, {
|
6344
|
-
color: '#
|
6345
|
-
name: '
|
6397
|
+
color: '#00643B',
|
6398
|
+
name: 'Irish Green'
|
6346
6399
|
}, {
|
6347
|
-
color: '#
|
6348
|
-
name: '
|
6400
|
+
color: '#59501C',
|
6401
|
+
name: 'Army Gold'
|
6349
6402
|
}, {
|
6350
|
-
color: '#
|
6351
|
-
name: '
|
6403
|
+
color: '#94321D',
|
6404
|
+
name: 'Texas Orange'
|
6352
6405
|
}, {
|
6353
|
-
color: '#
|
6354
|
-
name: '
|
6406
|
+
color: '#5F452F',
|
6407
|
+
name: 'Bark'
|
6355
6408
|
}, {
|
6356
|
-
color: '#
|
6357
|
-
name: '
|
6409
|
+
color: '#364D44',
|
6410
|
+
name: 'Spruce'
|
6358
6411
|
}, {
|
6359
|
-
color: '#
|
6360
|
-
name: '
|
6412
|
+
color: '#67451F',
|
6413
|
+
name: 'Buck Mesh'
|
6361
6414
|
}, {
|
6362
|
-
color: '#
|
6363
|
-
name: '
|
6415
|
+
color: '#3B4548',
|
6416
|
+
name: 'Asphalt'
|
6364
6417
|
}, {
|
6365
|
-
color: '#
|
6366
|
-
name: '
|
6418
|
+
color: '#0B5935',
|
6419
|
+
name: 'Kelly'
|
6367
6420
|
}, {
|
6368
|
-
color: '#
|
6369
|
-
name: '
|
6421
|
+
color: '#8E2056',
|
6422
|
+
name: 'Violet'
|
6370
6423
|
}, {
|
6371
|
-
color: '#
|
6372
|
-
name: '
|
6424
|
+
color: '#454126',
|
6425
|
+
name: 'Army Olive'
|
6373
6426
|
}, {
|
6374
|
-
color: '#
|
6375
|
-
name: '
|
6427
|
+
color: '#3D471F',
|
6428
|
+
name: 'Olive'
|
6376
6429
|
}, {
|
6377
|
-
color: '#
|
6378
|
-
name: '
|
6430
|
+
color: '#005028',
|
6431
|
+
name: 'Dark Green'
|
6379
6432
|
}, {
|
6380
|
-
color: '#
|
6381
|
-
name: '
|
6433
|
+
color: '#39392A',
|
6434
|
+
name: 'Sage'
|
6382
6435
|
}, {
|
6383
|
-
color: '#
|
6384
|
-
name: '
|
6436
|
+
color: '#7D1523',
|
6437
|
+
name: 'Cardinal'
|
6385
6438
|
}, {
|
6386
|
-
color: '#
|
6387
|
-
name: '
|
6439
|
+
color: '#063E44',
|
6440
|
+
name: 'Forest Teal'
|
6388
6441
|
}, {
|
6389
|
-
color: '#
|
6390
|
-
name: '
|
6442
|
+
color: '#163959',
|
6443
|
+
name: 'Denim'
|
6391
6444
|
}, {
|
6392
|
-
color: '#
|
6393
|
-
name: '
|
6445
|
+
color: '#532D23',
|
6446
|
+
name: 'Brown'
|
6394
6447
|
}, {
|
6395
|
-
color: '#
|
6396
|
-
name: '
|
6448
|
+
color: '#004125',
|
6449
|
+
name: 'Dark Pine'
|
6397
6450
|
}, {
|
6398
|
-
color: '#
|
6399
|
-
name: '
|
6451
|
+
color: '#48236E',
|
6452
|
+
name: 'Purple'
|
6400
6453
|
}, {
|
6401
|
-
color: '#
|
6402
|
-
name: '
|
6454
|
+
color: '#5E1B56',
|
6455
|
+
name: 'Grape'
|
6403
6456
|
}, {
|
6404
|
-
color: '#
|
6405
|
-
name: '
|
6457
|
+
color: '#482925',
|
6458
|
+
name: 'Walnut'
|
6406
6459
|
}, {
|
6407
|
-
color: '#
|
6408
|
-
name: '
|
6460
|
+
color: '#581C28',
|
6461
|
+
name: 'Burgundy'
|
6409
6462
|
}, {
|
6410
|
-
color: '#
|
6411
|
-
name: '
|
6463
|
+
color: '#332322',
|
6464
|
+
name: 'Dark Walnut'
|
6412
6465
|
}, {
|
6413
|
-
color: '#
|
6414
|
-
name: '
|
6466
|
+
color: '#362519',
|
6467
|
+
name: 'Mud'
|
6415
6468
|
}, {
|
6416
|
-
color: '#
|
6417
|
-
name: '
|
6469
|
+
color: '#12242C',
|
6470
|
+
name: 'Graphite'
|
6418
6471
|
}, {
|
6419
|
-
color: '#
|
6420
|
-
name: '
|
6472
|
+
color: '#511318',
|
6473
|
+
name: 'Maroon'
|
6421
6474
|
}, {
|
6422
|
-
color: '
|
6423
|
-
name: '
|
6475
|
+
color: '#0B162E',
|
6476
|
+
name: 'Navy'
|
6477
|
+
}, {
|
6478
|
+
color: '#040404',
|
6479
|
+
name: 'Black'
|
6424
6480
|
}];
|
6425
6481
|
|
6426
6482
|
var ColorPalette = function ColorPalette(_ref) {
|