fix #48, #46: add envy code r

This commit is contained in:
Koen Lageveen 2019-04-12 18:04:43 +02:00
parent 50867e3ee8
commit aabeae58a2
7 changed files with 47 additions and 0 deletions

View File

@ -260,6 +260,15 @@
"ligatures" : false,
"style" : "sans",
"rendering" : "bitmap"
},{
"alias" : "envy-code-r",
"name" : "Envy Code R",
"author" : "Damien Guard",
"year" : 2008,
"website" : "https://damieng.com/blog/2008/05/26/envy-code-r-preview-7-coding-font-released",
"ligatures" : false,
"style" : "sans",
"rendering" : "vector"
},{
"alias" : "fairfax",
"name" : "Fairfax",

View File

@ -0,0 +1,16 @@
Envy Code R (coding font) preview #7.2
======================================
Envy Code R is a fully-scalable monospaced font designed for programming and command prompts.
There are three variants including in the archive - Regular, Bold and Italic. A large number of additional symbols outside the ASCII range and provided which covers most of the Windows/ISO 1252 codepage, MacOS Roman and a number of other Central European pages.
This archive also contains a folder named 'Visual Studio Italics-as-bold' which contains the Regular and Italic fonts again with an alternate name of 'Envy Code R VS' and with the Italic variant set to identify itself as bold. This allows you to utilise italics within Visual Studio's syntax highlighter by choosing bold everywhere you want italics - great for comments or strings!
If you wish to use Envy Code R as a font for your Windows Command Prompt run the included .reg registry file and reboot, then choose Properties from the Command Prompt to set it.
Please send feedback to damien@envytech.co.uk and be sure to visit http://damieng.com/fonts/envy-code-r for updates and more information.
[)amien
Damien Guard, May 2008.
Copyright © 2006-2008 Envy Technologies Ltd. Free to use but redistribution prohibited.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -85,6 +85,10 @@
.font ( 'effects-eighty', normal, italic, 'effects-eighty/effects-eighty-italic.otf' );
.font ( 'effects-eighty', normal, normal, 'effects-eighty/effects-eighty.otf' );
.font ( 'envy-code-r', bold, normal, 'envy-code-r/envy-code-r-bold.woff' );
.font ( 'envy-code-r', normal, italic, 'envy-code-r/envy-code-r-italic.woff' );
.font ( 'envy-code-r', normal, normal, 'envy-code-r/envy-code-r.woff' );
.font ( 'fairfax', bold, normal, 'fairfax/fairfax-bold.ttf' );
.font ( 'fairfax', normal, italic, 'fairfax/fairfax-italic.ttf' );
.font ( 'fairfax', normal, normal, 'fairfax/fairfax.ttf' );

View File

@ -358,6 +358,24 @@
font-style: normal;
src: url('../resources/effects-eighty/effects-eighty.otf');
}
@font-face {
font-family: 'envy-code-r';
font-weight: bold;
font-style: normal;
src: url('../resources/envy-code-r/envy-code-r-bold.woff');
}
@font-face {
font-family: 'envy-code-r';
font-weight: normal;
font-style: italic;
src: url('../resources/envy-code-r/envy-code-r-italic.woff');
}
@font-face {
font-family: 'envy-code-r';
font-weight: normal;
font-style: normal;
src: url('../resources/envy-code-r/envy-code-r.woff');
}
@font-face {
font-family: 'fairfax';
font-weight: bold;