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