├── .gitignore ├── Copy Swift Code.sketchplugin └── Contents │ └── Sketch │ ├── manifest.json │ └── script.cocoascript ├── LICENSE ├── README.md └── screen.gif /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | .*.swp 3 | -------------------------------------------------------------------------------- /Copy Swift Code.sketchplugin/Contents/Sketch/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/sketchplugin-swift-color/HEAD/Copy Swift Code.sketchplugin/Contents/Sketch/manifest.json -------------------------------------------------------------------------------- /Copy Swift Code.sketchplugin/Contents/Sketch/script.cocoascript: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/sketchplugin-swift-color/HEAD/Copy Swift Code.sketchplugin/Contents/Sketch/script.cocoascript -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/sketchplugin-swift-color/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/sketchplugin-swift-color/HEAD/README.md -------------------------------------------------------------------------------- /screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ngs-archives/sketchplugin-swift-color/HEAD/screen.gif --------------------------------------------------------------------------------