diff --git a/fonts.json b/fonts.json index c0f6109..2b462b1 100644 --- a/fonts.json +++ b/fonts.json @@ -339,6 +339,21 @@ "website": "https://github.com/shannpersand/comic-shanns", "year": 2018 }, + "commit-mono": { + "author": "Eigil Nikolajsen", + "description": "Commit Mono is an anonymous and neutral coding font focused on creating a better reading experience.", + "license": "SIL OFL", + "ligatures": false, + "name": "Commit Mono", + "rendering": "vector", + "style": "sans", + "zerostyle": "slashed", + "variants": [ + "variable" + ], + "website": "https://commitmono.com", + "year": 2023 + }, "consolamono": { "author": "Wojciech Kalinowski", "ligatures": false, diff --git a/fonts/resources/commit-mono/commit-mono-bold-italic.otf b/fonts/resources/commit-mono/commit-mono-bold-italic.otf new file mode 100644 index 0000000..d278e9d Binary files /dev/null and b/fonts/resources/commit-mono/commit-mono-bold-italic.otf differ diff --git a/fonts/resources/commit-mono/commit-mono-bold.otf b/fonts/resources/commit-mono/commit-mono-bold.otf new file mode 100644 index 0000000..b633bc6 Binary files /dev/null and b/fonts/resources/commit-mono/commit-mono-bold.otf differ diff --git a/fonts/resources/commit-mono/commit-mono-italic.otf b/fonts/resources/commit-mono/commit-mono-italic.otf new file mode 100644 index 0000000..e54cda2 Binary files /dev/null and b/fonts/resources/commit-mono/commit-mono-italic.otf differ diff --git a/fonts/resources/commit-mono/commit-mono.otf b/fonts/resources/commit-mono/commit-mono.otf new file mode 100644 index 0000000..7e85299 Binary files /dev/null and b/fonts/resources/commit-mono/commit-mono.otf differ diff --git a/fonts/resources/commit-mono/license.txt b/fonts/resources/commit-mono/license.txt new file mode 100644 index 0000000..828c6f0 --- /dev/null +++ b/fonts/resources/commit-mono/license.txt @@ -0,0 +1,37 @@ +This Font Software is licensed under the SIL Open Font License, Version 1.1. +This license is copied below, and is also available with a FAQ at: +http://scripts.sil.org/OFL + +----------------------------------------------------------- +SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 +----------------------------------------------------------- + +PREAMBLE +The goals of the Open Font License (OFL) are to stimulate worldwide +development of collaborative font projects, to support the font creation +efforts of academic and linguistic communities, and to provide a free and +open framework in which fonts may be shared and improved in partnership +with others. + +The OFL allows the licensed fonts to be used, studied, modified and +redistributed freely as long as they are not sold by themselves. The +fonts, including any derivative works, can be bundled, embedded, +redistributed and/or sold with any software provided that any reserved +names are not used by derivative works. The fonts and derivatives, +however, cannot be released under any other type of license. The +requirement for fonts to remain under this license does not apply +to any document created using the fonts or their derivatives. + +DEFINITIONS +"Font Software" refers to the set of files released by the Copyright +Holder(s) under this license and clearly marked as such. This may +include source files, build scripts and documentation. + +"Reserved Font Name" refers to any names specified as such after the +copyright statement(s). + +"Original Version" refers to the collection of Font Software components as +distributed by the Copyright Holder(s). + +"Modified Version" refers to any derivative made by adding to, deleting, +or substituting -- in part or in whole -- any of the compone \ No newline at end of file diff --git a/fonts/stylesheets/fonts.less b/fonts/stylesheets/fonts.less index 51312c6..c5f4fdf 100755 --- a/fonts/stylesheets/fonts.less +++ b/fonts/stylesheets/fonts.less @@ -77,6 +77,11 @@ .font ( 'comic-shanns', normal, normal, 'comic-shanns/comic-shanns.otf' ); +.font ( 'commit-mono', bold, italic, 'commit-mono/commit-mono-bold-italic.otf' ); +.font ( 'commit-mono', bold, normal, 'commit-mono/commit-mono-bold.otf' ); +.font ( 'commit-mono', normal, italic, 'commit-mono/commit-mono-italic.otf' ); +.font ( 'commit-mono', normal, normal, 'commit-mono/commit-mono.otf' ); + .font ( 'consolamono', bold, normal, 'consolamono/consolamono-bold.ttf' ); .font ( 'consolamono', normal, normal, 'consolamono/consolamono.ttf' ); diff --git a/fonts/stylesheets/stylesheet.css b/fonts/stylesheets/stylesheet.css index ebf7b31..add30c8 100755 --- a/fonts/stylesheets/stylesheet.css +++ b/fonts/stylesheets/stylesheet.css @@ -322,6 +322,30 @@ font-style: normal; src: url('../resources/comic-shanns/comic-shanns.otf'); } +@font-face { + font-family: 'commit-mono'; + font-weight: bold; + font-style: italic; + src: url('../resources/commit-mono/commit-mono-bold-italic.otf'); +} +@font-face { + font-family: 'commit-mono'; + font-weight: bold; + font-style: normal; + src: url('../resources/commit-mono/commit-mono-bold.otf'); +} +@font-face { + font-family: 'commit-mono'; + font-weight: normal; + font-style: italic; + src: url('../resources/commit-mono/commit-mono-italic.otf'); +} +@font-face { + font-family: 'commit-mono'; + font-weight: normal; + font-style: normal; + src: url('../resources/commit-mono/commit-mono.otf'); +} @font-face { font-family: 'consolamono'; font-weight: bold;