├── .gitattributes ├── .gitignore ├── AUTHOR.txt ├── CONTRIBUTORS.txt ├── OFL.txt ├── README.md ├── Sources ├── Trispace-static.designspace ├── Trispace-variable.designspace ├── Trispace.glyphs ├── build-statics.sh ├── build-vf.sh ├── build-webfonts.sh └── gen_stat.py ├── fonts ├── static │ ├── otf │ │ ├── Trispace-Bold.otf │ │ ├── Trispace-ExtraBold.otf │ │ ├── Trispace-ExtraLight.otf │ │ ├── Trispace-Light.otf │ │ ├── Trispace-Medium.otf │ │ ├── Trispace-Regular.otf │ │ ├── Trispace-SemiBold.otf │ │ ├── Trispace-Thin.otf │ │ ├── TrispaceCondensed-Bold.otf │ │ ├── TrispaceCondensed-ExtraBold.otf │ │ ├── TrispaceCondensed-ExtraLight.otf │ │ ├── TrispaceCondensed-Light.otf │ │ ├── TrispaceCondensed-Medium.otf │ │ ├── TrispaceCondensed-Regular.otf │ │ ├── TrispaceCondensed-SemiBold.otf │ │ ├── TrispaceCondensed-Thin.otf │ │ ├── TrispaceExpanded-Bold.otf │ │ ├── TrispaceExpanded-ExtraBold.otf │ │ ├── TrispaceExpanded-ExtraLight.otf │ │ ├── TrispaceExpanded-Light.otf │ │ ├── TrispaceExpanded-Medium.otf │ │ ├── TrispaceExpanded-Regular.otf │ │ ├── TrispaceExpanded-SemiBold.otf │ │ ├── TrispaceExpanded-Thin.otf │ │ ├── TrispaceSemiCondensed-Bold.otf │ │ ├── TrispaceSemiCondensed-ExtraBold.otf │ │ ├── TrispaceSemiCondensed-ExtraLight.otf │ │ ├── TrispaceSemiCondensed-Light.otf │ │ ├── TrispaceSemiCondensed-Medium.otf │ │ ├── TrispaceSemiCondensed-Regular.otf │ │ ├── TrispaceSemiCondensed-SemiBold.otf │ │ ├── TrispaceSemiCondensed-Thin.otf │ │ ├── TrispaceSemiExpanded-Bold.otf │ │ ├── TrispaceSemiExpanded-ExtraBold.otf │ │ ├── TrispaceSemiExpanded-ExtraLight.otf │ │ ├── TrispaceSemiExpanded-Light.otf │ │ ├── TrispaceSemiExpanded-Medium.otf │ │ ├── TrispaceSemiExpanded-Regular.otf │ │ ├── TrispaceSemiExpanded-SemiBold.otf │ │ └── TrispaceSemiExpanded-Thin.otf │ └── ttf │ │ ├── Trispace-Bold.ttf │ │ ├── Trispace-ExtraBold.ttf │ │ ├── Trispace-ExtraLight.ttf │ │ ├── Trispace-Light.ttf │ │ ├── Trispace-Medium.ttf │ │ ├── Trispace-Regular.ttf │ │ ├── Trispace-SemiBold.ttf │ │ ├── Trispace-Thin.ttf │ │ ├── TrispaceCondensed-Bold.ttf │ │ ├── TrispaceCondensed-ExtraBold.ttf │ │ ├── TrispaceCondensed-ExtraLight.ttf │ │ ├── TrispaceCondensed-Light.ttf │ │ ├── TrispaceCondensed-Medium.ttf │ │ ├── TrispaceCondensed-Regular.ttf │ │ ├── TrispaceCondensed-SemiBold.ttf │ │ ├── TrispaceCondensed-Thin.ttf │ │ ├── TrispaceExpanded-Bold.ttf │ │ ├── TrispaceExpanded-ExtraBold.ttf │ │ ├── TrispaceExpanded-ExtraLight.ttf │ │ ├── TrispaceExpanded-Light.ttf │ │ ├── TrispaceExpanded-Medium.ttf │ │ ├── TrispaceExpanded-Regular.ttf │ │ ├── TrispaceExpanded-SemiBold.ttf │ │ ├── TrispaceExpanded-Thin.ttf │ │ ├── TrispaceSemiCondensed-Bold.ttf │ │ ├── TrispaceSemiCondensed-ExtraBold.ttf │ │ ├── TrispaceSemiCondensed-ExtraLight.ttf │ │ ├── TrispaceSemiCondensed-Light.ttf │ │ ├── TrispaceSemiCondensed-Medium.ttf │ │ ├── TrispaceSemiCondensed-Regular.ttf │ │ ├── TrispaceSemiCondensed-SemiBold.ttf │ │ ├── TrispaceSemiCondensed-Thin.ttf │ │ ├── TrispaceSemiExpanded-Bold.ttf │ │ ├── TrispaceSemiExpanded-ExtraBold.ttf │ │ ├── TrispaceSemiExpanded-ExtraLight.ttf │ │ ├── TrispaceSemiExpanded-Light.ttf │ │ ├── TrispaceSemiExpanded-Medium.ttf │ │ ├── TrispaceSemiExpanded-Regular.ttf │ │ ├── TrispaceSemiExpanded-SemiBold.ttf │ │ └── TrispaceSemiExpanded-Thin.ttf ├── variable │ ├── Trispace[wdth,wght].ttf │ └── Trispace[wdth,wght].woff2 └── web │ ├── woff │ ├── Trispace-Bold.woff │ ├── Trispace-ExtraBold.woff │ ├── Trispace-ExtraLight.woff │ ├── Trispace-Light.woff │ ├── Trispace-Medium.woff │ ├── Trispace-Regular.woff │ ├── Trispace-SemiBold.woff │ ├── Trispace-Thin.woff │ ├── TrispaceCondensed-Bold.woff │ ├── TrispaceCondensed-ExtraBold.woff │ ├── TrispaceCondensed-ExtraLight.woff │ ├── TrispaceCondensed-Light.woff │ ├── TrispaceCondensed-Medium.woff │ ├── TrispaceCondensed-Regular.woff │ ├── TrispaceCondensed-SemiBold.woff │ ├── TrispaceCondensed-Thin.woff │ ├── TrispaceExpanded-Bold.woff │ ├── TrispaceExpanded-ExtraBold.woff │ ├── TrispaceExpanded-ExtraLight.woff │ ├── TrispaceExpanded-Light.woff │ ├── TrispaceExpanded-Medium.woff │ ├── TrispaceExpanded-Regular.woff │ ├── TrispaceExpanded-SemiBold.woff │ ├── TrispaceExpanded-Thin.woff │ ├── TrispaceSemiCondensed-Bold.woff │ ├── TrispaceSemiCondensed-ExtraBold.woff │ ├── TrispaceSemiCondensed-ExtraLight.woff │ ├── TrispaceSemiCondensed-Light.woff │ ├── TrispaceSemiCondensed-Medium.woff │ ├── TrispaceSemiCondensed-Regular.woff │ ├── TrispaceSemiCondensed-SemiBold.woff │ ├── TrispaceSemiCondensed-Thin.woff │ ├── TrispaceSemiExpanded-Bold.woff │ ├── TrispaceSemiExpanded-ExtraBold.woff │ ├── TrispaceSemiExpanded-ExtraLight.woff │ ├── TrispaceSemiExpanded-Light.woff │ ├── TrispaceSemiExpanded-Medium.woff │ ├── TrispaceSemiExpanded-Regular.woff │ ├── TrispaceSemiExpanded-SemiBold.woff │ └── TrispaceSemiExpanded-Thin.woff │ └── woff2 │ ├── Trispace-Bold.woff2 │ ├── Trispace-ExtraBold.woff2 │ ├── Trispace-ExtraLight.woff2 │ ├── Trispace-Light.woff2 │ ├── Trispace-Medium.woff2 │ ├── Trispace-Regular.woff2 │ ├── Trispace-SemiBold.woff2 │ ├── Trispace-Thin.woff2 │ ├── TrispaceCondensed-Bold.woff2 │ ├── TrispaceCondensed-ExtraBold.woff2 │ ├── TrispaceCondensed-ExtraLight.woff2 │ ├── TrispaceCondensed-Light.woff2 │ ├── TrispaceCondensed-Medium.woff2 │ ├── TrispaceCondensed-Regular.woff2 │ ├── TrispaceCondensed-SemiBold.woff2 │ ├── TrispaceCondensed-Thin.woff2 │ ├── TrispaceExpanded-Bold.woff2 │ ├── TrispaceExpanded-ExtraBold.woff2 │ ├── TrispaceExpanded-ExtraLight.woff2 │ ├── TrispaceExpanded-Light.woff2 │ ├── TrispaceExpanded-Medium.woff2 │ ├── TrispaceExpanded-Regular.woff2 │ ├── TrispaceExpanded-SemiBold.woff2 │ ├── TrispaceExpanded-Thin.woff2 │ ├── TrispaceSemiCondensed-Bold.woff2 │ ├── TrispaceSemiCondensed-ExtraBold.woff2 │ ├── TrispaceSemiCondensed-ExtraLight.woff2 │ ├── TrispaceSemiCondensed-Light.woff2 │ ├── TrispaceSemiCondensed-Medium.woff2 │ ├── TrispaceSemiCondensed-Regular.woff2 │ ├── TrispaceSemiCondensed-SemiBold.woff2 │ ├── TrispaceSemiCondensed-Thin.woff2 │ ├── TrispaceSemiExpanded-Bold.woff2 │ ├── TrispaceSemiExpanded-ExtraBold.woff2 │ ├── TrispaceSemiExpanded-ExtraLight.woff2 │ ├── TrispaceSemiExpanded-Light.woff2 │ ├── TrispaceSemiExpanded-Medium.woff2 │ ├── TrispaceSemiExpanded-Regular.woff2 │ ├── TrispaceSemiExpanded-SemiBold.woff2 │ └── TrispaceSemiExpanded-Thin.woff2 ├── img-trispace.png └── requirements.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHOR.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/AUTHOR.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/README.md -------------------------------------------------------------------------------- /Sources/Trispace-static.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/Trispace-static.designspace -------------------------------------------------------------------------------- /Sources/Trispace-variable.designspace: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/Trispace-variable.designspace -------------------------------------------------------------------------------- /Sources/Trispace.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/Trispace.glyphs -------------------------------------------------------------------------------- /Sources/build-statics.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/build-statics.sh -------------------------------------------------------------------------------- /Sources/build-vf.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/build-vf.sh -------------------------------------------------------------------------------- /Sources/build-webfonts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/build-webfonts.sh -------------------------------------------------------------------------------- /Sources/gen_stat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/Sources/gen_stat.py -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-Bold.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-Light.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-Medium.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-Regular.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-SemiBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/Trispace-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/Trispace-Thin.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-Bold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-Light.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-Medium.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-Regular.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-SemiBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceCondensed-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceCondensed-Thin.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-Bold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-Light.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-Medium.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-Regular.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-SemiBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceExpanded-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceExpanded-Thin.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-Bold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-Light.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-Medium.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-Regular.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-SemiBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiCondensed-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiCondensed-Thin.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-Bold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-ExtraBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-ExtraBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-Light.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-Medium.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-Regular.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-SemiBold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-SemiBold.otf -------------------------------------------------------------------------------- /fonts/static/otf/TrispaceSemiExpanded-Thin.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/otf/TrispaceSemiExpanded-Thin.otf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-Bold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-Light.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-Medium.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-Regular.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/Trispace-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/Trispace-Thin.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-Light.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-Medium.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-Regular.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceCondensed-Thin.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-Bold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-Light.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-Medium.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-Regular.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceExpanded-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceExpanded-Thin.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-Bold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-Light.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-Medium.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-Regular.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiCondensed-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiCondensed-Thin.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-Bold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-ExtraBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-ExtraBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-Light.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-Medium.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-Regular.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-SemiBold.ttf -------------------------------------------------------------------------------- /fonts/static/ttf/TrispaceSemiExpanded-Thin.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/static/ttf/TrispaceSemiExpanded-Thin.ttf -------------------------------------------------------------------------------- /fonts/variable/Trispace[wdth,wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/variable/Trispace[wdth,wght].ttf -------------------------------------------------------------------------------- /fonts/variable/Trispace[wdth,wght].woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/variable/Trispace[wdth,wght].woff2 -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-Bold.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-Light.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-Medium.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-Regular.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-SemiBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/Trispace-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/Trispace-Thin.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-Bold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-Light.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-Medium.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-Regular.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-SemiBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceCondensed-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceCondensed-Thin.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-Bold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-Light.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-Medium.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-Regular.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-SemiBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceExpanded-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceExpanded-Thin.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-Bold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-Light.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-Medium.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-Regular.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-SemiBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiCondensed-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiCondensed-Thin.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-Bold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-ExtraBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-ExtraBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-Light.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-Medium.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-Regular.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-SemiBold.woff -------------------------------------------------------------------------------- /fonts/web/woff/TrispaceSemiExpanded-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff/TrispaceSemiExpanded-Thin.woff -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-Bold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-Light.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-Medium.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-Regular.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/Trispace-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/Trispace-Thin.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-Bold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-Light.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-Medium.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-Regular.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceCondensed-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceCondensed-Thin.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-Bold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-Light.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-Medium.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-Regular.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceExpanded-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceExpanded-Thin.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-Bold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-Light.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-Medium.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-Regular.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiCondensed-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiCondensed-Thin.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-Bold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-ExtraBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-ExtraBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-Light.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-Medium.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-Regular.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-SemiBold.woff2 -------------------------------------------------------------------------------- /fonts/web/woff2/TrispaceSemiExpanded-Thin.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/fonts/web/woff2/TrispaceSemiExpanded-Thin.woff2 -------------------------------------------------------------------------------- /img-trispace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/img-trispace.png -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Etcetera-Type-Co/Trispace/HEAD/requirements.txt --------------------------------------------------------------------------------