环形颜色选择器复制效果代码

代码语言:html

所属分类:选择器

代码描述:环形颜色选择器复制效果代码

代码标签: 复制 效果

下面为部分代码预览,完整代码请点击下载或在bfwstudio webide中打开


<!DOCTYPE html>
<html lang="en" >

<head>

  <meta charset="UTF-8">

  
  
<style>
@import url(https://fonts.googleapis.com/css?family=Lato:900,300);
html, body {
  font-family: 'Lato';
  text-align: center;
  background: #FFFAE6;
  color: #012744;
  -webkit-transition: background .2s ease-in, color .2s ease;
  transition: background .2s ease-in, color .2s ease;
}

*, *:before, *:after {
  box-sizing: border-box;
}

.circle {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  width: 50vmin;
  height: 50vmin;
  min-height: 220px;
  min-width: 220px;
  border-radius: 100%;
  line-height: 50vmin;
  text-decoration: none;
  font-family: 'Lato';
  font-weight: 900;
  font-size: 35px;
  color: inherit;
}
.circle:before, .circle:after {
  content: '';
  position: absolute;
  border-radius: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  box-shadow: 40px 0 0 rgba(26, 34, 47, 0.5) inset, 0 40px 0 rgba(0, 142, 116, 0.5) inset, -40px 0 0 rgba(178, 224, 151, 0.5) inset, 0 -40px 0 rgba(210, 67, 53, 0.5) inset;
  -webkit-transition: box-shadow .3s ease;
  transition: box-shadow .3s ease;
}
.circle:after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}

.title {
  margin-top: 20px;
  margin-bottom: 5px;
  font-size: 48px;
  text-transform: capitalize;
}

