├── .gitattributes ├── .gitignore ├── OFL.txt ├── README.md ├── fonts └── Variant.otf ├── source ├── font.sfd └── glyphs.svg └── test.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | _ignore/ 2 | -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/README.md -------------------------------------------------------------------------------- /fonts/Variant.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/fonts/Variant.otf -------------------------------------------------------------------------------- /source/font.sfd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/source/font.sfd -------------------------------------------------------------------------------- /source/glyphs.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/source/glyphs.svg -------------------------------------------------------------------------------- /test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/LunaCapra/variant-font/HEAD/test.png --------------------------------------------------------------------------------