add maple

This commit is contained in:
Koen Lagveen 2023-07-22 22:54:44 +02:00
parent 4559e96b91
commit ad975c3b3e
7 changed files with 51 additions and 0 deletions

View File

@ -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.",

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -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' );

View File

@ -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;