.color-overview {
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0 auto;
}
.color-overview > li {
  display: inline-block;
  vertical-align: bottom;
  width: 20%;
  height: 25px;
  -webkit-transition: background .3s ease-in, height .2s ease;
  transition: background .3s ease-in, height .2s ease;
  box-shadow: 0 -1px 2px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.color-overview > li:hover {
  height: 40px;
}
.color-overview > li:nth-child(1) {
  background: #1A222F;
}
.color-overview > li:nth-child(2) {
  background: #008E74;
}
.color-overview > li:nth-child(3) {
  background: #B2E097;
}
.color-overview > li:nth-child(4) {
  background: #D24335;
}
.color-overview > li:nth-child(5) {
  background: #1C3A40;
}
.color-overview:after {
  content: '';
  clear: both;
  display: block;
}

.clipboard-info {
  opacity: 0;
  display: inline-block;
  position: absolute;
  bottom: 40px;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background: #1A222F;
  color: #FFFAE6;
  padding: 4px 8px;
  border-radius: 4px 4px 0 0;
}

.checkbox input {
  display: inline-block;
  width: 0;
  height: 0;
  overflow: hidden;
  padding: 0;
  margin: 0;
  border: 0 none;
  opacity: 0.001;
  z-index: 1;
  vertical-align: top;
  outline: none;
}
.checkbox input + .checkbox-box {
  display: block;
  width: 36px;
  height: 18px;
  background: #D24335;
  position: absolute;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  border-radius: 4px;
  -webkit-transition: background .3s ease;
  transition: background .3s ease;
  cursor: pointer;
}
.checkbox input + .checkbox-box:before {
  content: '';
  position: absolute;
  display: block;
  height: 18px;
  width: 18px;
  background: #1A222F;
  border-radius: 4px;
  -webkit-transition: right .3s ease;
  transition: right .3s ease;
  right: 18px;
}
.checkbox input:checked + .checkbox-box {
  background: #B2E097;
}
.checkbox input:checked + .checkbox-box:before {
  right: 0;
}

.checkbox > span {
  position: absolute;
  top: 310px;
}

.checkbox > .label:first-child {
  right: 50%;
  margin-right: 10px;
  -webkit-transform: translate(-18px);
          transform: translate(-18px);
}

.checkbox > .label:last-child {
  left: 50%;
  margin-left: 10px;
  -webkit-transform: translate(18px);
          transform: translate(18px);
}
</style>


</head>

<body translate="no" >
  <style id="style"></style>
<h1 class="title">Custom</h1>
<a class="circle" href="#">&nbsp;rnd.</a>
<!--<label class="checkbox">
    <span class="label">Kuler</span>
    <input type="checkbox"/>
    <span class="checkbox-box"></span>
    <span class="label">ColourLovers</span>
</label>-->
<span class="clipboard-info">Copied!</span>
<ul class="color-overview">
    <li data-bg-color="#1A222F"></li><li data-bg-color="#008E74"></li><li data-bg-color="#B2E097"></li><li data-bg-color="#D24335"></li><li data-bg-color="#1C3A40"></li>
</ul>


<script type="text/javascript" src="//repo.bfw.wiki/bfwrepo/js/jquery-3.2.1.min.js"></script>
  
      <script>
// TODO: use colourlovers-api
// http://www.colourlovers.com/api/palettes/top?format=json

/*!
 * clipboard.js v1.5.2
 * https://zenorocha.github.io/clipboard.js
 *
 * Licensed MIT © Zeno Rocha
 */
!function(t){if("object"==typeof exports&&"undefined"!=typeof module)module.exports=t();else if("function"==typeof define&&define.amd)define([],t);else{var e;e="undefined"!=typeof window?window:"undefined"!=typeof global?global:"undefined"!=typeof self?self:this,e.Clipboard=t()}}(function(){var t,e,n;return function t(e,n,r){function o(a,c){if(!n[a]){if(!e[a]){var s="function"==typeof require&&require;if(!c&&s)return s(a,!0);if(i)return i(a,!0);var u=new Error("Cannot find module '"+a+"'");throw u.code="MODULE_NOT_FOUND",u}var l=n[a]={exports:{}};e[a][0].call(l.exports,function(t){var n=e[a][1][t];return o(n?n:t)},l,l.exports,t,e,n,r)}return n[a].exports}for(var i="function"==typeof require&&require,a=0;a<r.length;a++)o(r[a]);return o}({1:[function(t,e,n){var r=t("matches-selector");e.exports=function(t,e,n){for(var o=n?t:t.parentNode;o&&o!==document;){if(r(o,e))return o;o=o.parentNode}}},{"matches-selector":2}],2:[function(t,e,n){function r(t,e){if(i)return i.call(t,e);for(var n=t.parentNode.querySelectorAll(e),r=0;r<n.length;++r)if(n[r]==t)return!0;return!1}var o=Element.prototype,i=o.matchesSelector||o.webkitMatchesSelector||o.mozMatchesSelector||o.msMatchesSelector||o.oMatchesSelector;e.exports=r},{}],3:[function(t,e,n){function r(t,e,n,r){var i=o.apply(this,arguments);return t.addEventListener(n,i),{destroy:function(){t.removeEventListener(n,i)}}}function o(t,e,n,r){return function(n){var o=i(n.target,e,!0);o&&(Object.defineProperty(n,"target",{value:o}),r.call(t,n))}}var i=t("closest");e.exports=r},{closest:1}],4:[function(t,e,n){n.node=function(t){return void 0!==t&&t instanceof HTMLElement&&1===t.nodeType},n.nodeList=function(t){var e=Object.prototype.toString.call(t);return void 0!==t&&("[object NodeList]"===e||"[object HTMLCollection]"===e)&&"length"in t&&(0===t.length||n.node(t[0]))},n.string=function(t){return"string"==typeof t||t instanceof String},n.function=function(t){var e=Object.prototype.toString.call(t);return"[object Function]"===e}},{}],5:[function(t,e,n){function r(t,e,n){if(!t&&!e&&!n)throw new Error("Missing required arguments");if(!c.string(e))throw new TypeError("Second argument must be a String");if(!c.function(n))throw new TypeError("Third argument must be a Function");if(c.node(t))return o(t,e,n);if(c.nodeList(t))return i(t,e,n);if(c.string(t))return a(t,e,n);throw new TypeError("First argument must be a String, HTMLElement, HTMLCollection, or NodeList")}function o(t,e,n){return t.addEventListener(e,n),{destroy:function(){t.removeEventListener(e,n)}}}function i(t,e,n){return Array.prototype.forEach.call(t,function(t){t.addEventListener(e,n)}),{destroy:function(){Array.prototype.forEach.call(t,function(t){t.removeEventListener(e,n)})}}}function a(t,e,n){return s(document.body,t,e,n)}var c=t("./is"),s=t("delegate");e.exports=r},{"./is":4,delegate:3}],6:[function(t,e,n){function r(t){var e;if("INPUT"===t.nodeName||"TEXTAREA"===t.nodeName)t.select(),e=t.value;else{var n=window.getSelection(),r=document.createRange();r.selectNodeContents(t),n.removeAllRanges(),n.addRange(r),e=n.toString()}return e}e.exports=r},{}],7:[function(t,e,n){function r(){}r.prototype={on:function(t,e,n){var r=this.e||(this.e={});return(r[t]||(r[t]=[])).push({fn:e,ctx:n}),this},once:function(t,e,n){function r(){o.off(t,r),e.apply(n,arguments)}var o=this;return r._=e,this.on(t,r,n)},emit:function(t){var e=[].slice.call(arguments,1),n=((this.e||(this.e={}))[t]||[]).slice(),r=0,o=n.length;for(r;o>r;r++)n[r].fn.apply(n[r].ctx,e);return this},off:function(t,e){var n=this.e||(this.e={}),r=n[t],o=[];if(r&&e)for(var i=0,a=r.length;a>i;i++)r[i].fn!==e&&r[i].fn._!==e&&o.push(r[i]);return o.length?n[t]=o:delete n[t],this}},e.exports=r},{}],8:[function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{"default":t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}n.__esModule=!0;var i=function(){function t(t,e){for(var n=0;n<e.length;n++){var r=e[n];r.enumerable=r.enumerable||!1,r.configurable=!0,"value"in r&&(r.writable=!0),Object.defineProperty(t,r.key,r)}}return function(e,n,r){return n&&t(e.prototype,n),r&&t(e,r),e}}(),a=t("select"),c=r(a),s=function(){function t(e){o(this,t),this.resolveOptions(e),this.initSelection()}return t.prototype.resolveOptions=function t(){var e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.action=e.action,this.emitter=e.emitter,this.target=e.target,this.text=e.text,this.trigger=e.trigger,this.selectedText=""},t.prototype.initSelection=function t(){if(this.text&&this.target)throw new Error('Multiple attributes declared, use either "target" or "text"');if(this.text)this.selectFake();else{if(!this.target)throw new Error('Missing required attributes, use either "target" or "text"');this.selectTarget()}},t.prototype.selectFake=function t(){var e=this;this.removeFake(),this.fakeHandler=document.body.addEventListener("click",function(){return e.removeFake()}),this.fakeElem=document.createElement("textarea"),this.fakeElem.style.position="absolute",this.fakeElem.style.left="-9999px",this.fakeElem.style.top=(window.pageYOffset||document.documentElement.scrollTop)+"px",this.fakeElem.setAttribute("readonly",""),this.fakeElem.value=this.text,document.body.appendChild(this.fakeElem),this.selectedText=c.default(this.fakeElem),this.copyText()},t.prototype.removeFake=function t(){this.fakeHandler&&(document.body.removeEventListener("click"),this.fakeHandler=null),this.fakeElem&&(document.body.removeChild(this.fakeElem),this.fakeElem=null)},t.prototype.selectTarget=function t(){this.selectedText=c.default(this.target),this.copyText()},t.prototype.copyText=function t(){var e=void 0;try{e=document.execCommand(this.action)}catch(n){e=!1}this.handleResult(e)},t.prototype.handleResult=function t(e){e?this.emitter.emit("success",{action:this.action,text:this.selectedText,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)}):this.emitter.emit("error",{action:this.action,trigger:this.trigger,clearSelection:this.clearSelection.bind(this)})},t.prototype.clearSelection=function t(){this.target&&this.target.blur(),window.getSelection().removeAllRanges()},t.prototype.destroy=function t(){this.removeFake()},i(t,[{key:"action",set:function t(){var e=arguments.length<=0||void 0===arguments[0]?"copy":arguments[0];if(this._action=e,"copy"!==this._action&&"cut"!==this._action)throw new Error('Invalid "action" value, use either "copy" or "cut"')},get:function t(){return this._action}},{key:"target",set:function t(e){if(void 0!==e){if(!e||"object"!=typeof e||1!==e.nodeType)throw new Error('Invalid "target" value, use a valid Element');this._target=e}},get:function t(){return this._target}}]),t}();n.default=s,e.exports=n.default},{select:6}],9:[function(t,e,n){"use strict";function r(t){return t&&t.__esModule?t:{"default":t}}function o(t,e){if(!(t instanceof e))throw new TypeError("Cannot call a class as a function")}function i(t,e){if("function"!=typeof e&&null!==e)throw new TypeError("Super expression must either be null or a function, not "+typeof e);t.prototype=Object.create(e&&e.prototype,{constructor:{value:t,enumerable:!1,writable:!0,configurable:!0}}),e&&(Object.setPrototypeOf?Object.setPrototypeOf(t,e):t.__proto__=e)}function a(t,e){var n="data-clipboard-"+t;if(e.hasAttribute(n))return e.getAttribute(n)}n.__esModule=!0;var c=t("./clipboard-action"),s=r(c),u=t("tiny-emitter"),l=r(u),f=t("good-listener"),d=r(f),h=function(t){function e(n,r){o(this,e),t.call(this),this.resolveOptions(r),this.listenClick(n)}return i(e,t),e.prototype.resolveOptions=function t(){var e=arguments.length<=0||void 0===arguments[0]?{}:arguments[0];this.action="function"==typeof e.action?e.action:this.defaultAction,this.target="function"==typeof e.target?e.target:this.defaultTarget,this.text="function"==typeof e.text?e.text:this.defaultText},e.prototype.listenClick=function t(e){var n=this;this.listener=d.default(e,"click",function(t){return n.onClick(t)})},e.prototype.onClick=function t(e){this.clipboardAction&&(this.clipboardAction=null),this.clipboardAction=new s.default({action:this.action(e.target),target:this.target(e.target),text:this.text(e.target),trigger:e.target,emitter:this})},e.prototype.defaultAction=function t(e){return a("action",e)},e.prototype.defaultTarget=function t(e){var n=a("target",e);return n?document.querySelector(n):void 0},e.prototype.defaultText=function t(e){return a("text",e)},e.prototype.destroy=function t(){this.listener.destroy(),this.clipboardAction&&(this.clipboardAction.destroy(),this.clipboardAction=null)},e}(l.default);n.default=h,e.exports=n.default},{"./clipboard-action":8,"good-listener":5,"tiny-emitter":7}]},{},[9])(9)});
let clip = new Clipboard('.color-overview li', {
    text: trigger => {
        return trigger.getAttribute('data-bg-color');
    }
});
clip.on('error', e => {
   prompt('Copy me!', e.trigger.getAttribute('data-bg-color')) ;
});
clip.on('success', e => {
    let trigger = $(e.trigger);
    $('.clipboard-info').css('left', trigger.offset().left + (trigger.width() / 2)).css('opacity', 1).delay(800).animate({ opacity:0 }, 200);
});

