Skip to content

Commit

Permalink
add Atkinson Hyperlegible Mono
Browse files Browse the repository at this point in the history
  • Loading branch information
braver committed Feb 18, 2025
1 parent 2ab972f commit f0f2211
Show file tree
Hide file tree
Showing 9 changed files with 43 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,7 @@ Therefore:
- [Anonymous Pro](http://www.marksimonson.com/fonts/view/anonymous-pro) _SIL OFL_ ([view](https://www.programmingfonts.org/#anonymous-pro))
- [APL2741](http://apl385.com/fonts/index.htm) _public domain_ ([view](https://www.programmingfonts.org/#apl2741))
- [APL385](http://apl385.com/fonts/index.htm) _public domain_ ([view](https://www.programmingfonts.org/#apl385))
- [Atkinson Hyperlegible Mono](https://www.brailleinstitute.org/freefont/) _SIL OFL_ ([view](https://www.programmingfonts.org/#atkinson-hyperlegible))
- [AudioLink Mono](https://audiolink.dev) _SIL OFL_ ([view](https://www.programmingfonts.org/#audio-link))
- [Aurulent Sans Mono](https://www.fontsquirrel.com/fonts/Aurulent-Sans-Mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#aurulent))
- [Average Mono](http://openfontlibrary.org/en/font/average-mono) _GNU GPL_ ([view](https://www.programmingfonts.org/#average))
Expand Down
13 changes: 13 additions & 0 deletions fonts.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,19 @@
"year": 2003,
"zerostyle": "empty"
},
"atkinson-hyperlegible": {
"author": "Braille Institute",
"description": "At Braille Institute, we’ve created a family of hyperlegible™ fonts designed to improve legibility and readability for individuals with low vision.",
"license": "SIL OFL",
"ligatures": false,
"name": "Atkinson Hyperlegible Mono",
"rendering": "vector",
"style": "sans",
"variants": "A variable font in 7 weights, each with italics.",
"website": "https://www.brailleinstitute.org/freefont/",
"year": 2025,
"zerostyle": "slashed"
},
"audio-link": {
"author": "llealloo",
"description": "AudioLink is a system that analyzes and processes in-world audio into many different highly reactive data streams and exposes the data to VRChat Udon, world shaders, and avatar shaders.",
Expand Down
Binary file added fonts/resources/atkinson-hyperlegible/LICENSE.pdf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
5 changes: 5 additions & 0 deletions fonts/stylesheets/fonts.less
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,11 @@

.font ( 'apl385', normal, normal, 'apl385/apl385.ttf' );

.font ( 'atkinson-hyperlegible', bold, italic, 'atkinson-hyperlegible/atkinson-hyperlegible-bold-italic.woff2' );
.font ( 'atkinson-hyperlegible', bold, normal, 'atkinson-hyperlegible/atkinson-hyperlegible-bold.woff2' );
.font ( 'atkinson-hyperlegible', normal, italic, 'atkinson-hyperlegible/atkinson-hyperlegible-italic.woff2' );
.font ( 'atkinson-hyperlegible', normal, normal, 'atkinson-hyperlegible/atkinson-hyperlegible.woff2' );

.font ( 'audio-link', bold, normal, 'audio-link/audio-link-bold.ttf' );
.font ( 'audio-link', normal, normal, 'audio-link/audio-link.ttf' );

Expand Down
24 changes: 24 additions & 0 deletions fonts/stylesheets/stylesheet.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,30 @@
font-style: normal;
src: url('../resources/apl385/apl385.ttf');
}
@font-face {
font-family: 'atkinson-hyperlegible';
font-weight: bold;
font-style: italic;
src: url('../resources/atkinson-hyperlegible/atkinson-hyperlegible-bold-italic.woff2');
}
@font-face {
font-family: 'atkinson-hyperlegible';
font-weight: bold;
font-style: normal;
src: url('../resources/atkinson-hyperlegible/atkinson-hyperlegible-bold.woff2');
}
@font-face {
font-family: 'atkinson-hyperlegible';
font-weight: normal;
font-style: italic;
src: url('../resources/atkinson-hyperlegible/atkinson-hyperlegible-italic.woff2');
}
@font-face {
font-family: 'atkinson-hyperlegible';
font-weight: normal;
font-style: normal;
src: url('../resources/atkinson-hyperlegible/atkinson-hyperlegible.woff2');
}
@font-face {
font-family: 'audio-link';
font-weight: bold;
Expand Down

0 comments on commit f0f2211

Please sign in to comment.