├── .gitignore ├── .prettierignore ├── .prettierrc ├── LICENSE ├── README.md ├── assets ├── 0.0.1.png ├── 0.0.2.png ├── 0.0.3.png ├── 0.0.4.png ├── 0.0.5.png ├── 0.0.7.png ├── grid.png └── thing-font.svg ├── font ├── thing-regular-0.0.1.otf ├── thing-regular-0.0.2.otf ├── thing-regular-0.0.3.otf ├── thing-regular-0.0.4.otf ├── thing-regular-0.0.5.otf ├── thing-regular-0.0.6.otf ├── thing-regular-0.0.7.otf └── thing-regular-0.0.8.otf ├── package.json ├── specs ├── base.json └── packages.txt ├── src ├── api.ts ├── banners.ts ├── debug-grid.ts ├── gen.ts ├── index.ts └── postprocess.py ├── tsconfig.json ├── upload-banners └── yarn.lock /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/.gitignore -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- 1 | *.md -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/.prettierrc -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/README.md -------------------------------------------------------------------------------- /assets/0.0.1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/0.0.1.png -------------------------------------------------------------------------------- /assets/0.0.2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/0.0.2.png -------------------------------------------------------------------------------- /assets/0.0.3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/0.0.3.png -------------------------------------------------------------------------------- /assets/0.0.4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/0.0.4.png -------------------------------------------------------------------------------- /assets/0.0.5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/0.0.5.png -------------------------------------------------------------------------------- /assets/0.0.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/0.0.7.png -------------------------------------------------------------------------------- /assets/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/grid.png -------------------------------------------------------------------------------- /assets/thing-font.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/assets/thing-font.svg -------------------------------------------------------------------------------- /font/thing-regular-0.0.1.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.1.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.2.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.2.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.3.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.3.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.4.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.4.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.5.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.5.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.6.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.6.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.7.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.7.otf -------------------------------------------------------------------------------- /font/thing-regular-0.0.8.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/font/thing-regular-0.0.8.otf -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/package.json -------------------------------------------------------------------------------- /specs/base.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/specs/base.json -------------------------------------------------------------------------------- /specs/packages.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/specs/packages.txt -------------------------------------------------------------------------------- /src/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/src/api.ts -------------------------------------------------------------------------------- /src/banners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/src/banners.ts -------------------------------------------------------------------------------- /src/debug-grid.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/src/debug-grid.ts -------------------------------------------------------------------------------- /src/gen.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/src/gen.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/postprocess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/src/postprocess.py -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/tsconfig.json -------------------------------------------------------------------------------- /upload-banners: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/upload-banners -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/thi-ng/font/HEAD/yarn.lock --------------------------------------------------------------------------------