├── .gitattributes ├── .gitignore ├── LICENSE.txt ├── README.md ├── misc └── readme │ └── intro.png └── src ├── desktop ├── OpenRunde-Bold.otf ├── OpenRunde-Medium.otf ├── OpenRunde-Regular.otf └── OpenRunde-Semibold.otf ├── glyphs ├── OpenRunde-Bold.glyphs ├── OpenRunde-Medium.glyphs ├── OpenRunde-Regular.glyphs └── OpenRunde-Semibold.glyphs └── web ├── OpenRunde-Bold.woff ├── OpenRunde-Bold.woff2 ├── OpenRunde-Medium.woff ├── OpenRunde-Medium.woff2 ├── OpenRunde-Regular.woff ├── OpenRunde-Regular.woff2 ├── OpenRunde-Semibold.woff └── OpenRunde-Semibold.woff2 /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/README.md -------------------------------------------------------------------------------- /misc/readme/intro.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/misc/readme/intro.png -------------------------------------------------------------------------------- /src/desktop/OpenRunde-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/desktop/OpenRunde-Bold.otf -------------------------------------------------------------------------------- /src/desktop/OpenRunde-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/desktop/OpenRunde-Medium.otf -------------------------------------------------------------------------------- /src/desktop/OpenRunde-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/desktop/OpenRunde-Regular.otf -------------------------------------------------------------------------------- /src/desktop/OpenRunde-Semibold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/desktop/OpenRunde-Semibold.otf -------------------------------------------------------------------------------- /src/glyphs/OpenRunde-Bold.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/glyphs/OpenRunde-Bold.glyphs -------------------------------------------------------------------------------- /src/glyphs/OpenRunde-Medium.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/glyphs/OpenRunde-Medium.glyphs -------------------------------------------------------------------------------- /src/glyphs/OpenRunde-Regular.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/glyphs/OpenRunde-Regular.glyphs -------------------------------------------------------------------------------- /src/glyphs/OpenRunde-Semibold.glyphs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/glyphs/OpenRunde-Semibold.glyphs -------------------------------------------------------------------------------- /src/web/OpenRunde-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Bold.woff -------------------------------------------------------------------------------- /src/web/OpenRunde-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Bold.woff2 -------------------------------------------------------------------------------- /src/web/OpenRunde-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Medium.woff -------------------------------------------------------------------------------- /src/web/OpenRunde-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Medium.woff2 -------------------------------------------------------------------------------- /src/web/OpenRunde-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Regular.woff -------------------------------------------------------------------------------- /src/web/OpenRunde-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Regular.woff2 -------------------------------------------------------------------------------- /src/web/OpenRunde-Semibold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Semibold.woff -------------------------------------------------------------------------------- /src/web/OpenRunde-Semibold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/lauridskern/open-runde/HEAD/src/web/OpenRunde-Semibold.woff2 --------------------------------------------------------------------------------