let palettes = [
    {"name":"sandy stone beach ocean diver\n        \n        ","colors":["E6E2AF","A7A37E","EFECCA","046380","002F2F"]},
    {"name":"Firenze\n        \n        ","colors":["468966","FFF0A5","FFB03B","B64926","8E2800"]},
    {"name":"Neutral Blue\n        \n        ","colors":["FCFFF5","D1DBBD","91AA9D","3E606F","193441"]},
    {"name":"Johnny Cash Tribute\n        \n        ","colors":["73603D","BF8A49","F2CA80","5E5A59","0D0D0D"]},
    {"name":"Cherry Cheesecake\n        \n        ","colors":["B9121B","4C1B1B","F6E497","FCFAE1","BD8D46"]},
    {"name":"Flat UI\n        \n        ","colors":["2C3E50","E74C3C","ECF0F1","3498DB","2980B9"]},
    {"name":"1944mustang\n        \n        ","colors":["000000","263248","7E8AA2","FFFFFF","FF9800"]},
    {"name":"Japanese Garden\n        \n        ","colors":["D8CAA8","5C832F","284907","382513","363942"]},
    {"name":"Aspirin C\n        \n        ","colors":["225378","1695A3","ACF0F2","F3FFE2","EB7F00"]},
    {"name":"Phaedra\n        \n        ","colors":["FF6138","FFFF9D","BEEB9F","79BD8F","00A388"]},
    {"name":"Watermelon\n        \n        ","colors":["7D8A2E","C9D787","FFFFFF","FFC0A9","FF8598"]},
    {"name":"Granny Smith Apple\n        \n        ","colors":["85DB18","CDE855","F5F6D4","A7C520","493F0B"]},
    {"name":"Honey Pot\n        \n        ","colors":["105B63","FFFAD5","FFD34E","DB9E36","BD4932"]},
    {"name":"Vitamin C\n        \n        ","colors":["004358","1F8A70","BEDB39","FFE11A","FD7400"]},
    {"name":"Dolores\n        \n        ","colors":["E8E595","D0A825","40627C","26393D","FFFAE4"]},
    {"name":"Orange on olive\n        \n        ","colors":["B4AF91","787746","40411E","32331D","C03000"]},
    {"name":"Orange on gray\n        \n        ","colors":["FFF8E3","CCCC9F","33332D","9FB4CC","DB4105"]},
    {"name":"Circus III\n        \n        ","colors":["2E0927","D90000","FF2D00","FF8C00","04756F"]},
    {"name":"Sea Wolf\n        \n        ","colors":["DC3522","D9CB9E","374140","2A2C2B","1E1E20"]},
    {"name":"Tech Office\n        \n        ","colors":["595241","B8AE9C","FFFFFF","ACCFCC","8A0917"]},
    {"name":"oddend\n        \n        ","colors":["000000","333333","FF358B","01B0F0","AEEE00"]},
    {"name":"28X Dusty Petrol\n        \n        ","colors":["292929","5B7876","8F9E8B","F2E6B6","412A22"]},
    {"name":"Garden swimming pool\n        \n        ","colors":["96CA2D","B5E655","EDF7F2","4BB5C1","7FC6BC"]},
    {"name":"Quiet Cry\n        \n        ","colors":["1C1D21","31353D","445878","92CDCF","EEEFF7"]},
    {"name":"zen and tea\n        \n        ","colors":["10222B","95AB63","BDD684","E2F0D6","F6FFE0"]},
    {"name":"Herbs and Spice\n        \n        ","colors":["5A1F00","D1570D","FDE792","477725","A9CC66"]},
    {"name":"Pistachio\n        \n        ","colors":["B0CC99","677E52","B7CA79","F6E8B1","89725B"]},
    {"name":"Ocean Sunset\n        \n        ","colors":["405952","9C9B7A","FFD393","FF974F","F54F29"]},
    {"name":"Red and smooth\n        \n        ","colors":["E7E8D1","D3CEAA","FBF7E4","424242","8E001C"]},
    {"name":"CS04\n        \n        ","colors":["F6F792","333745","77C4D3","DAEDE2","EA2E49"]},
    {"name":"Salamander\n        \n        ","colors":["B8ECD7","083643","B1E001","CEF09D","476C5E"]},
    {"name":"Vintage Ralph Lauren\n        \n        ","colors":["703030","2F343B","7E827A","E3CDA4","C77966"]},
    {"name":"Pear Lemon Fizz\n        \n        ","colors":["04BFBF","CAFCD8","F7E967","A9CF54","588F27"]},
    {"name":"This Green\n        \n        ","colors":["00261C","044D29","168039","45BF55","96ED89"]},
    {"name":"Friends and foes\n        \n        ","colors":["2F2933","01A2A6","29D9C2","BDF271","FFFFA6"]},
    {"name":"Blue Sky\n        \n        ","colors":["16193B","35478C","4E7AC7","7FB2F0","ADD5F7"]},
    {"name":"Gettysburg\n        \n        ","colors":["962D3E","343642","979C9C","F2EBC7","348899"]},
    {"name":"Bogart\n        \n        ","colors":["DDDCC5","958976","611427","1D2326","6A6A61"]},
    {"name":"Bloggy Gradient Blues\n        \n        ","colors":["E1E6FA","C4D7ED","ABC8E2","375D81","183152"]},
    {"name":"Bordeaux\n        \n        ","colors":["F7F2B2","ADCF4F","84815B","4A1A2C","8E3557"]},
    {"name":"unlike\n        \n        ","colors":["88A825","35203B","911146","CF4A30","ED8C2B"]},
    {"name":"Times Changing\n        \n        ","colors":["332532","644D52","F77A52","FF974F","A49A87"]},
    {"name":"Red  Hot\n        \n        ","colors":["450003","5C0002","94090D","D40D12","FF1D23"]},
    {"name":"Salmon on Ice\n        \n        ","colors":["3E454C","2185C5","7ECEFD","FFF6E5","FF7F66"]},
    {"name":"Birdfolio Blues\n        \n        ","colors":["2B3A42","3F5765","BDD4DE","EFEFEF","FF530D"]},
    {"name":"Ventana Azul\n        \n        ","colors":["F2385A","F5A503","E9F1DF","4AD9D9","36B1BF"]},
    {"name":"View over the town\n        \n        ","colors":["FF5335","B39C85","306E73","3B424D","1D181F"]},
    {"name":"afternoon chai\n        \n        ","colors":["CFC291","FFF6C5","A1E8D9","FF712C","695D46"]},
    {"name":"Mountains of Burma\n        \n        ","colors":["354242","ACEBAE","FFFF9D","C9DE55","7D9100"]},
    {"name":"Cote Azur\n        \n        ","colors":["00585F","009393","FFFCC4","F0EDBB","FF3800"]},
    {"name":"Woman in purple dress\n        \n        ","colors":["F9E4AD","E6B098","CC4452","723147","31152B"]},
    {"name":"Citrus\n        \n        ","colors":["FF6600","C13B00","5E6D70","424E4F","1B1D1E"]},
    {"name":"Optimist\n        \n        ","colors":["6C6E58","3E423A","417378","A4CFBE","F4F7D9"]},
    {"name":"Purple Rain\n        \n        ","colors":["25064D","36175E","553285","7B52AB","9768D1"]},
    {"name":"Wine Olives and Cheese\n        \n        ","colors":["170F0E","290418","505217","FFD372","FFF1AF"]},
    {"name":"Friends and foes\n        \n        ","colors":["2F2933","01A2A6","29D9C2","BDF271","FFFFA6"]},
    {"name":"Buddha in Rain\n        \n        ","colors":["FF8000","FFD933","CCCC52","8FB359","192B33"]},
    {"name":"Flat design colors 1\n        \n        ","colors":["334D5C","45B29D","EFC94C","E27A3F","DF5A49"]},
    {"name":"Corporate Orange  Blue\n        \n        ","colors":["304269","91BED4","D9E8F5","FFFFFF","F26101"]},
    {"name":"Blue Sky Moisty\n        \n        ","colors":["1A1F2B","30395C","4A6491","85A5CC","D0E4F2"]},
    {"name":"pomegranate explosion\n        \n        ","colors":["63A69F","F2E1AC","F2836B","F2594B","CD2C24"]},
    {"name":"Kayak\n        \n        ","colors":["36362C","5D917D","A8AD80","E6D4A7","825534"]},
    {"name":"Beetle Bus goes Jamba Juice\n        \n        ","colors":["730046","BFBB11","FFC200","E88801","C93C00"]},
    {"name":"Keep the Change\n        \n        ","colors":["6B0C22","D9042B","F4CB89","588C8C","011C26"]},
    {"name":"Digerati\n        \n        ","colors":["52656B","FF3B77","CDFF00","FFFFFF","B8B89F"]},
    {"name":"pink peppermint\n        \n        ","colors":["F6B1C3","F0788C","DE264C","BC0D35","A20D1E"]},
    {"name":"Cmon Up\n        \n        ","colors":["13140F","D4FF00","E4FFE6","68776C","00D6DD"]},
    {"name":"Orange Crush\n        \n        ","colors":["EF5411","FA5B0F","FF6517","FF6D1F","FF822E"]},
    {"name":"Citrus Grove\n        \n        ","colors":["DB5800","FF9000","F0C600","8EA106","59631E"]},
    {"name":"KnotJustNautical\n        \n        ","colors":["2C3E50","FC4349","D7DADB","6DBCDB","FFFFFF"]},
    {"name":"Life Is Beautiful () La vita e bella\n        \n        ","colors":["801637","047878","FFB733","F57336","C22121"]},
    {"name":"Halow Summer 06\n        \n        ","colors":["E7E9D1","D3D4AA","FCFAE6","444444","901808"]},
    {"name":"Saffron umbrella\n        \n        ","colors":["24221F","363F45","4B5F6D","5E7C88","FEB41C"]},
    {"name":"Appalachian Spring\n        \n        ","colors":["C24704","D9CC3C","FFEB79","A0E0A9","00ADA7"]},
    {"name":"Corporate Blew\n        \n        ","colors":["00305A","004B8D","0074D9","4192D9","7ABAF2"]},
    {"name":"Avoidance\n        \n        ","colors":["5E0042","2C2233","005869","00856A","8DB500"]},
    {"name":"harbor\n        \n        ","colors":["D5FBFF","9FBCBF","647678","2F3738","59D8E6"]},
    {"name":"Campfire\n        \n        ","colors":["588C7E","F2E394","F2AE72","D96459","8C4646"]},
    {"name":"lollapalooza\n        \n        ","colors":["002635","013440","AB1A25","D97925","EFE7BE"]},
    {"name":"CoolGrays\n        \n        ","colors":["686E75","9BAAC1","82787B","E4F1DB","AAC19B"]},
    {"name":"Subtlety of Hue The Spa\n        \n        ","colors":["484A47","C1CE96","ECEBF0","687D77","353129"]},
    {"name":"Tearing Away\n        \n        ","colors":["76D6D2","F9E270","EF6F56","F4EED8","596B56"]},
    {"name":"Elemental\n        \n        ","colors":["E64661","FFA644","998A2F","2C594F","002D40"]},
    {"name":"vintage card\n        \n        ","colors":["5C4B51","8CBEB2","F2EBBF","F3B562","F06060"]},
    {"name":"Business Casual\n        \n        ","colors":["133463","365FB7","799AE0","F4EFDC","BA9B65"]},
    {"name":"DSPIP Blue\n        \n        ","colors":["3399CC","67B8DE","91C9E8","B4DCED","E8F8FF"]},
    {"name":"first impressions\n        \n        ","colors":["FFF0A3","B8CC6E","4B6000","E4F8FF","004460"]},
    {"name":"Beach Time\n        \n        ","colors":["96CEB4","FFEEAD","FF6F69","FFCC5C","AAD8B0"]},
    {"name":"Indian Earthy\n        \n        ","colors":["C98B2F","803C27","C56520","E1B41B","807916"]},
    {"name":"clean modern\n        \n        ","colors":["272F32","9DBDC6","FFFFFF","FF3D2E","DAEAEF"]},
    {"name":"PIE PARTY  FOR ALL KULERIST\n        \n        ","colors":["690011","BF0426","CC2738","F2D99C","E5B96F"]},
    {"name":"Colors\n        \n        ","colors":["8E2239","0A1A71","688B9E","75A870","F2E2AF"]},
    {"name":"Japanese Garden\n        \n        ","colors":["BAB293","A39770","EFE4BD","A32500","2B2922"]},
    {"name":"Black Cherry Mocha\n        \n        ","colors":["705B35","C7B07B","E8D9AC","FFF6D9","570026"]},
    {"name":"sun splash\n        \n        ","colors":["002F32","42826C","A5C77F","FFC861","C84663"]},
    {"name":"Modern Office\n        \n        ","colors":["14212B","293845","4F6373","8F8164","D9D7AC"]},
    {"name":"Five Oranges\n        \n        ","colors":["B33600","FF8A00","FFC887","CC5400","B31E00"]},
    {"name":"WInter Splendor\n        \n        ","colors":["BEBEBE","F1E4D8","594735","94C7BA","D8F1E4"]},
    {"name":"organic pull 2\n        \n        ","colors":["776045","A8C545","DFD3B6","FFFFFF","0092B2"]},
    {"name":"vintage blue\n        \n        ","colors":["CDDEC6","4DAAAB","1E4F6A","2A423C","93A189"]},
    {"name":"Settles Accent\n        \n        ","colors":["EA6045","F8CA4D","F5E5C0","3F5666","2F3440"]},
    {"name":"Sunshine over glacier\n        \n        ","colors":["004056","2C858D","74CEB7","C9FFD5","FFFFCB"]},
    {"name":"Spring Happiness\n        \n        ","colors":["AF7575","EFD8A1","BCD693","AFD7DB","3D9CA8"]},
    {"name":"Banana Flambe\n        \n        ","colors":["F0C755","E2AD3B","BF5C00","901811","5C110F"]},
    {"name":"Flat Design Colors\n        \n        ","colors":["334D5C","45B29D","EFC94C","E27A3F","DF5A49"]},
    {"name":"Bahamas\n        \n        ","colors":["003056","04518C","00A1D9","47D9BF","F2D03B"]},
    {"name":"Fossil Vintage\n        \n        ","colors":["CFCA4C","FCF5BF","9FE5C2","5EB299","745A33"]},
    {"name":"My Portfolio\n        \n        ","colors":["F2F2F2","C6E070","91C46C","287D7D","1C344D"]},
    {"name":"Freshaliciousness\n        \n        ","colors":["0C273D","54D0ED","FFFEF1","70B85D","2C5E2E"]},
    {"name":"Aviator\n        \n        ","colors":["6A7059","FDEEA7","9BCC93","1A9481","003D5C"]},
    {"name":"Dreams Forever\n        \n        ","colors":["211426","413659","656F8C","9BBFAB","F2EFDF"]},
    {"name":"venus-revisited\n        \n        ","colors":["F4B46D","D96C0F","F10706","A60400","5A0300"]},
    {"name":"Bonsai Sprouts\n        \n        ","colors":["302B1D","3F522B","737D26","A99E46","D9CB84"]},
    {"name":"Blue for Marine Brochure\n        \n        ","colors":["0EEAFF","15A9FA","1B76FF","1C3FFD","2C1DFF"]},
    {"name":"Winter Road\n        \n        ","colors":["1B1D26","425955","778C7A","F1F2D8","BFBD9F"]},
    {"name":" H A I T I  R E L I E F \n        \n        ","colors":["32450C","717400","DC8505","EC5519","BE2805"]},
    {"name":"Dream\n        \n        ","colors":["174C4F","207178","FF9666","FFE184","F5E9BE"]},
    {"name":"vintage green\n        \n        ","colors":["BDDFB3","2BAA9C","2F2E2E","0F2625","465F3F"]},
    {"name":"Red Embrace\n        \n        ","colors":["F2F2F2","BF0404","8C0303","590202","400101"]},
    {"name":"Sushi Maki\n        \n        ","colors":["261F27","FEE169","CDD452","F9722E","C9313D"]},
    {"name":"Blues\n        \n        ","colors":["0B3C4D","0E5066","136480","127899","1A8BB3"]},
    {"name":"anggo djago\n        \n        ","colors":["002A4A","17607D","FFF1CE","FF9311","D64700"]},
    {"name":"olde tyme\n        \n        ","colors":["597533","332F28","61B594","E6DEA5","C44E18"]},
    {"name":"Midori and Madoka\n        \n        ","colors":["0F2D40","194759","296B73","3E8C84","D8F2F0"]},
    {"name":"Veerle bio\n        \n        ","colors":["4F1025","C5003E","D9FF5B","78AA00","15362D"]},
    {"name":"Call me chatime\n        \n        ","colors":["F2385A","F5A503","E9F1DF","56D9CD","3AA1BF"]},
    {"name":"modern retro\n        \n        ","colors":["979926","38CCB5","EEFF8E","FFD767","CC2A09"]},
    {"name":"Saltillo\n        \n        ","colors":["7D2A35","CC9258","917A56","B4BA6C","FEFFC2"]},
    {"name":"Happy Mom\n        \n        ","colors":["3FB8AF","7FC7AF","DAD8A7","FF9E9D","FF3D7F"]},
    {"name":"heirloom one\n        \n        ","colors":["C7B773","E3DB9A","F5FCD0","B1C2B3","778691"]},
    {"name":"Citrus\n        \n        ","colors":["F0E14C","FFBB20","FA7B12","E85305","59CC0D"]},
    {"name":"Metropolitan\n        \n        ","colors":["CC3910","F1F2C0","CCC59E","8FA68E","332F29"]},
    {"name":"The kiss\n        \n        ","colors":["56626B","6C9380","C0CA55","F07C6C","AD5472"]},
    {"name":"Jejune\n        \n        ","colors":["289976","67CC8E","B1FF91","FFE877","FF5600"]},
    {"name":"Das Boot\n        \n        ","colors":["2F3540","666A73","F2EDE4","D9D1C7","8C8681"]},
    {"name":"Black Math\n        \n        ","colors":["EB5937","1C1919","403D3C","456F74","D3CBBD"]},
    {"name":"Green  Dark Blue\n        \n        ","colors":["FFFFFF","AEAEAE","E64C66","2D3E50","1BBC9B"]},
    {"name":"beachside shopping\n        \n        ","colors":["FEFFFF","3C3F36","9FB03E","EBE9DC","72918B"]},
    {"name":"Citrus Fizz\n        \n        ","colors":["FF5B2B","B1221C","34393E","8CC6D7","FFDA8C"]},
    {"name":"Fruity\n        \n        ","colors":["E8980C","B1F543","F2FF00","FF5E00","59BBAB"]},
    {"name":"yellow\n        \n        ","colors":["FFBE00","FFDC00","FFD10F","FFDE20","E8CA00"]},
    {"name":"Skin Tone Colours\n        \n        ","colors":["FFE2C5","FFEEDD","FFDDAA","FFC484","FFDD99"]},
    {"name":"gradient green\n        \n        ","colors":["E1E6B9","C4D7A4","ABC8A4","375D3B","183128"]},
    {"name":"Red Hot Revisited\n        \n        ","colors":["420000","600000","790000","931111","BF1616"]},
    {"name":"London Underground\n        \n        ","colors":["E3CBAC","9C9985","C46D3B","788880","324654"]},
    {"name":"creamy grey\n        \n        ","colors":["FFFBDC","BFBCA5","7F7D6E","3F3E37","E5E2C6"]},
    {"name":"Early Winter Morning\n        \n        ","colors":["2F3837","C5C7B6","FFF8D3","4C493E","222028"]},
    {"name":"Son\n        \n        ","colors":["CC6B32","FFAB48","FFE7AD","A7C9AE","888A63"]},
    {"name":"various vintage ver 01\n        \n        ","colors":["C5D9B2","53A194","572C2C","3D2324","695A3B"]},
    {"name":"SoyBean\n        \n        ","colors":["006D80","BDA44D","3C2000","84CECC","78A419"]},
    {"name":"Hipster Haven\n        \n        ","colors":["42282F","74A588","D6CCAD","DC9C76","D6655A"]},
    {"name":"Blackcurrent Birds\n        \n        ","colors":["94B34D","D3FF82","363D52","121D2B","111B1C"]},
    {"name":"Magellan Orange\n        \n        ","colors":["D23600","D95100","DE6D00","EE8900","FCA600"]},
    {"name":"Dogwoods on a Dreary Day\n        \n        ","colors":["FCFAD0","A1A194","5B605F","464646","A90641"]},
    {"name":"Colors of Rio\n        \n        ","colors":["E83A25","FFE9A3","98CC96","004563","191B28"]},
    {"name":"Painted peacock\n        \n        ","colors":["E6DD00","8CB302","008C74","004C66","332B40"]},
    {"name":"DermInc 02\n        \n        ","colors":["1A212C","1D7872","71B095","DEDBA7","D13F32"]},
    {"name":"only human\n        \n        ","colors":["E0FFB3","61C791","31797D","2A2F36","F23C55"]},
    {"name":"Sonic Threshold\n        \n        ","colors":["C4D4CB","55665E","30282A","542733","E84167"]},
    {"name":"Window Light Lavender\n        \n        ","colors":["49404F","596166","D1FFCD","A9BD8B","948A54"]},
    {"name":"Johnny Cash\n        \n        ","colors":["878271","2E302E","1D2120","141414","191C1B"]},
    {"name":"Good Cop\n        \n        ","colors":["03497E","0596D5","9DEBFC","8D7754","FEB228"]},
    {"name":"Tears of a clownfish\n        \n        ","colors":["0D1F30","3B6670","8BADA3","F0E3C0","DB6C0F"]},
    {"name":"Chlorophyll\n        \n        ","colors":["A5EB3C","60C21E","159E31","53DB50","C5FFCB"]},
    {"name":"Copy of vintage card\n        \n        ","colors":["5C4B51","8CBEB2","F2EBBF","F3B562","F06060"]},
    {"name":"Vintage Green 2\n        \n        ","colors":["BDDFB3","009D57","2C372E","0F2925","465F3F"]},
    {"name":"The Bizzniss\n        \n        ","colors":["202B30","4E7178","4FA9B8","74C0CF","F1F7E2"]},
    {"name":"Oahu\n        \n        ","colors":["292929","2BBFBD","F2B33D","F29B30","F22E2E"]},
    {"name":"agave\n        \n        ","colors":["2E95A3","50B8B4","C6FFFA","E2FFA8","D6E055"]},
    {"name":"Corporate Orange\n        \n        ","colors":["313732","8AA8B0","DEDEDE","FFFFFF","F26101"]},
    {"name":"Here We Are\n        \n        ","colors":["3F0B1B","7A1631","CF423C","FC7D49","FFD462"]},
    {"name":"Cinnamon Mint\n        \n        ","colors":["14A697","F2C12E","F29D35","F27649","F25252"]},
    {"name":"Moon Landing\n        \n        ","colors":["98A89E","BAC0AC","FAFAC6","FF4411","D40015"]},
    {"name":"french\n        \n        ","colors":["76A19A","272123","A68D60","B0C5BB","D9593D"]},
    {"name":"summer twilight\n        \n        ","colors":["3B596A","427676","3F9A82","A1CD73","ECDB60"]},
    {"name":"Blue Sky\n        \n        ","colors":["010340","0E1E8C","0003C7","1510F0","1441F7"]},
    {"name":"berry soft olive\n        \n        ","colors":["523631","D1BE91","605E3A","4D462F","592F39"]},
    {"name":"Siena\n        \n        ","colors":["762B1B","807227","CCBF7A","FFEF98","60B0A1"]},
    {"name":"Curry Powder\n        \n        ","colors":["B67D14","F2921F","F0B23E","A62409","441208"]},
    {"name":"vintage red\n        \n        ","colors":["FFEBB0","FFB05A","F84322","C33A1A","9F3818"]},
    {"name":"thanks a latte\n        \n        ","colors":["FFF6B8","ABCCA7","403529","7A5E2F","A68236"]},
    {"name":"Creative Influence\n        \n        ","colors":["FF0000","FF950B","2FA88C","DEEB00","4B2C04"]},
    {"name":"Cherry Bomb\n        \n        ","colors":["262526","404040","8C8979","F2F2F2","F60A20"]},
    {"name":"MOON\n        \n        ","colors":["092140","024959","F2C777","F24738","BF2A2A"]},
    {"name":"TOOL\n        \n        ","colors":["010000","393845","9B96A3","5C0009","940315"]},
    {"name":"The Architect\n        \n        ","colors":["C1E1ED","76C7C6","273D3B","131A19","E35C14"]},
    {"name":"retro air\n        \n        ","colors":["404040","024959","037E8C","F2EFDC","F24C27"]},
    {"name":"Limekiln\n        \n        ","colors":["006D8D","008A6E","549E39","8AB833","C0CF3A"]},
    {"name":"earthTone1\n        \n        ","colors":["FFDB97","B28F4E","FFFDFB","466CB2","97BBFF"]},
    {"name":"Rainy Green Light\n        \n        ","colors":["4D584A","465943","428552","3E754E","4C694B"]},
    {"name":"Park Avenue Shift\n        \n        ","colors":["61E8D2","FCEEB9","302F25","704623","BBE687"]},
    {"name":"Retro package\n        \n        ","colors":["F2E6CE","8AB39F","606362","593325","1D1D1F"]},
    {"name":"Paris\n        \n        ","colors":["FFFFFF","E5E1D1","52616D","2C343B","C44741"]},
    {"name":"Japanese lanterns\n        \n        ","colors":["4C1B33","EFE672","98A942","2D6960","141D14"]},
    {"name":"Joyful Christmas\n        \n        ","colors":["C4EEFF","7BA32D","094201","A41717","C48726"]},
    {"name":"Ground Control to Major Tom\n        \n        ","colors":["2B2E2E","595855","A2ABA5","CAE6E8","313F54"]},
    {"name":"conky\n        \n        ","colors":["212B40","C2E078","FFFFFF","BADCDD","547B97"]},
    {"name":"Couture Gold\n        \n        ","colors":["DC941B","EDC266","B6952C","E1D3A6","E9A119"]},
    {"name":"corporate blew\n        \n        ","colors":["00305A","00448D","0074D9","4192D9","7ABAF2"]},
    {"name":"Double Latte\n        \n        ","colors":["140B04","332312","B59D75","E3D2B4","FFF7EA"]},
    {"name":"transitional life\n        \n        ","colors":["D5F8B4","A6E3A8","8A9A85","7E566B","422335"]},
    {"name":"Dragonfly Sun\n        \n        ","colors":["261822","40152A","731630","CC1E2C","FF5434"]},
    {"name":"Marie Antoinette\n        \n        ","colors":["C44C51","FFB6B8","FFEFB6","A2B5BF","5F8CA3"]},
    {"name":"Draw With Me\n        \n        ","colors":["3CBAC8","93EDD4","F3F5C4","F9CB8F","F19181"]},
    {"name":"Clean and simple\n        \n        ","colors":["D74B4B","DCDDD8","475F77","354B5E","FFFFFF"]},
    {"name":"identification\n        \n        ","colors":["0A3A4A","196674","33A6B2","9AC836","D0E64B"]},
    {"name":"Avant\n        \n        ","colors":["0E3D59","88A61B","F29F05","F25C05","D92525"]},
    {"name":"Strawberry Vanilla Chocolate\n        \n        ","colors":["CCB8A3","FF8FB1","FFF5EA","4E382F","B29882"]},
    {"name":"Martinis At Lunchtime\n        \n        ","colors":["222130","464D57","D4E8D3","FFFCFB","ED8917"]},
    {"name":"Fresh Money\n        \n        ","colors":["2F400D","8CBF26","A8CA65","E8E5B0","419184"]},
    {"name":"Amber Waves\n        \n        ","colors":["FFC62D","E49400","DD5200","EFE38A","91B166"]},
    {"name":"Milan Week\n        \n        ","colors":["41434A","6E9489","DEDCC3","F2F1E9","877963"]},
    {"name":"orange and lime\n        \n        ","colors":["FA8C01","FF6405","577700","082400","A0A600"]},
    {"name":"Skin Tones\n        \n        ","colors":["E8C1B9","FFB3AB","FFCAB8","E8B69C","FFCEAB"]},
    {"name":"Copy of Flat Design Colors v2\n        \n        ","colors":["334D5C","45B29D","EFC94C","E27A3F","DF4949"]},
    {"name":"Chuck Howard Poster\n        \n        ","colors":["A3D9B0","93BF9E","F2F0D5","8C8474","40362E"]},
    {"name":"Sunny leaves\n        \n        ","colors":["C1D301","76AB01","0E6A00","083500","042200"]},
    {"name":"vintage blue dario\n        \n        ","colors":["5ADED4","4DAAAB","26596A","163342","6C98A1"]},
    {"name":"Siberian Winter\n        \n        ","colors":["35262D","FFFBFF","E8ECED","A4B7BB","76A0B0"]},
    {"name":"Feeling Etsy\n        \n        ","colors":["DCEBDD","A0D5D6","789AA1","304345","AD9A27"]},
    {"name":"Health Food Store\n        \n        ","colors":["DE7047","FFDE8D","FFFFFF","CDDE47","528540"]},
    {"name":"Dribble\n        \n        ","colors":["3D4C53","70B7BA","F1433F","E7E1D4","FFFFFF"]},
    {"name":"Step Into the Light\n        \n        ","colors":["212629","067778","49B8A8","85EDB6","D9E5CD"]},
    {"name":"QB Studio\n        \n        ","colors":["FFBC67","DA727E","AC6C82","685C79","455C7B"]},
    {"name":"Hovannes Shiraz\n        \n        ","colors":["229396","8BA88F","C7C5A7","F0DFD0","F23C3C"]},
    {"name":"Wine Olives and Cheese mod\n        \n        ","colors":["1E140E","290418","505217","002D44","E2B38C"]},
    {"name":"Firefly in the night\n        \n        ","colors":["0D1C33","17373C","2B6832","4F9300","A1D700"]},
    {"name":"Teal  Orange\n        \n        ","colors":["002E40","2A5769","FFFFFF","FABD4A","FA9600"]},
    {"name":"Alternative bananas\n        \n        ","colors":["112F41","068587","4FB99F","F2B134","ED553B"]},
    {"name":"Sparkling Sife\n        \n        ","colors":["17111A","321433","660C47","B33467","CCBB51"]},
    {"name":"OIL FLAME\n        \n        ","colors":["282E33","25373A","164852","495E67","FF3838"]},
    {"name":"IMG9460-30x20\n        \n        ","colors":["B0B7BD","F3F3F1","BF9F82","714C36","0E0C0D"]},
    {"name":"Avoid the Norm\n        \n        ","colors":["FFA340","38001C","571133","017A74","00C2BA"]},
    {"name":"pacific\n        \n        ","colors":["19162B","1C425C","6ABDC4","F0E4C5","D6C28F"]},
    {"name":"mute mint\n        \n        ","colors":["1B1E26","F2EFBD","B6D051","70A99A","2F6D7A"]},
    {"name":"Furious\n        \n        ","colors":["E0401C","E6B051","272F30","F7EDB7","9E2B20"]},
    {"name":"Buoy\n        \n        ","colors":["1B2B32","37646F","A3ABAF","E1E7E8","B22E2F"]},
    {"name":"summer catalog  v05\n        \n        ","colors":["E1DA36","FFEA1B","6FE4DA","1DB0BC","007BBC"]},
    {"name":"Cool Blues orange accent\n        \n        ","colors":["0A111F","263248","7E8AA2","E3E3E3","C73226"]},
    {"name":"TOOL remix\n        \n        ","colors":["000001","313634","C7CECF","5C0402","941515"]},
    {"name":"Royal Red\n        \n        ","colors":["453F22","7A6B26","CCAD5C","A1191F","4E1716"]},
    {"name":"Down With Corporate Blues\n        \n        ","colors":["082136","00294D","004B8D","0068C4","2998FF"]},
    {"name":"green thumb\n        \n        ","colors":["075807","097609","70AF1A","B9D40B","E5EB0B"]},
    {"name":"Beach Umbrella\n        \n        ","colors":["FF2151","FF7729","FFAD29","FFEBCA","1AB58A"]},
    {"name":"NAM-cc2015\n        \n        ","colors":["263683","009BC6","7683B1","FF9189","005328"]},
    {"name":"Stream IN\n        \n        ","colors":["2C3E50","FC4349","6DBCDB","D7DADB","FFFFFF"]},
    {"name":"Lime Light and Shady\n        \n        ","colors":["64C733","F0F0F0","3E879E","57524D","36302B"]},
    {"name":"Copy of granada  azafran\n        \n        ","colors":["57385C","A75265","EC7263","FEBE7E","FFEDBC"]},
    {"name":"Wine Olives and Cheese\n        \n        ","colors":["170F0E","290418","505217","FFD372","FFF1AF"]},
    {"name":"Crying in the Rain\n        \n        ","colors":["302C29","D1D1BC","A7C4BB","6C8C84","466964"]},
    {"name":"Jamba Juice\n        \n        ","colors":["CA3995","F58220","FFDF05","BED73D","61BC46"]},
    {"name":"Baby\n        \n        ","colors":["78C0F9","FFDDCE","FFFFFF","FFDBE6","FE86A4"]},
    {"name":"Bold  Justified The Huge World of Typography  infographic\n        \n        ","colors":["458C6B","F2D8A7","D9A86C","D94436","A62424"]},
    {"name":"Botany Greens\n        \n        ","colors":["36CC7C","D6FFBE","94D794","228765","77A668"]},
    {"name":"Tigers Eye\n        \n        ","colors":["040002","3D1309","E8B96A","BC5D15","5C0F00"]},
    {"name":"Brownie\n        \n        ","colors":["26140C","3D2216","784E3D","AB8574","D6BCB1"]},
    {"name":"Franky Demon\n        \n        ","colors":["22475E","75B08A","F0E797","FF9D84","FF5460"]},
    {"name":"mute gold bar\n        \n        ","colors":["F2F1DF","F2B705","F2C84B","BF820F","734002"]},
    {"name":"refreshing melon\n        \n        ","colors":["F7E4A2","A7BD5B","DC574E","8DC7B8","ED9355"]},
    {"name":"The Play Instinct\n        \n        ","colors":["222526","FFBB6E","F28D00","D94F00","80203B"]},
    {"name":"For Juliette\n        \n        ","colors":["FF765E","C2AE8B","FCCF65","FFE5C6","B7BDC4"]},
    {"name":"brilliant vintage\n        \n        ","colors":["302B2F","696153","FFA600","9BB58F","FFD596"]},
    {"name":"Summer Daydream\n        \n        ","colors":["5C2849","A73E5C","EC4863","FFDA66","1FCECB"]},
    {"name":"Red Hot Edited\n        \n        ","colors":["FFE1D0","FFBFB4","FF837E","FF4242","BF1616"]},
    {"name":"Eduardo\n        \n        ","colors":["59535E","FAEEFF","F1BAF3","5D4970","372049"]},
    {"name":"Laboratory\n        \n        ","colors":["FFFEFC","E2E3DF","515B5E","2E3233","CAF200"]},
    {"name":"olive tree\n        \n        ","colors":["003647","00717D","F2D8A7","A4A66A","515932"]},
    {"name":"Blues\n        \n        ","colors":["E1E6FA","C4D7ED","ABC8E2","375D81","183152"]},
    {"name":"Blood Orange Flavour\n        \n        ","colors":["FFEBC3","CC3A00","FF3600","FF851B","800C00"]},
    {"name":"Cool Professional\n        \n        ","colors":["43464D","9197A6","D3DCF2","7690CF","48577D"]},
    {"name":"Sunset Camping\n        \n        ","colors":["2D112C","530031","820233","CA293E","EF4339"]},
    {"name":"tasty\n        \n        ","colors":["F34A53","FAE3B4","AAC789","437356","1E4147"]},
    {"name":"Paparazzi\n        \n        ","colors":["4F3130","FF1F3D","5BE3E3","FDFFF1","8B9698"]},
    {"name":"Oregon Coast\n        \n        ","colors":["21455B","567D8C","A59E8C","8C8372","F2F2F2"]},
    {"name":"Cirque\n        \n        ","colors":["96526B","D17869","EBAD60","F5CF66","8BAB8D"]},
    {"name":"Green Chili\n        \n        ","colors":["72CF3F","85FF00","23E000","2FB81B","00FF1C"]},
    {"name":"mountains\n        \n        ","colors":["012340","026873","83A603","BBBF45","F2F0CE"]},
    {"name":"october full moon\n        \n        ","colors":["002F36","142426","D1B748","EDDB43","FFFD84"]},
    {"name":"Vicki\n        \n        ","colors":["A1A16A","727D59","366353","133C40","03212E"]},
    {"name":"Into The Blue\n        \n        ","colors":["00557C","186D94","3488AD","81C1DC","BBE5F3"]},
    {"name":"Wage Peace\n        \n        ","colors":["FF6F22","D9984F","FFE8A9","3E4237","32948A"]},
    {"name":"Pink Brigade Shades\n        \n        ","colors":["3D0D26","660A3E","891C56","B0276F","C93482"]},
    {"name":"Sprinkler days\n        \n        ","colors":["003B59","00996D","A5D900","F2E926","FF930E"]},
    {"name":"Blue Jeans and\n        \n        ","colors":["2A7A8C","176273","063540","E6D9CF","403D3A"]},
    {"name":"Business Blues  Browns\n        \n        ","colors":["6D8EAD","1F3447","1A0B07","362416","CFCDB4"]},
    {"name":"Copy of Stormy Orange\n        \n        ","colors":["FFFFFA","A1A194","5B605F","464646","FF6600"]},
    {"name":"Cinderella from Nam\n        \n        ","colors":["425957","81AC8B","F2E5A2","F89883","D96666"]},
    {"name":"elevation\n        \n        ","colors":["FAFAC0","C4BE90","8C644C","594D37","293033"]},
    {"name":"mind warp\n        \n        ","colors":["012530","28544B","ACBD86","FFD6A0","FF302C"]},
    {"name":"Adobe Ideas Theme\n        \n        ","colors":["404040","024959","037E8C","F2EFDC","F24C27"]},
    {"name":"Orange and Blue Corporate\n        \n        ","colors":["003354","91BED4","D9E8F5","FFFFFF","F26101"]},
    {"name":"stay summer\n        \n        ","colors":["468071","FFE87A","FFCA53","FF893B","E62738"]},
    {"name":"Patriotic\n        \n        ","colors":["001A2E","8F0000","FFFFFF","8A874B","41594F"]},
    {"name":"Green House\n        \n        ","colors":["00CD73","008148","2D9668","3ECD8E","004E2C"]},
    {"name":"Silver\n        \n        ","colors":["474143","A69E9D","E7E2DA","FFFFFF","E7E8E7"]},
    {"name":"Complementary blue\n        \n        ","colors":["00215E","003CAA","1967F7","5E4000","AA7400"]},
    {"name":"beach glass\n        \n        ","colors":["FFF6C9","C8E8C7","A4DEAB","85CC9F","499E8D"]},
    {"name":"Visual Narrative A\n        \n        ","colors":["F5ECD9","2BACB5","B4CCB9","E84D5B","3B3B3B"]},
    {"name":"MWAD\n        \n        ","colors":["70E8CB","FFE9C7","FF5B5B","545454","2D2D2F"]},
    {"name":"Gold\n        \n        ","colors":["F2DA91","F2B950","F29D35","D96704","BF4904"]},
    {"name":"Johnny Cash Tribute\n        \n        ","colors":["BF8E57","805F3A","FFBE74","42311E","E6AB68"]},
    {"name":"Retro Vintage\n        \n        ","colors":["524656","CF4747","EA7A58","E4DCCB","A6C4BC"]},
    {"name":"Cloud in the Sky\n        \n        ","colors":["023B47","295E52","F2E085","FCAB55","EE7F38"]},
    {"name":"eastern shore\n        \n        ","colors":["7F7364","CBB08E","CBC1B7","789DCB","646F7F"]},
    {"name":"Rio\n        \n        ","colors":["E34517","F5FF53","B4E85E&.........完整代码请登录后点击上方下载按钮下载查看

网友评论0