[
  {
    "path": ".gitignore",
    "content": "node_modules/\n"
  },
  {
    "path": ".npmignore",
    "content": "bower.json\nnode_modules\n"
  },
  {
    "path": "LICENSE.md",
    "content": "# License\n\nThe MIT License (MIT)\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in\nall copies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN\nTHE SOFTWARE.\n"
  },
  {
    "path": "README.md",
    "content": "# [colors.css 3.0.0](http://clrs.cc/)\n\n\nBetter default colors for the web. A collection of skin classes for faster prototyping and nicer looking sites.\n\n[Customize your own defaults here.](https://components.ai/theme/DIgsnuGL20I1ZwsNP3YY)\n\n#### Stats\n\n903 | 85 | 85\n---|---|---\nbytes | selectors | declarations\n\n## Installation\n\n#### With [npm](https://npmjs.com)\n\n```\nnpm install --save-dev colors.css\n```\n\n#### With Git\n\n```\ngit clone https://github.com/tachyons-css/colors.css\n```\n\n## Usage\n\n#### Using with [PostCSS](https://github.com/postcss/postcss)\n\nImport the css module\n\n```css\n@import \"colors.css\";\n```\n\nThen process the CSS using the [`tachyons-cli`](https://github.com/tachyons-css/tachyons-cli)\n\n```sh\n$ npm i -g tachyons-cli\n$ tachyons-cli path/to/css-file.css > dist/t.css\n```\n\n#### Using the CSS\n\nThe built CSS is located in the `css` directory. It contains an unminified and minified version.\nYou can either cut and paste that css or link to it directly in your html.\n\n```html\n<link rel=\"stylesheet\" href=\"path/to/module/css/colors.css\">\n```\n\n#### Development\n\nThe source CSS files can be found in the `src` directory.\nRunning `$ npm start` will process the source CSS and place the built CSS in the `css` directory.\n\n## The CSS\n\n```css\n/*\n\n  COLORS\n  Better default colors for the web\n\n*/\n/* \n\n   VARIABLES\n\n   - Cool\n   - Warm\n   - Gray Scale\n\n*/\n/*\n\n   SKINS\n   - Backgrounds\n   - Colors\n   - Border colors\n   - SVG fills\n   - SVG Strokes\n\n*/\n/* Backgrounds */\n.bg-navy { background-color: #001F3F; }\n.bg-blue { background-color: #0074D9; }\n.bg-aqua { background-color: #7FDBFF; }\n.bg-teal { background-color: #39CCCC; }\n.bg-olive { background-color: #3D9970; }\n.bg-green { background-color: #2ECC40; }\n.bg-lime { background-color: #01FF70; }\n.bg-yellow { background-color: #FFDC00; }\n.bg-orange { background-color: #FF851B; }\n.bg-red { background-color: #FF4136; }\n.bg-fuchsia { background-color: #F012BE; }\n.bg-purple { background-color: #B10DC9; }\n.bg-maroon { background-color: #85144B; }\n.bg-white { background-color: #FFFFFF; }\n.bg-gray { background-color: #AAAAAA; }\n.bg-silver { background-color: #DDDDDD; }\n.bg-black { background-color: #111111; }\n/* Colors */\n.navy { color: #001F3F; }\n.blue { color: #0074D9; }\n.aqua { color: #7FDBFF; }\n.teal { color: #39CCCC; }\n.olive { color: #3D9970; }\n.green { color: #2ECC40; }\n.lime { color: #01FF70; }\n.yellow { color: #FFDC00; }\n.orange { color: #FF851B; }\n.red { color: #FF4136; }\n.fuchsia { color: #F012BE; }\n.purple { color: #B10DC9; }\n.maroon { color: #85144B; }\n.white { color: #FFFFFF; }\n.silver { color: #DDDDDD; }\n.gray { color: #AAAAAA; }\n.black { color: #111111; }\n/* Border colors \n\n   Use with another border utility that sets border-width and style \n   i.e .border { border-width: 1px); border-style: solid); }     \n*/\n.border--navy { border-color: #001F3F; }\n.border--blue { border-color: #0074D9; }\n.border--aqua { border-color: #7FDBFF; }\n.border--teal { border-color: #39CCCC; }\n.border--olive { border-color: #3D9970; }\n.border--green { border-color: #2ECC40; }\n.border--lime { border-color: #01FF70; }\n.border--yellow { border-color: #FFDC00; }\n.border--orange { border-color: #FF851B; }\n.border--red { border-color: #FF4136; }\n.border--fuchsia { border-color: #F012BE; }\n.border--purple { border-color: #B10DC9; }\n.border--maroon { border-color: #85144B; }\n.border--white { border-color: #FFFFFF; }\n.border--gray { border-color: #AAAAAA; }\n.border--silver { border-color: #DDDDDD; }\n.border--black { border-color: #111111; }\n/* Fills for SVG */\n.fill-navy { fill: #001F3F; }\n.fill-blue { fill: #0074D9; }\n.fill-aqua { fill: #7FDBFF; }\n.fill-teal { fill: #39CCCC; }\n.fill-olive { fill: #3D9970; }\n.fill-green { fill: #2ECC40; }\n.fill-lime { fill: #01FF70; }\n.fill-yellow { fill: #FFDC00; }\n.fill-orange { fill: #FF851B; }\n.fill-red { fill: #FF4136; }\n.fill-fuchsia { fill: #F012BE; }\n.fill-purple { fill: #B10DC9; }\n.fill-maroon { fill: #85144B; }\n.fill-white { fill: #FFFFFF; }\n.fill-gray { fill: #AAAAAA; }\n.fill-silver { fill: #DDDDDD; }\n.fill-black { fill: #111111; }\n/* Strokes for SVG */\n.stroke-navy { stroke: #001F3F; }\n.stroke-blue { stroke: #0074D9; }\n.stroke-aqua { stroke: #7FDBFF; }\n.stroke-teal { stroke: #39CCCC; }\n.stroke-olive { stroke: #3D9970; }\n.stroke-green { stroke: #2ECC40; }\n.stroke-lime { stroke: #01FF70; }\n.stroke-yellow { stroke: #FFDC00; }\n.stroke-orange { stroke: #FF851B; }\n.stroke-red { stroke: #FF4136; }\n.stroke-fuchsia { stroke: #F012BE; }\n.stroke-purple { stroke: #B10DC9; }\n.stroke-maroon { stroke: #85144B; }\n.stroke-white { stroke: #FFFFFF; }\n.stroke-gray { stroke: #AAAAAA; }\n.stroke-silver { stroke: #DDDDDD; }\n.stroke-black { stroke: #111111; }\n```\n\n### More Open Source Color Systems\n\n- [LCH - Natural](https://components.ai/theme/LSFBhQYkSnSDqZ1qzJjN)\n- [LCH - B-Spline](https://components.ai/theme/eVFeV340xXtXCv4Ne3Wx)\n- [LCH - Linear](https://components.ai/theme/XIM7Jo6uxkBEgnfbqrxK)\n- [LCH - Monotone](https://components.ai/theme/5t1N11PUhqqsxmLudFpY)\n- [LAB - Natural](https://components.ai/theme/A2zudJ4qzc4bLoUVBAZ3)\n- [LAB - B-Spline](https://components.ai/theme/N9DlRkNZZagzZJTDi4Wr)\n- [LAB - Linear](https://components.ai/theme/Jg0GRCvBLm6RbjeOCzLs)\n- [LAB - Monotone](https://components.ai/theme/LZ23GsXttzH7Q3Y0OIHM)\n- [RGB - Natural](https://components.ai/theme/K4C98oSFrgkCLOoQhXbJ)\n- [RGB - B-Spline](https://components.ai/theme/IDL04FzjDpCEOg5NiW6i)\n- [RGB - Linear](https://components.ai/theme/eab3gpmHglpIYDIUEYcl)\n- [RGB - Monotone](https://components.ai/theme/3RD5FJ1wOaGAjmV2WE2j)\n\n\n\n## Contributing\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n\n## Authors\n\n* [mrmrs](http://mrmrs.cc)\n* [johno](http://johnotander.com)\n\n## License\n\nMIT\n\n"
  },
  {
    "path": "assets/colors-css.gpl",
    "content": "GIMP Palette\nName: colors.css\nColumns: 4\n#\n  0  31  63\tNavy\n  0 116 217\tBlue\n127 219 255\tAqua\n 57 204 204\tTeal\n 61 153 112\tOlive\n 46 204  64\tGreen\n  1 255 112\tLime\n255 220   0\tYellow\n255 133  27\tOrange\n255  65  54\tRed\n133  20  75\tMaroon\n240  18 190\tFuchsia\n177  13 201\tPurple\n 17  17  17\tBlack\n170 170 170\tGray\n221 221 221\tSilver\n255 255 255\tWhite\n"
  },
  {
    "path": "css/colors.css",
    "content": "/*\n\n  COLORS\n  Better default colors for the web\n\n*/\n/* \n\n   VARIABLES\n\n   - Cool\n   - Warm\n   - Gray Scale\n\n*/\n/*\n\n   SKINS\n   - Backgrounds\n   - Colors\n   - Border colors\n   - SVG fills\n   - SVG Strokes\n\n*/\n/* Backgrounds */\n.bg-navy { background-color: #001F3F; }\n.bg-blue { background-color: #0074D9; }\n.bg-aqua { background-color: #7FDBFF; }\n.bg-teal { background-color: #39CCCC; }\n.bg-olive { background-color: #3D9970; }\n.bg-green { background-color: #2ECC40; }\n.bg-lime { background-color: #01FF70; }\n.bg-yellow { background-color: #FFDC00; }\n.bg-orange { background-color: #FF851B; }\n.bg-red { background-color: #FF4136; }\n.bg-fuchsia { background-color: #F012BE; }\n.bg-purple { background-color: #B10DC9; }\n.bg-maroon { background-color: #85144B; }\n.bg-white { background-color: #FFFFFF; }\n.bg-gray { background-color: #AAAAAA; }\n.bg-silver { background-color: #DDDDDD; }\n.bg-black { background-color: #111111; }\n/* Colors */\n.navy { color: #001F3F; }\n.blue { color: #0074D9; }\n.aqua { color: #7FDBFF; }\n.teal { color: #39CCCC; }\n.olive { color: #3D9970; }\n.green { color: #2ECC40; }\n.lime { color: #01FF70; }\n.yellow { color: #FFDC00; }\n.orange { color: #FF851B; }\n.red { color: #FF4136; }\n.fuchsia { color: #F012BE; }\n.purple { color: #B10DC9; }\n.maroon { color: #85144B; }\n.white { color: #FFFFFF; }\n.silver { color: #DDDDDD; }\n.gray { color: #AAAAAA; }\n.black { color: #111111; }\n/* Border colors \n\n   Use with another border utility that sets border-width and style \n   i.e .border { border-width: 1px); border-style: solid); }     \n*/\n.border--navy { border-color: #001F3F; }\n.border--blue { border-color: #0074D9; }\n.border--aqua { border-color: #7FDBFF; }\n.border--teal { border-color: #39CCCC; }\n.border--olive { border-color: #3D9970; }\n.border--green { border-color: #2ECC40; }\n.border--lime { border-color: #01FF70; }\n.border--yellow { border-color: #FFDC00; }\n.border--orange { border-color: #FF851B; }\n.border--red { border-color: #FF4136; }\n.border--fuchsia { border-color: #F012BE; }\n.border--purple { border-color: #B10DC9; }\n.border--maroon { border-color: #85144B; }\n.border--white { border-color: #FFFFFF; }\n.border--gray { border-color: #AAAAAA; }\n.border--silver { border-color: #DDDDDD; }\n.border--black { border-color: #111111; }\n/* Fills for SVG */\n.fill-navy { fill: #001F3F; }\n.fill-blue { fill: #0074D9; }\n.fill-aqua { fill: #7FDBFF; }\n.fill-teal { fill: #39CCCC; }\n.fill-olive { fill: #3D9970; }\n.fill-green { fill: #2ECC40; }\n.fill-lime { fill: #01FF70; }\n.fill-yellow { fill: #FFDC00; }\n.fill-orange { fill: #FF851B; }\n.fill-red { fill: #FF4136; }\n.fill-fuchsia { fill: #F012BE; }\n.fill-purple { fill: #B10DC9; }\n.fill-maroon { fill: #85144B; }\n.fill-white { fill: #FFFFFF; }\n.fill-gray { fill: #AAAAAA; }\n.fill-silver { fill: #DDDDDD; }\n.fill-black { fill: #111111; }\n/* Strokes for SVG */\n.stroke-navy { stroke: #001F3F; }\n.stroke-blue { stroke: #0074D9; }\n.stroke-aqua { stroke: #7FDBFF; }\n.stroke-teal { stroke: #39CCCC; }\n.stroke-olive { stroke: #3D9970; }\n.stroke-green { stroke: #2ECC40; }\n.stroke-lime { stroke: #01FF70; }\n.stroke-yellow { stroke: #FFDC00; }\n.stroke-orange { stroke: #FF851B; }\n.stroke-red { stroke: #FF4136; }\n.stroke-fuchsia { stroke: #F012BE; }\n.stroke-purple { stroke: #B10DC9; }\n.stroke-maroon { stroke: #85144B; }\n.stroke-white { stroke: #FFFFFF; }\n.stroke-gray { stroke: #AAAAAA; }\n.stroke-silver { stroke: #DDDDDD; }\n.stroke-black { stroke: #111111; }\n\n"
  },
  {
    "path": "index.html",
    "content": "<!DOCTYPE html>\n<html lang=\"en\">\n  <head>\n    <meta http-equiv=\"X-UA-Compatible\" content=\"IE=Edge\">\n    <meta charset=\"utf-8\">\n    <title>Colors</title>\n    <meta name=\"author\" content=\"mrmrs\">\n    <meta name=\"description\" content=\"A nicer color palette for the web. Download as css, sass, stylus, or plain text.\">\n    <meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">\n    <link rel=\"stylesheet\" href=\"css/colors.css\">\n    <link rel=\"stylesheet\" href=\"site.css\">\n  </head>\n  <body>\n    <section>\n      <header class=\"pvxl\">\n        <h1 class=\"mega title tc man\">Examples</h1>\n      </header>\n      <h2 class=\"pvl thin f1\">Backgrounds</h2>\n      <div class=\"bg-navy pvl white\">\n        <h1 class=\"title\">NAVY</h1>\n        <h2 class=\"thin title small\">#001f3f</h2>\n      </div>\n      <div class=\"bg-blue pvl\">\n        <h1 class=\"title\">BLUE</h1>\n        <h2 class=\"thin title small\">#0074d9</h2>\n      </div>\n      <div class=\"bg-aqua pvl\">\n        <h1 class=\"title\">AQUA</h1>\n        <h2 class=\"thin title small\">#7fdbff</h2>\n      </div>\n      <div class=\"bg-teal pvl\">\n        <h1 class=\"title\">TEAL</h1>\n        <h2 class=\"thin title small\">#39cccc</h2>\n      </div>\n      <div class=\"bg-olive pvl\">\n        <h1 class=\"title\">OLIVE</h1>\n        <h2 class=\"thin title small\">#3d9970</h2>\n      </div>\n      <div class=\"bg-green pvl\">\n        <h1 class=\"title\">GREEN</h1>\n        <h2 class=\"thin title small\">#2ecc40</h2>\n      </div>\n      <div class=\"bg-lime pvl\">\n        <h1 class=\"title\">LIME</h1>\n        <h2 class=\"thin title small\">#01ff70</h2>\n      </div>\n      <div class=\"bg-yellow pvl\">\n        <h1 class=\"title\">YELLOW</h1>\n        <h2 class=\"thin title small\">#ffdc00</h2>\n      </div>\n      <div class=\"bg-orange pvl\">\n        <h1 class=\"title\">ORANGE</h1>\n        <h2 class=\"thin title small\">#ff851b</h2>\n      </div>\n      <div class=\"bg-red pvl\">\n        <h1 class=\"title\">RED</h1>\n        <h2 class=\"thin title small\">#ff4136</h2>\n      </div>\n      <div class=\"bg-maroon pvl\">\n        <h1 class=\"title\">MAROON</h1>\n        <h2 class=\"thin title small\">#85144b</h2>\n      </div>\n      <div class=\"bg-fuchsia pvl\">\n        <h1 class=\"title\">FUCHSIA</h1>\n        <h2 class=\"thin title small\">#f012be</h2>\n      </div>\n      <div class=\"bg-purple pvl\">\n        <h1 class=\"title\">PURPLE</h1>\n        <h2 class=\"thin title small\">#b10dc9</h2>\n      </div>\n      <div class=\"bg-white pvl\">\n        <h1 class=\"title\">WHITE</h1>\n        <h2 class=\"thin title small\">#ffffff</h2>\n      </div>\n      <div class=\"bg-silver pvl\">\n        <h1 class=\"title\">SILVER</h1>\n        <h2 class=\"thin title small\">#dddddd</h2>\n      </div>\n      <div class=\"bg-gray pvl\">\n        <h1 class=\"title\">GRAY</h1>\n        <h2 class=\"thin title small\">#aaaaaa</h2>\n      </div>\n      <div class=\"bg-black pvl white\">\n        <h1 class=\"title\">BLACK</h1>\n        <h2 class=\"thin title small\">#111111</h2>\n      </div>\n    </section>\n    <section>\n      <h2 class=\"thin f1 pvl\">Text</h2>\n      <div class=\"navy pvl\">\n        <h1 class=\"title\">NAVY</h1>\n        <h2 class=\"thin title small\">#001f3f</h2>\n      </div>\n      <div class=\"blue pvl\">\n        <h1 class=\"title\">BLUE</h1>\n        <h2 class=\"thin title small\">#0074d9</h2>\n      </div>\n      <div class=\"aqua pvl\">\n        <h1 class=\"title\">AQUA</h1>\n        <h2 class=\"thin title small\">#7fdbff</h2>\n      </div>\n      <div class=\"teal pvl\">\n        <h1 class=\"title\">TEAL</h1>\n        <h2 class=\"thin title small\">#39cccc</h2>\n      </div>\n      <div class=\"olive pvl\">\n        <h1 class=\"title\">OLIVE</h1>\n        <h2 class=\"thin title small\">#3d9970</h2>\n      </div>\n      <div class=\"green pvl\">\n        <h1 class=\"title\">GREEN</h1>\n        <h2 class=\"thin title small\">#2ecc40</h2>\n      </div>\n      <div class=\"lime pvl\">\n        <h1 class=\"title\">LIME</h1>\n        <h2 class=\"thin title small\">#01ff70</h2>\n      </div>\n      <div class=\"yellow pvl\">\n        <h1 class=\"title\">YELLOW</h1>\n        <h2 class=\"thin title small\">#ffdc00</h2>\n      </div>\n      <div class=\"orange pvl\">\n        <h1 class=\"title\">ORANGE</h1>\n        <h2 class=\"thin title small\">#ff851b</h2>\n      </div>\n      <div class=\"red pvl\">\n        <h1 class=\"title\">RED</h1>\n        <h2 class=\"thin title small\">#ff4136</h2>\n      </div>\n      <div class=\"maroon pvl\">\n        <h1 class=\"title\">MAROON</h1>\n        <h2 class=\"thin title small\">#85144b</h2>\n      </div>\n      <div class=\"fuchsia pvl\">\n        <h1 class=\"title\">FUCHSIA</h1>\n        <h2 class=\"thin title small\">#f012be</h2>\n      </div>\n      <div class=\"purple pvl\">\n        <h1 class=\"title\">PURPLE</h1>\n        <h2 class=\"thin title small\">#b10dc9</h2>\n      </div>\n      <div class=\"black pvl\">\n        <h1 class=\"title\">BLACK</h1>\n        <h2 class=\"thin title small\">#111111</h2>\n      </div>\n      <div class=\"bg-black gray pvl\">\n        <h1 class=\"title\">GRAY</h1>\n        <h2 class=\"thin title small\">#aaaaaa</h2>\n      </div>\n      <div class=\"bg-black silver pvl\">\n        <h1 class=\"title\">SILVER</h1>\n        <h2 class=\"thin title small\">#dddddd</h2>\n      </div>\n      <div class=\"bg-black white pvl\">\n        <h1 class=\"title\">WHITE</h1>\n        <h2 class=\"thin title small\">#ffffff</h2>\n      </div>\n    </section>\n  </body>\n</html>\n"
  },
  {
    "path": "js/colors.js",
    "content": "(function() {\n  var colors = {\n    aqua:    '#7fdbff',\n    blue:    '#0074d9',\n    lime:    '#01ff70',\n    navy:    '#001f3f',\n    teal:    '#39cccc',\n    olive:   '#3d9970',\n    green:   '#2ecc40',\n    red:     '#ff4136',\n    maroon:  '#85144b',\n    orange:  '#ff851b',\n    purple:  '#b10dc9',\n    yellow:  '#ffdc00',\n    fuchsia: '#f012be',\n    gray:    '#aaaaaa',\n    white:   '#ffffff',\n    black:   '#111111',\n    silver:  '#dddddd'\n  };\n\n  if(typeof module !== 'undefined' && typeof module.exports !== 'undefined') {\n    module.exports = colors;\n  } else {\n    window.colors = colors;\n  }\n})();\n"
  },
  {
    "path": "package.json",
    "content": "{\n  \"name\": \"colors.css\",\n  \"version\": \"3.0.2\",\n  \"main\": \"js/colors.js\",\n  \"style\": \"css/colors.css\",\n  \"homepage\": \"http://clrs.cc\",\n  \"description\": \"Better default colors for the web. A collection of skin classes for faster prototyping and nicer looking sites.\",\n  \"keywords\": [\n    \"colors\",\n    \"design\",\n    \"a11y\",\n    \"postcss\",\n    \"palette\",\n    \"css\",\n    \"oocss\"\n  ],\n  \"devDependencies\": {\n    \"tachyons-cli\": \"^1.3.0\"\n  },\n  \"repository\": {\n    \"type\": \"git\",\n    \"url\": \"http://github.com/mrmrs/colors.git\"\n  },\n  \"bugs\": {\n    \"url\": \"http://github.com/mrmrs/colors/issues\",\n    \"email\": \"hi@mrmrs.cc\"\n  },\n  \"author\": {\n    \"name\": \"@mrmrs\",\n    \"email\": \"hi@mrmrs.cc\",\n    \"url\": \"http://mrmrs.cc\"\n  },\n  \"contributors\": [\n    {\n      \"name\": \"@mrmrs\",\n      \"email\": \"hi@mrmrs.cc\"\n    },\n    {\n      \"name\": \"@ilanbiala\"\n    },\n    {\n      \"name\": \"@kdrdgn\",\n      \"url\": \"http://www.twitter.com/kdrdgn\"\n    },\n    {\n      \"name\": \"@tenmilestereo\",\n      \"url\": \"http://www.lewiscowper.com\"\n    },\n    {\n      \"name\": \"@nschonni\",\n      \"email\": \"nschonni@gmail.com\",\n      \"url\": \"http://wet-boew.github.io/\"\n    },\n    {\n      \"name\": \"SiR-DanieL\"\n    },\n    {\n      \"name\": \"@enyo\",\n      \"email\": \"m@tias.me\",\n      \"url\": \"http://colorglare.com\"\n    }\n  ],\n  \"engines\": {\n    \"node\": \">=0.10.22\"\n  },\n  \"scripts\": {\n    \"start\": \"tachyons src/colors.css > css/colors.css && tachyons src/colors.css --minify > css/colors.min.css && tachyons src/colors.css --generate-docs --package=../../package.json > readme.md\"\n  },\n  \"license\": \"MIT\"\n}\n"
  },
  {
    "path": "src/_skins.css",
    "content": "/*\n\n   SKINS\n   - Backgrounds\n   - Colors\n   - Border colors\n   - SVG fills\n   - SVG Strokes\n\n*/\n\n\n/* Backgrounds */\n\n.bg-navy {    background-color: var(--navy); }\n.bg-blue {    background-color: var(--blue); }\n.bg-aqua {    background-color: var(--aqua); }\n.bg-teal {    background-color: var(--teal); }\n.bg-olive {   background-color: var(--olive); }\n.bg-green {   background-color: var(--green); }\n.bg-lime {    background-color: var(--lime); }\n.bg-yellow {  background-color: var(--yellow); }\n.bg-orange {  background-color: var(--orange); }\n.bg-red {     background-color: var(--red); }\n.bg-fuchsia { background-color: var(--fuchsia); }\n.bg-purple {  background-color: var(--purple); }\n.bg-maroon {  background-color: var(--maroon); }\n.bg-white {   background-color: var(--white); }\n.bg-gray {    background-color: var(--gray); }\n.bg-silver {  background-color: var(--silver); }\n.bg-black {   background-color: var(--black); }\n\n\n/* Colors */\n\n.navy {       color: var(--navy); }\n.blue {       color: var(--blue); }\n.aqua {       color: var(--aqua); }\n.teal {       color: var(--teal); }\n.olive {      color: var(--olive); }\n.green {      color: var(--green); }\n.lime {       color: var(--lime); }\n.yellow {     color: var(--yellow); }\n.orange {     color: var(--orange); }\n.red {        color: var(--red); }\n.fuchsia {    color: var(--fuchsia); }\n.purple {     color: var(--purple); }\n.maroon {     color: var(--maroon); }\n.white {      color: var(--white); }\n.silver {     color: var(--silver); }\n.gray {       color: var(--gray); }\n.black {      color: var(--black); }\n\n\n/* Border colors \n\n   Use with another border utility that sets border-width and style \n   i.e .border { border-width: 1px); border-style: solid); }     \n*/\n\n.border--navy {    border-color: var(--navy); }\n.border--blue {    border-color: var(--blue); }\n.border--aqua {    border-color: var(--aqua); }\n.border--teal {    border-color: var(--teal); }\n.border--olive {   border-color: var(--olive); }\n.border--green {   border-color: var(--green); }\n.border--lime {    border-color: var(--lime); }\n.border--yellow {  border-color: var(--yellow); }\n.border--orange {  border-color: var(--orange); }\n.border--red {     border-color: var(--red); }\n.border--fuchsia { border-color: var(--fuchsia); }\n.border--purple {  border-color: var(--purple); }\n.border--maroon {  border-color: var(--maroon); }\n.border--white {   border-color: var(--white); }\n.border--gray {    border-color: var(--gray); }\n.border--silver {  border-color: var(--silver); }\n.border--black {   border-color: var(--black); }\n\n\n/* Fills for SVG */\n\n.fill-navy {    fill: var(--navy); }\n.fill-blue {    fill: var(--blue); }\n.fill-aqua {    fill: var(--aqua); }\n.fill-teal {    fill: var(--teal); }\n.fill-olive {   fill: var(--olive); }\n.fill-green {   fill: var(--green); }\n.fill-lime {    fill: var(--lime); }\n.fill-yellow {  fill: var(--yellow); }\n.fill-orange {  fill: var(--orange); }\n.fill-red {     fill: var(--red); }\n.fill-fuchsia { fill: var(--fuchsia); }\n.fill-purple {  fill: var(--purple); }\n.fill-maroon {  fill: var(--maroon); }\n.fill-white {   fill: var(--white); }\n.fill-gray {    fill: var(--gray); }\n.fill-silver {  fill: var(--silver); }\n.fill-black {   fill: var(--black); }\n\n/* Strokes for SVG */\n\n.stroke-navy {    stroke: var(--navy); }\n.stroke-blue {    stroke: var(--blue); }\n.stroke-aqua {    stroke: var(--aqua); }\n.stroke-teal {    stroke: var(--teal); }\n.stroke-olive {   stroke: var(--olive); }\n.stroke-green {   stroke: var(--green); }\n.stroke-lime {    stroke: var(--lime); }\n.stroke-yellow {  stroke: var(--yellow); }\n.stroke-orange {  stroke: var(--orange); }\n.stroke-red {     stroke: var(--red); }\n.stroke-fuchsia { stroke: var(--fuchsia); }\n.stroke-purple {  stroke: var(--purple); }\n.stroke-maroon {  stroke: var(--maroon); }\n.stroke-white {   stroke: var(--white); }\n.stroke-gray {    stroke: var(--gray); }\n.stroke-silver {  stroke: var(--silver); }\n.stroke-black {   stroke: var(--black); }\n\n"
  },
  {
    "path": "src/_variables.css",
    "content": "/* \n\n   VARIABLES\n\n   - Cool\n   - Warm\n   - Gray Scale\n\n*/\n\n:root {\n\n--aqua:  #7FDBFF;\n--blue:  #0074D9;\n--navy:  #001F3F;\n--teal:  #39CCCC;\n--green: #2ECC40;\n--olive: #3D9970;\n--lime:  #01FF70;\n\n--yellow:  #FFDC00;\n--orange:  #FF851B;\n--red:     #FF4136;\n--fuchsia: #F012BE;\n--purple:  #B10DC9;\n--maroon:  #85144B;\n\n--white:  #FFFFFF;\n--silver: #DDDDDD;\n--gray:   #AAAAAA;\n--black:  #111111;\n\n}\n"
  },
  {
    "path": "src/colors.css",
    "content": "/*\n\n  COLORS\n  Better default colors for the web\n\n*/\n\n\n@import './_variables';\n@import './_skins';\n"
  }
]