Skip to content

Commit 9df2e3e

Browse files
committed
add psudoFont Liga Mono
1 parent 850ca86 commit 9df2e3e

8 files changed

Lines changed: 49 additions & 1 deletion

File tree

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -236,12 +236,13 @@ Therefore:
236236
- [Overpass Mono](http://overpassfont.org) _SIL OFL_ ([view](https://www.programmingfonts.org/#overpass))
237237
- [0xProto](https://github.com/0xType/0xProto) _SIL OFL_ ([view](https://www.programmingfonts.org/#oxproto))
238238
- [Oxygen Mono](http://www.google.com/fonts/specimen/Oxygen+Mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#oxygen))
239-
- [Paper Mono](https://github.com/paper-design/paper-mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#paper-mono))
239+
- [Paper Mono](https://github.com/paper-design/paper-mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#paper))
240240
- [IBM Plex Mono](https://github.com/IBM/plex) _SIL OFL_ ([view](https://www.programmingfonts.org/#plex-mono))
241241
- [Press Start 2P](https://github.com/codeman38/PressStart2P) __ ([view](https://www.programmingfonts.org/#press-start-2p))
242242
- [Profont](http://tobiasjung.name/profont/) _MIT_ ([view](https://www.programmingfonts.org/#profont))
243243
- [Proggy Clean](https://github.com/bluescan/proggyfonts/) _MIT_ ([view](https://www.programmingfonts.org/#proggy-clean))
244244
- [Proggy Vector](https://github.com/bluescan/proggyfonts/) _MIT_ ([view](https://www.programmingfonts.org/#proggy-vector))
245+
- [psudoFont Liga Mono](https://github.com/psudo-dev/psudofont-liga-mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#psudo))
245246
- [PT Mono](https://www.paratype.com/fonts/pt/pt-mono) _SIL OFL_ ([view](https://www.programmingfonts.org/#pt))
246247
- [Quinze](http://openfontlibrary.org/en/font/fifteen) _SIL OFL_ ([view](https://www.programmingfonts.org/#quinze))
247248
- [Recursive](https://www.recursive.design) _SIL OFL_ ([view](https://www.programmingfonts.org/#recursive-mono-linear))

fonts.json

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1977,6 +1977,24 @@
19771977
"year": 2019,
19781978
"zerostyle": "slashed"
19791979
},
1980+
"psudo": {
1981+
"author": "Renato Setoue",
1982+
"description": "Based on Meslo/Menlo and IBM Plex Mono/Lilex, designed for coding and terminal use.",
1983+
"license": "SIL OFL",
1984+
"ligatures": true,
1985+
"name": "psudoFont Liga Mono",
1986+
"rendering": "vector",
1987+
"style": "sans",
1988+
"variants": [
1989+
"bold",
1990+
"bold-italic",
1991+
"italic",
1992+
"regular"
1993+
],
1994+
"website": "https://github.com/psudo-dev/psudofont-liga-mono",
1995+
"year": 2025,
1996+
"zerostyle": "dotted"
1997+
},
19801998
"pt": {
19811999
"author": "Alexandra Korolkova",
19822000
"description": "PT Mono was developed for the special needs -- for use in forms, tables, work sheets etc.",
315 KB
Binary file not shown.
286 KB
Binary file not shown.
315 KB
Binary file not shown.

fonts/resources/psudo/psudo.ttf

290 KB
Binary file not shown.

fonts/stylesheets/fonts.less

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -458,6 +458,11 @@
458458
.font ( 'proggy-clean', normal, normal, 'proggy-clean/proggy-clean.woff' );
459459
.font ( 'proggy-vector', normal, normal, 'proggy-vector/proggy-vector.woff' );
460460

461+
.font ( 'psudo', bold, italic, 'psudo/psudo-bold-italic.ttf' );
462+
.font ( 'psudo', bold, normal, 'psudo/psudo-bold.ttf' );
463+
.font ( 'psudo', normal, italic, 'psudo/psudo-italic.ttf' );
464+
.font ( 'psudo', normal, normal, 'psudo/psudo.ttf' );
465+
461466
.font ( 'pt', normal, normal, 'pt/pt.woff' );
462467
.font ( 'pt', bold, normal, 'pt/pt-bold.woff' );
463468

fonts/stylesheets/stylesheet.css

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1966,6 +1966,30 @@
19661966
font-style: normal;
19671967
src: url('../resources/proggy-vector/proggy-vector.woff');
19681968
}
1969+
@font-face {
1970+
font-family: 'psudo';
1971+
font-weight: bold;
1972+
font-style: italic;
1973+
src: url('../resources/psudo/psudo-bold-italic.ttf');
1974+
}
1975+
@font-face {
1976+
font-family: 'psudo';
1977+
font-weight: bold;
1978+
font-style: normal;
1979+
src: url('../resources/psudo/psudo-bold.ttf');
1980+
}
1981+
@font-face {
1982+
font-family: 'psudo';
1983+
font-weight: normal;
1984+
font-style: italic;
1985+
src: url('../resources/psudo/psudo-italic.ttf');
1986+
}
1987+
@font-face {
1988+
font-family: 'psudo';
1989+
font-weight: normal;
1990+
font-style: normal;
1991+
src: url('../resources/psudo/psudo.ttf');
1992+
}
19691993
@font-face {
19701994
font-family: 'pt';
19711995
font-weight: normal;

0 commit comments

Comments
 (0)