├── .gitignore ├── KelmscottMono.otf ├── LICENSE.md ├── README.md └── samples ├── 1.png ├── 2.png ├── 3.png └── 4.jpg /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /KelmscottMono.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeddisperser/kelmscott-mono/a305a85fbf528f2d9bf0df2310441e5da1340967/KelmscottMono.otf -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | 2 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 3 | This license is copied below, and is also available with a FAQ at: 4 | https\://openfontlicense.org 5 |   6 | 7 | \---------------------------------------------------------------------- 8 | 9 | #### SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 10 | 11 | \---------------------------------------------------------------------- 12 | 13 |   14 | 15 | PREAMBLE 16 | ----------- 17 | 18 | The goals of the Open Font License (OFL) are to stimulate worldwide 19 | development of collaborative font projects, to support the font creation 20 | efforts of academic and linguistic communities, and to provide a free and 21 | open framework in which fonts may be shared and improved in partnership 22 | with others. 23 | 24 | The OFL allows the licensed fonts to be used, studied, modified and 25 | redistributed freely as long as they are not sold by themselves. The 26 | fonts, including any derivative works, can be bundled, embedded, 27 | redistributed and/or sold with any software provided that any reserved 28 | names are not used by derivative works. The fonts and derivatives, 29 | however, cannot be released under any other type of license. The 30 | requirement for fonts to remain under this license does not apply 31 | to any document created using the fonts or their derivatives. 32 | 33 | DEFINITIONS 34 | ----------- 35 | 36 | "Font Software" refers to the set of files released by the Copyright 37 | Holder(s) under this license and clearly marked as such. This may 38 | include source files, build scripts and documentation. 39 | 40 | "Reserved Font Name" refers to any names specified as such after the 41 | copyright statement(s). 42 | 43 | "Original Version" refers to the collection of Font Software components as 44 | distributed by the Copyright Holder(s). 45 | 46 | "Modified Version" refers to any derivative made by adding to, deleting, 47 | or substituting -- in part or in whole -- any of the components of the 48 | Original Version, by changing formats or by porting the Font Software to a 49 | new environment. 50 | 51 | "Author" refers to any designer, engineer, programmer, technical 52 | writer or other person who contributed to the Font Software. 53 | 54 | PERMISSION & CONDITIONS 55 | ----------- 56 | 57 | Permission is hereby granted, free of charge, to any person obtaining 58 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 59 | redistribute, and sell modified and unmodified copies of the Font 60 | Software, subject to the following conditions: 61 | 62 | 1) Neither the Font Software nor any of its individual components, 63 | in Original or Modified Versions, may be sold by itself. 64 | 65 | 2) Original or Modified Versions of the Font Software may be bundled, 66 | redistributed and/or sold with any software, provided that each copy 67 | contains the above copyright notice and this license. These can be 68 | included either as stand-alone text files, human-readable headers or 69 | in the appropriate machine-readable metadata fields within text or 70 | binary files as long as those fields can be easily viewed by the user. 71 | 72 | 3) No Modified Version of the Font Software may use the Reserved Font 73 | Name(s) unless explicit written permission is granted by the corresponding 74 | Copyright Holder. This restriction only applies to the primary font name as 75 | presented to the users. 76 | 77 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 78 | Software shall not be used to promote, endorse or advertise any 79 | Modified Version, except to acknowledge the contribution(s) of the 80 | Copyright Holder(s) and the Author(s) or with their explicit written 81 | permission. 82 | 83 | 5) The Font Software, modified or unmodified, in part or in whole, 84 | must be distributed entirely under this license, and must not be 85 | distributed under any other license. The requirement for fonts to 86 | remain under this license does not apply to any document created 87 | using the Font Software. 88 | 89 | TERMINATION 90 | ----------- 91 | 92 | This license becomes null and void if any of the above conditions are 93 | not met. 94 | 95 | DISCLAIMER 96 | ----------- 97 | 98 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 99 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 100 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 101 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 102 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 103 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 104 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 105 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 106 | OTHER DEALINGS IN THE FONT SOFTWARE. 107 | 108 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # kelmscott-mono 2 | 3 | A blackletter for the text editor. Inspired by Morris Troy and Morris Roman. Built for legibility in the IDE. 4 | 5 | ## Samples 6 | 7 | !["Aa / Kelmscott Mono"](samples/1.png) 8 | 9 | !["A blackletter for the text editor. Inspired by Morris Troy and Morris Roman. Built for legibility in the IDE."](samples/2.png) 10 | 11 | ![Punctuation and special characters](samples/3.png) 12 | 13 | ![A React code listing](samples/4.jpg) 14 | -------------------------------------------------------------------------------- /samples/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeddisperser/kelmscott-mono/a305a85fbf528f2d9bf0df2310441e5da1340967/samples/1.png -------------------------------------------------------------------------------- /samples/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeddisperser/kelmscott-mono/a305a85fbf528f2d9bf0df2310441e5da1340967/samples/2.png -------------------------------------------------------------------------------- /samples/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeddisperser/kelmscott-mono/a305a85fbf528f2d9bf0df2310441e5da1340967/samples/3.png -------------------------------------------------------------------------------- /samples/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/seeddisperser/kelmscott-mono/a305a85fbf528f2d9bf0df2310441e5da1340967/samples/4.jpg --------------------------------------------------------------------------------