diff --git a/fonts.json b/fonts.json index ed8077d..64fc358 100644 --- a/fonts.json +++ b/fonts.json @@ -588,6 +588,7 @@ "author": "Rebecca G. Bettencourt", "bitmap size": 12, "description": "Fairfax is a 6x12 bitmap font for terminals, text editors, IDEs, etc. It supports many scripts and a large number of Unicode blocks as well as constructed scripts as encoded in the Under-ConScript Unicode Registry, pseudographics and semigraphics, and tons of private use characters.", + "license": "SIL OFL", "ligatures": false, "name": "Fairfax", "rendering": "bitmap", @@ -629,6 +630,7 @@ "author": "Rebecca G. Bettencourt", "bitmap size": 12, "description": "Fairfax is a 6x12 bitmap font for terminals, text editors, IDEs, etc. It supports many scripts and a large number of Unicode blocks as well as constructed scripts as encoded in the Under-ConScript Unicode Registry, pseudographics and semigraphics, and tons of private use characters.", + "license": "SIL OFL", "ligatures": false, "name": "Fairfax Serif", "rendering": "bitmap", @@ -1201,6 +1203,26 @@ "year": 2001, "zerostyle": "empty" }, + "maple": { + "author": "subframe7536", + "description": "Open source monospace font with round corner, ligatures and Nerd-Font for IDE and command line.", + "license": "SIL OFL", + "ligatures": true, + "name": "Maple", + "rendering": "vector", + "style": "sans", + "variants": [ + "regular", + "italic", + "bold", + "bold-italic", + "light", + "light-italic" + ], + "website": "http://eastfarthing.com/luculent/", + "year": 2008, + "zerostyle": "slashed" + }, "martian-mono": { "author": "Roman Shamin, Evil Martians", "description": "Martian Mono is a monospaced version of the Martian Grotesk font for code style design.", diff --git a/fonts/resources/maple/maple-bold-italic.woff2 b/fonts/resources/maple/maple-bold-italic.woff2 new file mode 100644 index 0000000..9375dbc Binary files /dev/null and b/fonts/resources/maple/maple-bold-italic.woff2 differ diff --git a/fonts/resources/maple/maple-bold.woff2 b/fonts/resources/maple/maple-bold.woff2 new file mode 100644 index 0000000..866643d Binary files /dev/null and b/fonts/resources/maple/maple-bold.woff2 differ diff --git a/fonts/resources/maple/maple-italic.woff2 b/fonts/resources/maple/maple-italic.woff2 new file mode 100644 index 0000000..a3b89e1 Binary files /dev/null and b/fonts/resources/maple/maple-italic.woff2 differ diff --git a/fonts/resources/maple/maple.woff2 b/fonts/resources/maple/maple.woff2 new file mode 100644 index 0000000..cb46b59 Binary files /dev/null and b/fonts/resources/maple/maple.woff2 differ diff --git a/fonts/stylesheets/fonts.less b/fonts/stylesheets/fonts.less index 0abf3d6..2329fca 100755 --- a/fonts/stylesheets/fonts.less +++ b/fonts/stylesheets/fonts.less @@ -270,6 +270,11 @@ .font ( 'luxi', normal, italic, 'luxi/luxi-italic.woff' ); .font ( 'luxi', normal, normal, 'luxi/luxi.woff' ); +.font ( 'maple', bold, italic, 'maple/maple-bold-italic.woff2' ); +.font ( 'maple', bold, normal, 'maple/maple-bold.woff2' ); +.font ( 'maple', normal, italic, 'maple/maple-italic.woff2' ); +.font ( 'maple', normal, normal, 'maple/maple.woff2' ); + .font ( 'martian-mono', bold, normal, 'martian-mono/martian-mono-bold.woff2' ); .font ( 'martian-mono', normal, normal, 'martian-mono/martian-mono.woff2' ); diff --git a/fonts/stylesheets/stylesheet.css b/fonts/stylesheets/stylesheet.css index 46d2f34..65807e6 100755 --- a/fonts/stylesheets/stylesheet.css +++ b/fonts/stylesheets/stylesheet.css @@ -1150,6 +1150,30 @@ font-style: normal; src: url('../resources/luxi/luxi.woff'); } +@font-face { + font-family: 'maple'; + font-weight: bold; + font-style: italic; + src: url('../resources/maple/maple-bold-italic.woff2'); +} +@font-face { + font-family: 'maple'; + font-weight: bold; + font-style: normal; + src: url('../resources/maple/maple-bold.woff2'); +} +@font-face { + font-family: 'maple'; + font-weight: normal; + font-style: italic; + src: url('../resources/maple/maple-italic.woff2'); +} +@font-face { + font-family: 'maple'; + font-weight: normal; + font-style: normal; + src: url('../resources/maple/maple.woff2'); +} @font-face { font-family: 'martian-mono'; font-weight: bold;