├── .github └── workflows │ └── build.yaml ├── .gitignore ├── AUTHORS.txt ├── CONTRIBUTORS.txt ├── Makefile ├── OFL.txt ├── README.md ├── documentation ├── Cairo-bold-preview.pdf ├── Cairo-regular-italic-preview.pdf ├── Cairo-regular-preview.pdf ├── Cairovf.gif ├── DESCRIPTION.en_us.html ├── README.md ├── sample.png └── testing │ ├── Kapture 2020-05-06 at 14.58.13.gif │ ├── Kapture 2020-05-07 at 17.18.02.gif │ ├── Kapture 2020-05-07 at 17.28.46.gif │ └── Screenshot 2020-05-07 17.14.47.png ├── fonts ├── Cairo │ └── variable │ │ └── Cairo[slnt,wght].ttf └── CairoPlay │ └── variable │ └── CairoPlay[slnt,wght].ttf ├── requirements.txt ├── scripts ├── google-fonts-pr.sh ├── makenormal.py ├── makeplay.py ├── old_build.sh ├── purgeinstances.py └── settransformedcomponents.py └── sources ├── Archive ├── Cairo-italic.glyphs └── Cairo-weight-axis-only.glyphs ├── Cairo.glyphs ├── cairo.yaml └── cairoplay.yaml /.github/workflows/build.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/.github/workflows/build.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CONTRIBUTORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/CONTRIBUTORS.txt -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/Makefile -------------------------------------------------------------------------------- /OFL.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/OFL.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/README.md -------------------------------------------------------------------------------- /documentation/Cairo-bold-preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/Cairo-bold-preview.pdf -------------------------------------------------------------------------------- /documentation/Cairo-regular-italic-preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/Cairo-regular-italic-preview.pdf -------------------------------------------------------------------------------- /documentation/Cairo-regular-preview.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/Cairo-regular-preview.pdf -------------------------------------------------------------------------------- /documentation/Cairovf.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/Cairovf.gif -------------------------------------------------------------------------------- /documentation/DESCRIPTION.en_us.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/DESCRIPTION.en_us.html -------------------------------------------------------------------------------- /documentation/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/README.md -------------------------------------------------------------------------------- /documentation/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/sample.png -------------------------------------------------------------------------------- /documentation/testing/Kapture 2020-05-06 at 14.58.13.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/testing/Kapture 2020-05-06 at 14.58.13.gif -------------------------------------------------------------------------------- /documentation/testing/Kapture 2020-05-07 at 17.18.02.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/testing/Kapture 2020-05-07 at 17.18.02.gif -------------------------------------------------------------------------------- /documentation/testing/Kapture 2020-05-07 at 17.28.46.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/testing/Kapture 2020-05-07 at 17.28.46.gif -------------------------------------------------------------------------------- /documentation/testing/Screenshot 2020-05-07 17.14.47.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/documentation/testing/Screenshot 2020-05-07 17.14.47.png -------------------------------------------------------------------------------- /fonts/Cairo/variable/Cairo[slnt,wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/fonts/Cairo/variable/Cairo[slnt,wght].ttf -------------------------------------------------------------------------------- /fonts/CairoPlay/variable/CairoPlay[slnt,wght].ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/fonts/CairoPlay/variable/CairoPlay[slnt,wght].ttf -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | gftools 2 | fontbakery 3 | -------------------------------------------------------------------------------- /scripts/google-fonts-pr.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/scripts/google-fonts-pr.sh -------------------------------------------------------------------------------- /scripts/makenormal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/scripts/makenormal.py -------------------------------------------------------------------------------- /scripts/makeplay.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/scripts/makeplay.py -------------------------------------------------------------------------------- /scripts/old_build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/scripts/old_build.sh -------------------------------------------------------------------------------- /scripts/purgeinstances.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/scripts/purgeinstances.py -------------------------------------------------------------------------------- /scripts/settransformedcomponents.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/scripts/settransformedcomponents.py -------------------------------------------------------------------------------- /sources/Archive/Cairo-italic.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/sources/Archive/Cairo-italic.glyphs -------------------------------------------------------------------------------- /sources/Archive/Cairo-weight-axis-only.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/sources/Archive/Cairo-weight-axis-only.glyphs -------------------------------------------------------------------------------- /sources/Cairo.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/sources/Cairo.glyphs -------------------------------------------------------------------------------- /sources/cairo.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/sources/cairo.yaml -------------------------------------------------------------------------------- /sources/cairoplay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Gue3bara/Cairo/HEAD/sources/cairoplay.yaml --------------------------------------------------------------------------------