├── .gitignore ├── .npmignore ├── README.md ├── babel.config.js ├── docs ├── getting-started.mdx ├── index.js ├── notes.md └── themes.js ├── package.json ├── src └── index.js └── test ├── __snapshots__ └── index.js.snap └── index.js /.gitignore: -------------------------------------------------------------------------------- 1 | dist 2 | -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- 1 | src 2 | test 3 | docs 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/README.md -------------------------------------------------------------------------------- /babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/babel.config.js -------------------------------------------------------------------------------- /docs/getting-started.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/docs/getting-started.mdx -------------------------------------------------------------------------------- /docs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/docs/index.js -------------------------------------------------------------------------------- /docs/notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/docs/notes.md -------------------------------------------------------------------------------- /docs/themes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/docs/themes.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/package.json -------------------------------------------------------------------------------- /src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/src/index.js -------------------------------------------------------------------------------- /test/__snapshots__/index.js.snap: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/test/__snapshots__/index.js.snap -------------------------------------------------------------------------------- /test/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jxnblk/typography-system/HEAD/test/index.js --------------------------------------------------------------------------------