├── .gitignore ├── CODEOWNERS ├── CONTRIBUTING.md ├── LICENSE.txt ├── README.md ├── app.json ├── design-tokens ├── aliases.json ├── app.json ├── border.json ├── font.json ├── spacing.json └── text.json ├── gulpfile.js ├── package.json ├── server.js └── src ├── index.html └── styles └── main.scss /.gitignore: -------------------------------------------------------------------------------- 1 | .generated 2 | .www 3 | node_modules 4 | npm-debug.log 5 | -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/README.md -------------------------------------------------------------------------------- /app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/app.json -------------------------------------------------------------------------------- /design-tokens/aliases.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/design-tokens/aliases.json -------------------------------------------------------------------------------- /design-tokens/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/design-tokens/app.json -------------------------------------------------------------------------------- /design-tokens/border.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/design-tokens/border.json -------------------------------------------------------------------------------- /design-tokens/font.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/design-tokens/font.json -------------------------------------------------------------------------------- /design-tokens/spacing.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/design-tokens/spacing.json -------------------------------------------------------------------------------- /design-tokens/text.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/design-tokens/text.json -------------------------------------------------------------------------------- /gulpfile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/gulpfile.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/package.json -------------------------------------------------------------------------------- /server.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/server.js -------------------------------------------------------------------------------- /src/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/src/index.html -------------------------------------------------------------------------------- /src/styles/main.scss: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/salesforce-ux/theo-example/HEAD/src/styles/main.scss --------------------------------------------------------------------------------