├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── DESCRIPTION.en_us.html ├── DESCRIPTION_jp.txt ├── OFL.txt ├── README.md ├── documentation ├── YomogiFont_GF_CyrillicPlus.pdf ├── YomogiFont_GF_CyrillicPlus.txt ├── YomogiFont_GF_Latin_Plus.pdf ├── YomogiFont_GF_Latin_Plus.txt ├── YomogiFont_IBM.pdf ├── YomogiFont_IBM.txt ├── YomogiFont_JIS1.pdf ├── YomogiFont_JIS1.txt ├── YomogiFont_JIS2.txt ├── YomogiFont_JIS_2.pdf ├── YomogiFont_Latin_Plus_CA.pdf ├── YomogiFont_Latin_Plus_CA.txt ├── YomogiFont_PunctuationMark.pdf ├── YomogiFont_PunctuationMark.txt ├── YomogiFont_all_characters.pdf ├── YomogiFont_all_characters.txt ├── YomogiFont_number.pdf ├── YomogiFont_number.txt ├── YomogiFont_symbol.pdf ├── YomogiFont_symbol.txt └── img │ ├── .keep │ ├── スクリーンショット 2019-12-09 22.22.30.png │ ├── スクリーンショット 2019-12-09 22.22.46.png │ ├── スクリーンショット 2019-12-09 22.22.56.png │ ├── スクリーンショット 2019-12-09 22.23.04.png │ └── スクリーンショット 2019-12-09 22.23.13.png ├── fonts └── ttf │ ├── .DS_Store │ ├── Yomogi-Regular.ttf │ └── results.md ├── sources └── Yomogi.glyphs ├── yomogi_1000.png ├── yomogi_1221.png └── yomogifont.png /.gitignore: -------------------------------------------------------------------------------- 1 | 2 | fonts/.DS_Store 3 | -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /DESCRIPTION_jp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/DESCRIPTION_jp.txt -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/README.md -------------------------------------------------------------------------------- /documentation/YomogiFont_GF_CyrillicPlus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_GF_CyrillicPlus.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_GF_CyrillicPlus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_GF_CyrillicPlus.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_GF_Latin_Plus.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_GF_Latin_Plus.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_GF_Latin_Plus.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_GF_Latin_Plus.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_IBM.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_IBM.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_IBM.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_IBM.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_JIS1.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_JIS1.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_JIS1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_JIS1.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_JIS2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_JIS2.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_JIS_2.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_JIS_2.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_Latin_Plus_CA.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_Latin_Plus_CA.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_Latin_Plus_CA.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_Latin_Plus_CA.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_PunctuationMark.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_PunctuationMark.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_PunctuationMark.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_PunctuationMark.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_all_characters.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_all_characters.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_all_characters.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_all_characters.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_number.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_number.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_number.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_number.txt -------------------------------------------------------------------------------- /documentation/YomogiFont_symbol.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_symbol.pdf -------------------------------------------------------------------------------- /documentation/YomogiFont_symbol.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/YomogiFont_symbol.txt -------------------------------------------------------------------------------- /documentation/img/.keep: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /documentation/img/スクリーンショット 2019-12-09 22.22.30.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/img/スクリーンショット 2019-12-09 22.22.30.png -------------------------------------------------------------------------------- /documentation/img/スクリーンショット 2019-12-09 22.22.46.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/img/スクリーンショット 2019-12-09 22.22.46.png -------------------------------------------------------------------------------- /documentation/img/スクリーンショット 2019-12-09 22.22.56.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/img/スクリーンショット 2019-12-09 22.22.56.png -------------------------------------------------------------------------------- /documentation/img/スクリーンショット 2019-12-09 22.23.04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/img/スクリーンショット 2019-12-09 22.23.04.png -------------------------------------------------------------------------------- /documentation/img/スクリーンショット 2019-12-09 22.23.13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/documentation/img/スクリーンショット 2019-12-09 22.23.13.png -------------------------------------------------------------------------------- /fonts/ttf/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/fonts/ttf/.DS_Store -------------------------------------------------------------------------------- /fonts/ttf/Yomogi-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/fonts/ttf/Yomogi-Regular.ttf -------------------------------------------------------------------------------- /fonts/ttf/results.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/fonts/ttf/results.md -------------------------------------------------------------------------------- /sources/Yomogi.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/sources/Yomogi.glyphs -------------------------------------------------------------------------------- /yomogi_1000.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/yomogi_1000.png -------------------------------------------------------------------------------- /yomogi_1221.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/yomogi_1221.png -------------------------------------------------------------------------------- /yomogifont.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/satsuyako/YomogiFont/HEAD/yomogifont.png --------------------------------------------------------------------------------