├── .gitignore ├── Color-Vars.sketchplugin └── Contents │ └── Sketch │ ├── colorvars.cocoascript │ ├── functions.js │ └── manifest.json ├── LICENSE.md ├── README.md ├── appcast.xml └── package.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/.gitignore -------------------------------------------------------------------------------- /Color-Vars.sketchplugin/Contents/Sketch/colorvars.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/Color-Vars.sketchplugin/Contents/Sketch/colorvars.cocoascript -------------------------------------------------------------------------------- /Color-Vars.sketchplugin/Contents/Sketch/functions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/Color-Vars.sketchplugin/Contents/Sketch/functions.js -------------------------------------------------------------------------------- /Color-Vars.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/Color-Vars.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/LICENSE.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/README.md -------------------------------------------------------------------------------- /appcast.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/appcast.xml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/philsinatra/Sketch-Color-Vars/HEAD/package.json --------------------------------------------------------------------------------