├── .github ├── FUNDING.yml ├── dependabot.yml └── workflows │ ├── lint.yml │ └── fix.yml ├── Virgil.woff2 ├── favicon.ico ├── .gitignore ├── vercel.json ├── README.md ├── script └── cleanup.js ├── public ├── btn.svg └── title.svg ├── yarn.lock ├── package.json ├── LICENSE.md └── index.html /.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | open_collective: excalidraw 2 | -------------------------------------------------------------------------------- /Virgil.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excalidraw/virgil/HEAD/Virgil.woff2 -------------------------------------------------------------------------------- /favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/excalidraw/virgil/HEAD/favicon.ico -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules 2 | package-lock.json 3 | yarn-error.log 4 | Virgil.backup 5 | Virgil3YOFF 6 | -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | updates: 3 | - package-ecosystem: npm 4 | directory: / 5 | schedule: 6 | interval: weekly 7 | day: sunday 8 | time: "01:00" 9 | -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- 1 | { 2 | "redirects": [ 3 | { 4 | "source": "/(.*)", 5 | "destination": "https://plus.excalidraw.com/virgil", 6 | "permanent": true 7 | } 8 | ] 9 | } 10 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Virgil 2 | 3 | The original font of [Excalidraw](https://excalidraw.com) created by Ellinor Rapp. Now replaced by [Excalifont](https://plus.excalidraw.com/excalifont). 4 | 5 | ## FontLab 6 | 7 | You will need the latest version of [FontLab](https://www.fontlab.com/) to open source file. 8 | -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- 1 | name: Lint 2 | 3 | on: 4 | push: 5 | branches: 6 | - main 7 | pull_request: 8 | 9 | jobs: 10 | lint: 11 | runs-on: ubuntu-latest 12 | steps: 13 | - uses: actions/checkout@v2 14 | - name: Install and lint 15 | run: | 16 | yarn --frozen-lockfile 17 | yarn lint 18 | -------------------------------------------------------------------------------- /script/cleanup.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | 3 | const fs = require("fs"); 4 | const SOURCE = "src/Virgil.vfj"; 5 | 6 | let rawdata = fs.readFileSync(SOURCE); 7 | let virgil = JSON.parse(rawdata); 8 | 9 | for (let glyph of virgil.font.glyphs) { 10 | try { 11 | delete glyph.lastModified; 12 | } catch { 13 | // 14 | } 15 | } 16 | 17 | let data = JSON.stringify(virgil, null, 2); 18 | fs.writeFileSync(SOURCE, data); 19 | -------------------------------------------------------------------------------- /public/btn.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- 1 | # THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. 2 | # yarn lockfile v1 3 | 4 | 5 | "@excalidraw/prettier-config@1.0.2": 6 | version "1.0.2" 7 | resolved "https://registry.yarnpkg.com/@excalidraw/prettier-config/-/prettier-config-1.0.2.tgz#b7c061c99cee2f78b9ca470ea1fbd602683bba65" 8 | integrity sha512-rFIq8+A8WvkEzBsF++Rw6gzxE+hU3ZNkdg8foI+Upz2y/rOC/gUpWJaggPbCkoH3nlREVU59axQjZ1+F6ePRGg== 9 | 10 | prettier@2.2.1: 11 | version "2.2.1" 12 | resolved "https://registry.yarnpkg.com/prettier/-/prettier-2.2.1.tgz#795a1a78dd52f073da0cd42b21f9c91381923ff5" 13 | integrity sha512-PqyhM2yCjg/oKkFPtTGUojv7gnZAoG80ttl45O6x2Ug/rMJw4wcc9k6aaf2hibP7BGVCCM33gZoGjyvt9mm16Q== 14 | -------------------------------------------------------------------------------- /.github/workflows/fix.yml: -------------------------------------------------------------------------------- 1 | name: Fix formatting 2 | 3 | on: 4 | push: 5 | 6 | jobs: 7 | fix: 8 | runs-on: ubuntu-latest 9 | steps: 10 | - uses: actions/checkout@v2 11 | - name: Install 12 | run: yarn --frozen-lockfile 13 | - name: Fix all files 14 | run: yarn fix 15 | - name: Commit changes 16 | run: | 17 | FILE_CHANGED=$(git diff) 18 | if [ ! -z "${FILE_CHANGED}" ]; then 19 | git config --global user.name 'Excalidraw Bot' 20 | git config --global user.email 'bot@excalidraw.com' 21 | git add . 22 | git commit -am "Auto commit: Format and cleanup" 23 | git push 24 | fi 25 | -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- 1 | { 2 | "author": "Ellinor Rapp", 3 | "dependencies": { 4 | "@excalidraw/prettier-config": "1.0.2", 5 | "prettier": "2.2.1" 6 | }, 7 | "description": "Virgil: handwritten font that powers Excalidraw", 8 | "license": "OFL-1.1", 9 | "name": "virgil", 10 | "prettier": "@excalidraw/prettier-config", 11 | "scripts": { 12 | "cleanup": "node script/cleanup.js", 13 | "fix": "yarn fix:files && yarn fix:font", 14 | "fix:files": "yarn prettier --write", 15 | "fix:font": "yarn cleanup && prettier src/Virgil.vfj --parser json --write", 16 | "lint": "yarn lint:files && yarn lint:font", 17 | "lint:files": "yarn prettier --list-different", 18 | "lint:font": "prettier src/Virgil.vfj --parser json --list-different", 19 | "prettier": "prettier ." 20 | }, 21 | "version": "1.0.0" 22 | } 23 | -------------------------------------------------------------------------------- /LICENSE.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2021 - Present, Ellinor Rapp, with Reserved Font Name Virgil. 2 | 3 | This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is copied below, and is also available with a FAQ at: [scripts.sil.org/OFL](https://scripts.sil.org/OFL). 4 | 5 | # SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 6 | 7 | ## PREAMBLE 8 | 9 | The goals of the Open Font License (OFL) are to stimulate worldwide development of collaborative font projects, to support the font creation efforts of academic and linguistic communities, and to provide a free and open framework in which fonts may be shared and improved in partnership with others. 10 | 11 | The OFL allows the licensed fonts to be used, studied, modified and redistributed freely as long as they are not sold by themselves. The fonts, including any derivative works, can be bundled, embedded, redistributed and/or sold with any software provided that any reserved names are not used by derivative works. The fonts and derivatives, however, cannot be released under any other type of license. The requirement for fonts to remain under this license does not apply to any document created using the fonts or their derivatives. 12 | 13 | ## DEFINITIONS 14 | 15 | "Font Software" refers to the set of files released by the Copyright Holder(s) under this license and clearly marked as such. This may include source files, build scripts and documentation. 16 | 17 | "Reserved Font Name" refers to any names specified as such after the copyright statement(s). 18 | 19 | "Original Version" refers to the collection of Font Software components as distributed by the Copyright Holder(s). 20 | 21 | "Modified Version" refers to any derivative made by adding to, deleting, or substituting -- in part or in whole -- any of the components of the Original Version, by changing formats or by porting the Font Software to a new environment. 22 | 23 | "Author" refers to any designer, engineer, programmer, technical writer or other person who contributed to the Font Software. 24 | 25 | ## PERMISSION & CONDITIONS 26 | 27 | Permission is hereby granted, free of charge, to any person obtaining a copy of the Font Software, to use, study, copy, merge, embed, modify, redistribute, and sell modified and unmodified copies of the Font Software, subject to the following conditions: 28 | 29 | 1. Neither the Font Software nor any of its individual components, in Original or Modified Versions, may be sold by itself. 30 | 31 | 2. Original or Modified Versions of the Font Software may be bundled, redistributed and/or sold with any software, provided that each copy contains the above copyright notice and this license. These can be included either as stand-alone text files, human-readable headers or in the appropriate machine-readable metadata fields within text or binary files as long as those fields can be easily viewed by the user. 32 | 33 | 3. No Modified Version of the Font Software may use the Reserved Font Name(s) unless explicit written permission is granted by the corresponding Copyright Holder. This restriction only applies to the primary font name as presented to the users. 34 | 35 | 4. The name(s) of the Copyright Holder(s) or the Author(s) of the Font Software shall not be used to promote, endorse or advertise any Modified Version, except to acknowledge the contribution(s) of the Copyright Holder(s) and the Author(s) or with their explicit written permission. 36 | 37 | 5. The Font Software, modified or unmodified, in part or in whole, must be distributed entirely under this license, and must not be distributed under any other license. The requirement for fonts to remain under this license does not apply to any document created using the Font Software. 38 | 39 | ## TERMINATION 40 | 41 | This license becomes null and void if any of the above conditions are not met. 42 | 43 | ## DISCLAIMER 44 | 45 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM OTHER DEALINGS IN THE FONT SOFTWARE. 46 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 10 | Virgil — The font that powers Excalidraw 11 | 12 | 16 | 20 | 93 | 97 | 105 | 106 | 107 | 108 |
109 |

Virgil

110 |

111 | The font that powers Excalidraw, 112 | created by Ellinor Rapp, is now open sourced. 113 |

114 |

115 | Stars 123 |

124 |

125 | Send us feedback on 126 | GitHub. 127 |

128 | 129 |

Try it below

130 |

131 | 139 |

140 | 141 |

142 | Download the latest .woff2 143 |

144 | 145 |

Latin

146 |

A B C D E F G H I J K L M N O P Q R S T U V W X Y Z

147 |

a b c d e f g h i j k l m n o p q r s t u v w x y z

148 | 149 |

Greek

150 |

Α Β Γ Δ Ε Ζ Η Θ Ι Κ Λ Μ Ν Ξ Ο Π Ρ Σ Τ Υ Φ Χ Ψ Ω

151 |

α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ σ ς τ υ φ χ ψ ω

152 | 153 |

Cyrillic

154 |

155 | А Б В Г Д Е Ё Ж З И Й К Л М Н О П Р С Т У Ф Х Ц Ч Ш Щ Ъ Ы Ь Э Ю Я 156 |

157 |

158 | а б в г д е ё ж з и й к л м н о п р с т у ф х ц ч ш щ ъ ы ь э ю я 159 |

160 | 161 |

Numbers

162 |

0 1 2 3 4 5 6 7 8 9

163 |

Symbols

164 |

165 | [ ] ( ) { } < > ? ! . , ; ' " ~ @ # $ € % ^ & + - * = / \ 166 |

167 |
168 | 169 | 185 | 186 | 187 | -------------------------------------------------------------------------------- /public/title.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | --------------------------------------------------------------------------------