Skip to content

Commit

Permalink
Provided ttf and webfonts versions (#18, closes #24, closes #38, #101,
Browse files Browse the repository at this point in the history
…closes #106)
  • Loading branch information
tonsky committed Jul 18, 2016
1 parent 7037ced commit 94f1d8f
Show file tree
Hide file tree
Showing 28 changed files with 109 additions and 0 deletions.
1 change: 1 addition & 0 deletions README.md
Expand Up @@ -127,6 +127,7 @@ Other monospaced fonts with ligatures:
- Added whiteFrowningFace (U+2639) (#190)
- Simplified visual style on markdown headers `##` `###` `####` (#107)
- Added `</>` (#147)
- Provided ttf and webfonts versions (eot, woff, woff2) (#18, #24, #38, #101, #106)

#### 1.102

Expand Down
Binary file added distr/eot/FiraCode-Bold.eot
Binary file not shown.
Binary file added distr/eot/FiraCode-Light.eot
Binary file not shown.
Binary file added distr/eot/FiraCode-Medium.eot
Binary file not shown.
Binary file added distr/eot/FiraCode-Regular.eot
Binary file not shown.
Binary file added distr/eot/FiraCode-Retina.eot
Binary file not shown.
43 changes: 43 additions & 0 deletions distr/fira_code.css
@@ -0,0 +1,43 @@
@font-face{
font-family: 'Fira Code';
src: url('eot/FiraCode-Light.eot');
src: url('eot/FiraCode-Light.eot') format('embedded-opentype'),
url('woff2/FiraCode-Light.woff2') format('woff2'),
url('woff/FiraCode-Light.woff') format('woff'),
url('ttf/FiraCode-Light.ttf') format('truetype');
font-weight: 300;
font-style: normal;
}

@font-face{
font-family: 'Fira Code';
src: url('eot/FiraCode-Regular.eot');
src: url('eot/FiraCode-Regular.eot') format('embedded-opentype'),
url('woff2/FiraCode-Regular.woff2') format('woff2'),
url('woff/FiraCode-Regular.woff') format('woff'),
url('ttf/FiraCode-Regular.ttf') format('truetype');
font-weight: 400;
font-style: normal;
}

@font-face{
font-family: 'Fira Code';
src: url('eot/FiraCode-Medium.eot');
src: url('eot/FiraCode-Medium.eot') format('embedded-opentype'),
url('woff2/FiraCode-Medium.woff2') format('woff2'),
url('woff/FiraCode-Medium.woff') format('woff'),
url('ttf/FiraCode-Medium.ttf') format('truetype');
font-weight: 500;
font-style: normal;
}

@font-face{
font-family: 'Fira Code';
src: url('eot/FiraCode-Bold.eot');
src: url('eot/FiraCode-Bold.eot') format('embedded-opentype'),
url('woff2/FiraCode-Bold.woff2') format('woff2'),
url('woff/FiraCode-Bold.woff') format('woff'),
url('ttf/FiraCode-Bold.ttf') format('truetype');
font-weight: 700;
font-style: normal;
}
Binary file renamed FiraCode-Bold.otf → distr/otf/FiraCode-Bold.otf
Binary file not shown.
Binary file renamed FiraCode-Light.otf → distr/otf/FiraCode-Light.otf
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
65 changes: 65 additions & 0 deletions distr/specimen.html
@@ -0,0 +1,65 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,initial-scale=1.0">
<title>Fira Code Specimen</title>

<link rel="stylesheet" href="fira_code.css">
<style>
body { font: 14px/1.5em "Fira Code"; }
.code {
font-feature-settings: "calt" 1; /* Enable ligatures for IE 10+, Edge */
text-rendering: optimizeLegibility; /* Force ligatures for Webkit, Blink, Gecko */
width: 30em;
margin: 5em auto;
white-space: pre-wrap;
word-break: break-all;
}
.light { font-weight: 300; }
.regular { font-weight: 400; }
.medium { font-weight: 500; }
.bold { font-weight: 700; }
i { font-style: normal; color: #c33; }
b { font-weight: inherit; color: #c33; }
</style>
<body>

<div class="code light"><b># Fira Code Light</b>

take = (n, [x, <i>...</i>xs]:list) <i>--></i>
| n <i><=</i> 0 <i>=></i> <i>[]</i>
| empty list <i>=></i> <i>[]</i>
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs

last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>


<div class="code regular"><b># Fira Code Regular</b>

take = (n, [x, <i>...</i>xs]:list) <i>--></i>
| n <i><=</i> 0 <i>=></i> <i>[]</i>
| empty list <i>=></i> <i>[]</i>
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs

last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>


<div class="code medium"><b># Fira Code Medium</b>

take = (n, [x, <i>...</i>xs]:list) <i>--></i>
| n <i><=</i> 0 <i>=></i> <i>[]</i>
| empty list <i>=></i> <i>[]</i>
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs

last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>


<div class="code bold"><b># Fira Code Bold</b>

take = (n, [x, <i>...</i>xs]:list) <i>--></i>
| n <i><=</i> 0 <i>=></i> <i>[]</i>
| empty list <i>=></i> <i>[]</i>
| otherwise <i>=></i> [x] <i>++</i> take n-1, xs

last3 = reverse <i>>></i> take 3 <i>>></i> reverse</div>
Binary file added distr/ttf/FiraCode-Bold.ttf
Binary file not shown.
Binary file added distr/ttf/FiraCode-Light.ttf
Binary file not shown.
Binary file added distr/ttf/FiraCode-Medium.ttf
Binary file not shown.
Binary file added distr/ttf/FiraCode-Regular.ttf
Binary file not shown.
Binary file added distr/ttf/FiraCode-Retina.ttf
Binary file not shown.
Binary file added distr/woff/FiraCode-Bold.woff
Binary file not shown.
Binary file added distr/woff/FiraCode-Light.woff
Binary file not shown.
Binary file added distr/woff/FiraCode-Medium.woff
Binary file not shown.
Binary file added distr/woff/FiraCode-Regular.woff
Binary file not shown.
Binary file added distr/woff/FiraCode-Retina.woff
Binary file not shown.
Binary file added distr/woff2/FiraCode-Bold.woff2
Binary file not shown.
Binary file added distr/woff2/FiraCode-Light.woff2
Binary file not shown.
Binary file added distr/woff2/FiraCode-Medium.woff2
Binary file not shown.
Binary file added distr/woff2/FiraCode-Regular.woff2
Binary file not shown.
Binary file added distr/woff2/FiraCode-Retina.woff2
Binary file not shown.

0 comments on commit 94f1d8f

Please sign in to comment.