├── .gitattributes ├── LICENSE ├── README.md ├── index.html ├── package.json ├── palettes.json ├── sketch.js └── style.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/.gitattributes -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/README.md -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/index.html -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/package.json -------------------------------------------------------------------------------- /palettes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/palettes.json -------------------------------------------------------------------------------- /sketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/sketch.js -------------------------------------------------------------------------------- /style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ronikaufman/color_pals/HEAD/style.css --------------------------------------------------------------------------------