diff --git a/fonts.json b/fonts.json index cc396d5..822f8d2 100644 --- a/fonts.json +++ b/fonts.json @@ -307,6 +307,22 @@ "website": "http://sourceforge.net/projects/codenewroman/", "year": 2014 }, + "comic-mono": { + "author": "Thai Pangsakulyanont", + "description": "A legible monospace font… the very typeface you’ve been trained to recognize since childhood. This font is a fork of Shannon Miwa’s Comic Shanns.", + "license": "MIT", + "ligatures": false, + "name": "Comic Shanns", + "rendering": "vector", + "style": "sans", + "zerostyle": "slashed", + "variants": [ + "bold", + "regular" + ], + "website": "https://dtinth.github.io/comic-mono-font/", + "year": 2018 + }, "comic-shanns": { "author": "Shannon Miwa", "description": "Like if someone made a dumbass version of Comic Sans that is monospaced.", diff --git a/fonts/resources/comic-mono/LICENSE b/fonts/resources/comic-mono/LICENSE new file mode 100644 index 0000000..7626af5 --- /dev/null +++ b/fonts/resources/comic-mono/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Original work Copyright (c) 2018 Shannon Miwa +Modified work Copyright (c) 2019 dtinth + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. diff --git a/fonts/resources/comic-mono/comic-mono-bold.ttf b/fonts/resources/comic-mono/comic-mono-bold.ttf new file mode 100644 index 0000000..e03f41e Binary files /dev/null and b/fonts/resources/comic-mono/comic-mono-bold.ttf differ diff --git a/fonts/resources/comic-mono/comic-mono.ttf b/fonts/resources/comic-mono/comic-mono.ttf new file mode 100644 index 0000000..9bc7354 Binary files /dev/null and b/fonts/resources/comic-mono/comic-mono.ttf differ diff --git a/fonts/stylesheets/fonts.less b/fonts/stylesheets/fonts.less index 6b26c71..0e1736d 100755 --- a/fonts/stylesheets/fonts.less +++ b/fonts/stylesheets/fonts.less @@ -72,6 +72,9 @@ .font ( 'code-new-roman', normal, normal, 'code-new-roman/code-new-roman.otf' ); +.font ( 'comic-mono', bold, normal, 'comic-mono/comin-monc-bold.ttf' ); +.font ( 'comic-mono', normal, normal, 'comic-mono/comic-mono.ttf' ); + .font ( 'comic-shanns', normal, normal, 'comic-shanns/comic-shanns.otf' ); .font ( 'consolamono', bold, normal, 'consolamono/consolamono-bold.ttf' ); diff --git a/fonts/stylesheets/stylesheet.css b/fonts/stylesheets/stylesheet.css index 0fa1a97..abe7657 100755 --- a/fonts/stylesheets/stylesheet.css +++ b/fonts/stylesheets/stylesheet.css @@ -304,6 +304,18 @@ font-style: normal; src: url('../resources/code-new-roman/code-new-roman.otf'); } +@font-face { + font-family: 'comic-mono'; + font-weight: bold; + font-style: normal; + src: url('../resources/comic-mono/comin-monc-bold.ttf'); +} +@font-face { + font-family: 'comic-mono'; + font-weight: normal; + font-style: normal; + src: url('../resources/comic-mono/comic-mono.ttf'); +} @font-face { font-family: 'comic-shanns'; font-weight: normal;