├── .gitignore ├── LICENSE ├── LICENSE_CODE ├── README.md ├── convert.py ├── download.py ├── images ├── banner.png ├── compare.png └── in_use.png └── kana.tsv /.gitignore: -------------------------------------------------------------------------------- 1 | fonts 2 | out 3 | .vscode -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/LICENSE -------------------------------------------------------------------------------- /LICENSE_CODE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/LICENSE_CODE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/README.md -------------------------------------------------------------------------------- /convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/convert.py -------------------------------------------------------------------------------- /download.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/download.py -------------------------------------------------------------------------------- /images/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/images/banner.png -------------------------------------------------------------------------------- /images/compare.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/images/compare.png -------------------------------------------------------------------------------- /images/in_use.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/images/in_use.png -------------------------------------------------------------------------------- /kana.tsv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/blueset/tsim-sans/HEAD/kana.tsv --------------------------------------------------------------------------------