├── .gitignore ├── LICENSE ├── README.md ├── actions ├── index.js └── withTemplate.js ├── examples └── custom-generation │ ├── config.js │ ├── output.sketch │ ├── package-lock.json │ ├── package.json │ ├── properties │ ├── asset │ │ ├── font.json │ │ └── svg.json │ ├── color │ │ ├── background.json │ │ ├── base.json │ │ ├── border.json │ │ ├── brand.json │ │ └── font.json │ ├── content │ │ └── icon.json │ ├── easing.json │ ├── font.json │ ├── size │ │ ├── border.json │ │ ├── font.json │ │ ├── icon.json │ │ └── padding.json │ ├── time.json │ └── transition.json │ └── sketch │ ├── components │ ├── Swatch.js │ └── SwatchGroup.js │ ├── index.js │ └── pages │ └── color.js ├── index.js ├── models ├── artboard.js ├── attributedString.js ├── border.js ├── color.js ├── document.js ├── fill.js ├── group.js ├── index.js ├── meta.js ├── object.js ├── page.js ├── rect.js ├── sharedStyle.js ├── stringAttribute.js ├── style.js ├── swatch.js ├── textLayer.js ├── textStyle.js └── user.js ├── package.json ├── test ├── config.js ├── package-lock.json ├── package.json ├── properties │ ├── asset │ │ ├── font.json │ │ └── svg.json │ ├── color │ │ ├── background.json │ │ ├── base.json │ │ ├── border.json │ │ ├── brand.json │ │ └── font.json │ ├── content │ │ └── icon.json │ ├── easing.json │ ├── font.json │ ├── size │ │ ├── border.json │ │ ├── font.json │ │ ├── icon.json │ │ └── padding.json │ ├── time.json │ └── transition.json └── template.sketch └── transforms ├── colorSketch.js └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | /build 3 | /*.iml 4 | /tmp 5 | *~ 6 | *# 7 | *.swp 8 | *.bak 9 | .DS_Store 10 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/README.md -------------------------------------------------------------------------------- /actions/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/actions/index.js -------------------------------------------------------------------------------- /actions/withTemplate.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/actions/withTemplate.js -------------------------------------------------------------------------------- /examples/custom-generation/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/config.js -------------------------------------------------------------------------------- /examples/custom-generation/output.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/output.sketch -------------------------------------------------------------------------------- /examples/custom-generation/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/package-lock.json -------------------------------------------------------------------------------- /examples/custom-generation/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/package.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/asset/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/asset/font.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/asset/svg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/asset/svg.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/color/background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/color/background.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/color/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/color/base.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/color/border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/color/border.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/color/brand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/color/brand.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/color/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/color/font.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/content/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/content/icon.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/easing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/easing.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/font.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/size/border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/size/border.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/size/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/size/font.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/size/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/size/icon.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/size/padding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/size/padding.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/time.json -------------------------------------------------------------------------------- /examples/custom-generation/properties/transition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/properties/transition.json -------------------------------------------------------------------------------- /examples/custom-generation/sketch/components/Swatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/sketch/components/Swatch.js -------------------------------------------------------------------------------- /examples/custom-generation/sketch/components/SwatchGroup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/sketch/components/SwatchGroup.js -------------------------------------------------------------------------------- /examples/custom-generation/sketch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/sketch/index.js -------------------------------------------------------------------------------- /examples/custom-generation/sketch/pages/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/examples/custom-generation/sketch/pages/color.js -------------------------------------------------------------------------------- /index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/index.js -------------------------------------------------------------------------------- /models/artboard.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/artboard.js -------------------------------------------------------------------------------- /models/attributedString.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/attributedString.js -------------------------------------------------------------------------------- /models/border.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/border.js -------------------------------------------------------------------------------- /models/color.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/color.js -------------------------------------------------------------------------------- /models/document.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/document.js -------------------------------------------------------------------------------- /models/fill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/fill.js -------------------------------------------------------------------------------- /models/group.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/group.js -------------------------------------------------------------------------------- /models/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/index.js -------------------------------------------------------------------------------- /models/meta.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/meta.js -------------------------------------------------------------------------------- /models/object.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/object.js -------------------------------------------------------------------------------- /models/page.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/page.js -------------------------------------------------------------------------------- /models/rect.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/rect.js -------------------------------------------------------------------------------- /models/sharedStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/sharedStyle.js -------------------------------------------------------------------------------- /models/stringAttribute.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/stringAttribute.js -------------------------------------------------------------------------------- /models/style.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/style.js -------------------------------------------------------------------------------- /models/swatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/swatch.js -------------------------------------------------------------------------------- /models/textLayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/textLayer.js -------------------------------------------------------------------------------- /models/textStyle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/textStyle.js -------------------------------------------------------------------------------- /models/user.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/models/user.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/package.json -------------------------------------------------------------------------------- /test/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/config.js -------------------------------------------------------------------------------- /test/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/package-lock.json -------------------------------------------------------------------------------- /test/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/package.json -------------------------------------------------------------------------------- /test/properties/asset/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/asset/font.json -------------------------------------------------------------------------------- /test/properties/asset/svg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/asset/svg.json -------------------------------------------------------------------------------- /test/properties/color/background.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/color/background.json -------------------------------------------------------------------------------- /test/properties/color/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/color/base.json -------------------------------------------------------------------------------- /test/properties/color/border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/color/border.json -------------------------------------------------------------------------------- /test/properties/color/brand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/color/brand.json -------------------------------------------------------------------------------- /test/properties/color/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/color/font.json -------------------------------------------------------------------------------- /test/properties/content/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/content/icon.json -------------------------------------------------------------------------------- /test/properties/easing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/easing.json -------------------------------------------------------------------------------- /test/properties/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/font.json -------------------------------------------------------------------------------- /test/properties/size/border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/size/border.json -------------------------------------------------------------------------------- /test/properties/size/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/size/font.json -------------------------------------------------------------------------------- /test/properties/size/icon.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/size/icon.json -------------------------------------------------------------------------------- /test/properties/size/padding.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/size/padding.json -------------------------------------------------------------------------------- /test/properties/time.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/time.json -------------------------------------------------------------------------------- /test/properties/transition.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/properties/transition.json -------------------------------------------------------------------------------- /test/template.sketch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/test/template.sketch -------------------------------------------------------------------------------- /transforms/colorSketch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/transforms/colorSketch.js -------------------------------------------------------------------------------- /transforms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/dbanksdesign/sketch-style-dictionary/HEAD/transforms/index.js --------------------------------------------------------------------------------