Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -272,6 +272,8 @@ Therefore:
- [Terminus (Consoleet, smooth)](https://inai.de/projects/consoleet/terminus) _SIL OFL_ ([view](https://www.programmingfonts.org/#terminus-consoleet-smooth))
- [Terminus (TTF)](https://files.ax86.net/terminus-ttf) _SIL OFL_ ([view](https://www.programmingfonts.org/#terminus-ttf))
- [TeX Gyre Cursor](http://www.gust.org.pl/projects/e-foundry/tex-gyre) _GUST font license_ ([view](https://www.programmingfonts.org/#tex-gyre-cursor))
- [Topaz (A1200)](https://github.com/rewtnull/amigafonts) _GNU GPL_ ([view](https://www.programmingfonts.org/#topaz-a1200))
- [Topaz (A500)](https://github.com/rewtnull/amigafonts) _GNU GPL_ ([view](https://www.programmingfonts.org/#topaz-a500))
- [Twilio Sans Mono](https://github.com/twilio/twilio-sans-mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#twilio-sans-mono))
- [Ubuntu Mono](http://font.ubuntu.com) _Ubuntu Font Licence_ ([view](https://www.programmingfonts.org/#ubuntu))
- [GNU Unifont](http://www.unifoundry.com/unifont.html) _GNU GPL_ ([view](https://www.programmingfonts.org/#unifont))
Expand Down
24 changes: 24 additions & 0 deletions fonts.json
Original file line number Diff line number Diff line change
Expand Up @@ -2473,6 +2473,30 @@
"year": 2006,
"zerostyle": "empty"
},
"topaz-a1200": {
"author": "TrueSchool Ascii",
"description": "Faithfully remade multi platform Amiga fonts in Amiga aspect.",
"license": "GNU GPL",
"ligatures": false,
"name": "Topaz (A1200)",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/rewtnull/amigafonts",
"year": 2013,
"zerostyle": "slashed"
},
"topaz-a500": {
"author": "TrueSchool Ascii",
"description": "Faithfully remade multi platform Amiga fonts in Amiga aspect.",
"license": "GNU GPL",
"ligatures": false,
"name": "Topaz (A500)",
"rendering": "vector",
"style": "sans",
"website": "https://github.com/rewtnull/amigafonts",
"year": 2013,
"zerostyle": "slashed"
},
"twilio-sans-mono": {
"author": "Sharp Type",
"description": "Twilio worked very closely with the type foundry, Sharp Type over the course of two years to develop a welcoming and adaptable typeface.",
Expand Down
Binary file added fonts/resources/topaz-a1200/Topaz_a1200_v1.0.ttf
Binary file not shown.
Binary file added fonts/resources/topaz-a500/Topaz_a500_v1.0.ttf
Binary file not shown.
3 changes: 3 additions & 0 deletions fonts/stylesheets/fonts.less
Original file line number Diff line number Diff line change
Expand Up @@ -581,6 +581,9 @@
.font( 'terminus-ttf', normal, italic, 'terminus-ttf/terminus-ttf-italic.ttf' );
.font( 'terminus-ttf', normal, normal, 'terminus-ttf/terminus-ttf.ttf' );

.font( 'topaz-a1200', normal, normal, 'topaz-a1200/Topaz_a1200_v1.0.ttf' );
.font( 'topaz-a500', normal, normal, 'topaz-a500/Topaz_a500_v1.0.ttf' );

.font( 'twilio-sans-mono', bold, italic, 'twilio-sans-mono/twilio-sans-mono-bold-italic.woff2' );
.font( 'twilio-sans-mono', bold, normal, 'twilio-sans-mono/twilio-sans-mono-bold.woff2' );
.font( 'twilio-sans-mono', normal, italic, 'twilio-sans-mono/twilio-sans-mono-italic.woff2' );
Expand Down
12 changes: 12 additions & 0 deletions fonts/stylesheets/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -2506,6 +2506,18 @@
font-style: normal;
src: url('../resources/terminus-ttf/terminus-ttf.ttf');
}
@font-face {
font-family: 'topaz-a1200';
font-weight: normal;
font-style: normal;
src: url('../resources/topaz-a1200/Topaz_a1200_v1.0.ttf');
}
@font-face {
font-family: 'topaz-a500';
font-weight: normal;
font-style: normal;
src: url('../resources/topaz-a500/Topaz_a500_v1.0.ttf');
}
@font-face {
font-family: 'twilio-sans-mono';
font-weight: bold;
Expand Down