├── .gitignore ├── LICENSE ├── README.md ├── dist ├── android │ ├── brand#1 │ │ ├── tokens-all.xml │ │ └── tokens-colors.xml │ ├── brand#2 │ │ ├── tokens-all.xml │ │ └── tokens-colors.xml │ └── brand#3 │ │ ├── tokens-all.xml │ │ └── tokens-colors.xml ├── ios │ ├── brand#1 │ │ ├── tokens-all.plist │ │ └── tokens-colors.plist │ ├── brand#2 │ │ ├── tokens-all.plist │ │ └── tokens-colors.plist │ └── brand#3 │ │ ├── tokens-all.plist │ │ └── tokens-colors.plist ├── styleguide │ ├── android_brand#1.json │ ├── android_brand#1.scss │ ├── android_brand#2.json │ ├── android_brand#2.scss │ ├── android_brand#3.json │ ├── android_brand#3.scss │ ├── ios_brand#1.json │ ├── ios_brand#1.scss │ ├── ios_brand#2.json │ ├── ios_brand#2.scss │ ├── ios_brand#3.json │ ├── ios_brand#3.scss │ ├── web_brand#1.json │ ├── web_brand#1.scss │ ├── web_brand#2.json │ ├── web_brand#2.scss │ ├── web_brand#3.json │ └── web_brand#3.scss └── web │ ├── brand#1 │ ├── tokens.es6.js │ ├── tokens.json │ └── tokens.scss │ ├── brand#2 │ ├── tokens.es6.js │ ├── tokens.json │ └── tokens.scss │ └── brand#3 │ ├── tokens.es6.js │ ├── tokens.json │ └── tokens.scss ├── package.json ├── src ├── brands │ ├── brand#1 │ │ └── color.json │ ├── brand#2 │ │ └── color.json │ └── brand#3 │ │ └── color.json ├── globals │ ├── avatar │ │ └── index.json │ ├── base │ │ └── index.json │ ├── button │ │ └── index.json │ ├── color │ │ ├── color-basic.json │ │ ├── color-features.json │ │ ├── color-grayscale.json │ │ ├── color-others.json │ │ └── color-socials.json │ ├── icon │ │ └── index.json │ ├── input │ │ └── index.json │ ├── login │ │ └── index.json │ ├── spacing │ │ └── index.json │ └── typography │ │ └── index.json └── platforms │ ├── android │ ├── button.json │ ├── input.json │ ├── login.json │ └── typography.json │ ├── ios │ ├── button.json │ ├── input.json │ ├── login.json │ └── typography.json │ └── web │ ├── button.json │ ├── input.json │ ├── login.json │ └── typography.json ├── templates ├── android-xml.template └── ios-plist.template └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/README.md -------------------------------------------------------------------------------- /dist/android/brand#1/tokens-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/android/brand#1/tokens-all.xml -------------------------------------------------------------------------------- /dist/android/brand#1/tokens-colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/android/brand#1/tokens-colors.xml -------------------------------------------------------------------------------- /dist/android/brand#2/tokens-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/android/brand#2/tokens-all.xml -------------------------------------------------------------------------------- /dist/android/brand#2/tokens-colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/android/brand#2/tokens-colors.xml -------------------------------------------------------------------------------- /dist/android/brand#3/tokens-all.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/android/brand#3/tokens-all.xml -------------------------------------------------------------------------------- /dist/android/brand#3/tokens-colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/android/brand#3/tokens-colors.xml -------------------------------------------------------------------------------- /dist/ios/brand#1/tokens-all.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/ios/brand#1/tokens-all.plist -------------------------------------------------------------------------------- /dist/ios/brand#1/tokens-colors.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/ios/brand#1/tokens-colors.plist -------------------------------------------------------------------------------- /dist/ios/brand#2/tokens-all.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/ios/brand#2/tokens-all.plist -------------------------------------------------------------------------------- /dist/ios/brand#2/tokens-colors.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/ios/brand#2/tokens-colors.plist -------------------------------------------------------------------------------- /dist/ios/brand#3/tokens-all.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/ios/brand#3/tokens-all.plist -------------------------------------------------------------------------------- /dist/ios/brand#3/tokens-colors.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/ios/brand#3/tokens-colors.plist -------------------------------------------------------------------------------- /dist/styleguide/android_brand#1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/android_brand#1.json -------------------------------------------------------------------------------- /dist/styleguide/android_brand#1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/android_brand#1.scss -------------------------------------------------------------------------------- /dist/styleguide/android_brand#2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/android_brand#2.json -------------------------------------------------------------------------------- /dist/styleguide/android_brand#2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/android_brand#2.scss -------------------------------------------------------------------------------- /dist/styleguide/android_brand#3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/android_brand#3.json -------------------------------------------------------------------------------- /dist/styleguide/android_brand#3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/android_brand#3.scss -------------------------------------------------------------------------------- /dist/styleguide/ios_brand#1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/ios_brand#1.json -------------------------------------------------------------------------------- /dist/styleguide/ios_brand#1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/ios_brand#1.scss -------------------------------------------------------------------------------- /dist/styleguide/ios_brand#2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/ios_brand#2.json -------------------------------------------------------------------------------- /dist/styleguide/ios_brand#2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/ios_brand#2.scss -------------------------------------------------------------------------------- /dist/styleguide/ios_brand#3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/ios_brand#3.json -------------------------------------------------------------------------------- /dist/styleguide/ios_brand#3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/ios_brand#3.scss -------------------------------------------------------------------------------- /dist/styleguide/web_brand#1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/web_brand#1.json -------------------------------------------------------------------------------- /dist/styleguide/web_brand#1.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/web_brand#1.scss -------------------------------------------------------------------------------- /dist/styleguide/web_brand#2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/web_brand#2.json -------------------------------------------------------------------------------- /dist/styleguide/web_brand#2.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/web_brand#2.scss -------------------------------------------------------------------------------- /dist/styleguide/web_brand#3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/web_brand#3.json -------------------------------------------------------------------------------- /dist/styleguide/web_brand#3.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/styleguide/web_brand#3.scss -------------------------------------------------------------------------------- /dist/web/brand#1/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#1/tokens.es6.js -------------------------------------------------------------------------------- /dist/web/brand#1/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#1/tokens.json -------------------------------------------------------------------------------- /dist/web/brand#1/tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#1/tokens.scss -------------------------------------------------------------------------------- /dist/web/brand#2/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#2/tokens.es6.js -------------------------------------------------------------------------------- /dist/web/brand#2/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#2/tokens.json -------------------------------------------------------------------------------- /dist/web/brand#2/tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#2/tokens.scss -------------------------------------------------------------------------------- /dist/web/brand#3/tokens.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#3/tokens.es6.js -------------------------------------------------------------------------------- /dist/web/brand#3/tokens.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#3/tokens.json -------------------------------------------------------------------------------- /dist/web/brand#3/tokens.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/dist/web/brand#3/tokens.scss -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/package.json -------------------------------------------------------------------------------- /src/brands/brand#1/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/brands/brand#1/color.json -------------------------------------------------------------------------------- /src/brands/brand#2/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/brands/brand#2/color.json -------------------------------------------------------------------------------- /src/brands/brand#3/color.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/brands/brand#3/color.json -------------------------------------------------------------------------------- /src/globals/avatar/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/avatar/index.json -------------------------------------------------------------------------------- /src/globals/base/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/base/index.json -------------------------------------------------------------------------------- /src/globals/button/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/button/index.json -------------------------------------------------------------------------------- /src/globals/color/color-basic.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/color/color-basic.json -------------------------------------------------------------------------------- /src/globals/color/color-features.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/color/color-features.json -------------------------------------------------------------------------------- /src/globals/color/color-grayscale.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/color/color-grayscale.json -------------------------------------------------------------------------------- /src/globals/color/color-others.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/color/color-others.json -------------------------------------------------------------------------------- /src/globals/color/color-socials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/color/color-socials.json -------------------------------------------------------------------------------- /src/globals/icon/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/icon/index.json -------------------------------------------------------------------------------- /src/globals/input/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/input/index.json -------------------------------------------------------------------------------- /src/globals/login/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/login/index.json -------------------------------------------------------------------------------- /src/globals/spacing/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/spacing/index.json -------------------------------------------------------------------------------- /src/globals/typography/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/globals/typography/index.json -------------------------------------------------------------------------------- /src/platforms/android/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/android/button.json -------------------------------------------------------------------------------- /src/platforms/android/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/android/input.json -------------------------------------------------------------------------------- /src/platforms/android/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/android/login.json -------------------------------------------------------------------------------- /src/platforms/android/typography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/android/typography.json -------------------------------------------------------------------------------- /src/platforms/ios/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/ios/button.json -------------------------------------------------------------------------------- /src/platforms/ios/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/ios/input.json -------------------------------------------------------------------------------- /src/platforms/ios/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/ios/login.json -------------------------------------------------------------------------------- /src/platforms/ios/typography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/ios/typography.json -------------------------------------------------------------------------------- /src/platforms/web/button.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/web/button.json -------------------------------------------------------------------------------- /src/platforms/web/input.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/web/input.json -------------------------------------------------------------------------------- /src/platforms/web/login.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/web/login.json -------------------------------------------------------------------------------- /src/platforms/web/typography.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/src/platforms/web/typography.json -------------------------------------------------------------------------------- /templates/android-xml.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/templates/android-xml.template -------------------------------------------------------------------------------- /templates/ios-plist.template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/templates/ios-plist.template -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/didoo/style-dictionary-demo/HEAD/yarn.lock --------------------------------------------------------------------------------