├── .gitignore ├── COPYRIGHT.md ├── LICENSE.txt ├── METADATA.yml ├── README.md ├── VariablePooDemo.ttf ├── VariablePooDemo.ttx ├── fonts ├── ColorVariableEmoji-VF-colr.ttf └── ColorVariableEmoji-VF.ttf ├── scripts ├── colr-cpal-tables.ttx ├── generateInterpolatableTTFs.py └── patchcolrcpal.sh ├── sources └── 1-drawing │ ├── ColorVariableEmoji-VF-colr.ttf │ ├── ColorVariableEmoji-VF-colr.ttx │ ├── ColorVariableEmoji-VF.ttf │ ├── ColorVariableEmoji-wght0.ttf │ ├── ColorVariableEmoji-wght0.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── space.glif │ │ ├── u1F4A9_.brown.glif │ │ ├── u1F4A9_.darkbrown.glif │ │ ├── u1F4A9_.glif │ │ ├── u1F4A9_.hat.glif │ │ ├── u1F4A9_.outline.glif │ │ ├── u1F4A9_.white.glif │ │ ├── uni2B55_.001.glif │ │ ├── uni2B55_.002.glif │ │ └── uni2B55_.glif │ ├── lib.plist │ └── metainfo.plist │ ├── ColorVariableEmoji-wght1000.ttf │ ├── ColorVariableEmoji-wght1000.ufo │ ├── fontinfo.plist │ ├── glyphs │ │ ├── contents.plist │ │ ├── space.glif │ │ ├── u1F4A9_.brown.glif │ │ ├── u1F4A9_.darkbrown.glif │ │ ├── u1F4A9_.glif │ │ ├── u1F4A9_.hat.glif │ │ ├── u1F4A9_.outline.glif │ │ ├── u1F4A9_.white.glif │ │ ├── uni2B55_.001.glif │ │ ├── uni2B55_.002.glif │ │ └── uni2B55_.glif │ ├── lib.plist │ └── metainfo.plist │ ├── ColorVariableEmoji.designspace │ └── _archive │ └── _ColorVariableEmoji-stuf1000.ufo │ ├── fontinfo.plist │ ├── glyphs │ ├── contents.plist │ ├── space.glif │ ├── u1F4A9_.brown.glif │ ├── u1F4A9_.darkbrown.glif │ ├── u1F4A9_.glif │ ├── u1F4A9_.hat.glif │ ├── u1F4A9_.outline.glif │ ├── u1F4A9_.white.glif │ ├── uni2B55_.001.glif │ ├── uni2B55_.002.glif │ └── uni2B55_.glif │ ├── lib.plist │ └── metainfo.plist ├── test-ie.html └── test.html /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] 4 | *$py.class 5 | 6 | # C extensions 7 | *.so 8 | 9 | # Distribution / packaging 10 | .Python 11 | env/ 12 | build/ 13 | develop-eggs/ 14 | dist/ 15 | downloads/ 16 | eggs/ 17 | .eggs/ 18 | lib/ 19 | lib64/ 20 | parts/ 21 | sdist/ 22 | var/ 23 | *.egg-info/ 24 | .installed.cfg 25 | *.egg 26 | 27 | # PyInstaller 28 | # Usually these files are written by a python script from a template 29 | # before PyInstaller builds the exe, so as to inject date/other infos into it. 30 | *.manifest 31 | *.spec 32 | 33 | # Installer logs 34 | pip-log.txt 35 | pip-delete-this-directory.txt 36 | 37 | # Unit test / coverage reports 38 | htmlcov/ 39 | .tox/ 40 | .coverage 41 | .coverage.* 42 | .cache 43 | nosetests.xml 44 | coverage.xml 45 | *,cover 46 | .hypothesis/ 47 | 48 | # Translations 49 | *.mo 50 | *.pot 51 | 52 | # Django stuff: 53 | *.log 54 | local_settings.py 55 | 56 | # Flask stuff: 57 | instance/ 58 | .webassets-cache 59 | 60 | # Scrapy stuff: 61 | .scrapy 62 | 63 | # Sphinx documentation 64 | docs/_build/ 65 | 66 | # PyBuilder 67 | target/ 68 | 69 | # IPython Notebook 70 | .ipynb_checkpoints 71 | 72 | # pyenv 73 | .python-version 74 | 75 | # celery beat schedule file 76 | celerybeat-schedule 77 | 78 | # dotenv 79 | .env 80 | 81 | # virtualenv 82 | venv/ 83 | ENV/ 84 | 85 | # Spyder project settings 86 | .spyderproject 87 | 88 | # Rope project settings 89 | .ropeproject 90 | -------------------------------------------------------------------------------- /COPYRIGHT.md: -------------------------------------------------------------------------------- 1 | Copyright (c) 2017, Roel Nieskens and David Jonathan Ross -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- 1 | For vfonts demo use. -------------------------------------------------------------------------------- /METADATA.yml: -------------------------------------------------------------------------------- 1 | --- 2 | unified font repository version: "0.2" 3 | unified font repository url: https://github.com/raphaelbastide/Unified-Font-Repository/ 4 | typeface family: 5 | name: Color Variable Emoji 6 | tags: 7 | repository url: https://github.com/djrrb/Color-Variable-Emoji 8 | project url: https://github.com/djrrb/Color-Variable-Emoji 9 | project status: beta 10 | tools: 11 | - RoboFont 12 | similar fonts: 13 | sample text: 14 | - en_us: The quick brown fox jumps over the lazy dog 15 | ... 16 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Color Variable Emoji 2 | 3 | This is an experimental, one-character variable color font. It contains only one character, the poo emoji 💩. It has one axis, "crap", which goes from 100 to 900. 4 | 5 | You can see [Mr. Poo in action here](https://pixelambacht.nl/demo/mrpoo/)! If he's all black and/or doesn't animate, your browser doesn't fully support variable color fonts yet. 6 | 7 | ## Where does it work? 8 | 9 | Your browser needs to support variable fonts _and_ color fonts of the COLR/CPAL format. Currently this is only Safari 11 and Chrome 62 on OS X High Sierra. 10 | 11 | ## Building the font 12 | 13 | It's a bit messy, but: build the ufo files in the source directory, then inject COLR/CPAL tables by running `scripts/pathcolorcpal.sh` (source found in `scripts/colr-cpal-tables.ttx`). 14 | 15 | Then, uhm, dump the font with ttx/FontTools and hack away until it's working. These are lousy instructions, I know, but the truth is I've been hacking at this on-and-off for the past months and I forgot the exact path to the current VariablePooDemo.ttf file. But I'm more than willing to work out problems or answer your questions (even dumb ones (_especially_ dumb ones)), so ping me at [my site](https://pixelambacht.nl) or over at [Twitter](https://twitter.com/pixelambacht). 16 | -------------------------------------------------------------------------------- /VariablePooDemo.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/VariablePooDemo.ttf -------------------------------------------------------------------------------- /fonts/ColorVariableEmoji-VF-colr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/fonts/ColorVariableEmoji-VF-colr.ttf -------------------------------------------------------------------------------- /fonts/ColorVariableEmoji-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/fonts/ColorVariableEmoji-VF.ttf -------------------------------------------------------------------------------- /scripts/colr-cpal-tables.ttx: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | -------------------------------------------------------------------------------- /scripts/generateInterpolatableTTFs.py: -------------------------------------------------------------------------------- 1 | import os 2 | base = os.path.split(os.path.split(__file__)[0])[0] 3 | masterPath = os.path.join(base, 'sources/1-drawing') 4 | 5 | for filename in os.listdir(masterPath): 6 | if filename.endswith('.ufo'): 7 | path = os.path.join(masterPath, filename) 8 | f= OpenFont(path, showUI=False) 9 | f.generate(path.replace('.ufo', '.ttf'), 'ttf', decompose=False, checkOutlines=False, autohint=False) 10 | f.close() -------------------------------------------------------------------------------- /scripts/patchcolrcpal.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | # Add COLR/CPAL table 4 | ttx -o fonts/ColorVariableEmoji-VF-colr.ttf -m fonts/ColorVariableEmoji-VF.ttf scripts/colr-cpal-tables.ttx 5 | ttx -o sources/1-drawing/ColorVariableEmoji-VF-colr.ttf -m sources/1-drawing/ColorVariableEmoji-VF.ttf scripts/colr-cpal-tables.ttx 6 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-VF-colr.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/sources/1-drawing/ColorVariableEmoji-VF-colr.ttf -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-VF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/sources/1-drawing/ColorVariableEmoji-VF.ttf -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/sources/1-drawing/ColorVariableEmoji-wght0.ttf -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/fontinfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ascender 6 | 750 7 | capHeight 8 | 750 9 | descender 10 | -250 11 | familyName 12 | Color Variable Emoji 13 | openTypeNameDesigner 14 | Roel Nieskens and David Jonathan Ross 15 | postscriptBlueValues 16 | 17 | 18 | postscriptFamilyBlues 19 | 20 | 21 | postscriptFamilyOtherBlues 22 | 23 | 24 | postscriptOtherBlues 25 | 26 | 27 | postscriptStemSnapH 28 | 29 | 30 | postscriptStemSnapV 31 | 32 | 33 | styleName 34 | wdth0 35 | unitsPerEm 36 | 1000 37 | xHeight 38 | 500 39 | 40 | 41 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | space 6 | space.glif 7 | u1F4A9 8 | u1F4A9_.glif 9 | u1F4A9.brown 10 | u1F4A9_.brown.glif 11 | u1F4A9.darkbrown 12 | u1F4A9_.darkbrown.glif 13 | u1F4A9.hat 14 | u1F4A9_.hat.glif 15 | u1F4A9.outline 16 | u1F4A9_.outline.glif 17 | u1F4A9.white 18 | u1F4A9_.white.glif 19 | uni2B55 20 | uni2B55_.glif 21 | uni2B55.001 22 | uni2B55_.001.glif 23 | uni2B55.002 24 | uni2B55_.002.glif 25 | 26 | 27 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/u1F4A9_.brown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/u1F4A9_.darkbrown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/u1F4A9_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/u1F4A9_.white.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/uni2B55_.001.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/uni2B55_.002.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/glyphs/uni2B55_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/lib.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.typemytype.robofont.background.layerStrokeColor 6 | 7 | 1.0 8 | 0.75 9 | 0.0 10 | 0.7 11 | 12 | com.typemytype.robofont.compileSettings.autohint 13 | 14 | com.typemytype.robofont.compileSettings.checkOutlines 15 | 16 | com.typemytype.robofont.compileSettings.createDummyDSIG 17 | 18 | com.typemytype.robofont.compileSettings.decompose 19 | 20 | com.typemytype.robofont.compileSettings.generateFormat 21 | 0 22 | com.typemytype.robofont.compileSettings.releaseMode 23 | 24 | com.typemytype.robofont.foreground.layerStrokeColor 25 | 26 | 0.5 27 | 0.0 28 | 0.5 29 | 0.7 30 | 31 | com.typemytype.robofont.italicSlantOffset 32 | 0 33 | com.typemytype.robofont.layerOrder 34 | 35 | background 36 | 37 | com.typemytype.robofont.segmentType 38 | qcurve 39 | com.typemytype.robofont.shouldAddPointsInSplineConversion 40 | 1 41 | com.typemytype.robofont.sort 42 | 43 | 44 | ascending 45 | 46 | space 47 | uni2B55 48 | uni2B55.001 49 | uni2B55.002 50 | u1F4A9 51 | u1F4A9.brown 52 | u1F4A9.darkbrown 53 | u1F4A9.white 54 | u1F4A9.outline 55 | u1F4A9.hat 56 | uni1F4A9 57 | uni1F4A9.brown 58 | uni1F4A9.darkbrown 59 | uni1F4A9.white 60 | uni1F4A9.outline 61 | uni1F4A9.hat 62 | A 63 | Agrave 64 | Aacute 65 | Acircumflex 66 | Atilde 67 | Adieresis 68 | Aring 69 | B 70 | C 71 | Ccedilla 72 | D 73 | E 74 | Egrave 75 | Eacute 76 | Ecircumflex 77 | Edieresis 78 | F 79 | G 80 | H 81 | I 82 | Igrave 83 | Iacute 84 | Icircumflex 85 | Idieresis 86 | J 87 | K 88 | L 89 | M 90 | N 91 | Ntilde 92 | O 93 | Ograve 94 | Oacute 95 | Ocircumflex 96 | Otilde 97 | Odieresis 98 | P 99 | Q 100 | R 101 | S 102 | T 103 | U 104 | Ugrave 105 | Uacute 106 | Ucircumflex 107 | Udieresis 108 | V 109 | W 110 | X 111 | Y 112 | Yacute 113 | Z 114 | AE 115 | Eth 116 | Oslash 117 | Thorn 118 | a 119 | agrave 120 | aacute 121 | acircumflex 122 | atilde 123 | adieresis 124 | aring 125 | b 126 | c 127 | ccedilla 128 | d 129 | e 130 | egrave 131 | eacute 132 | ecircumflex 133 | edieresis 134 | f 135 | g 136 | h 137 | i 138 | igrave 139 | iacute 140 | icircumflex 141 | idieresis 142 | j 143 | k 144 | l 145 | m 146 | n 147 | ntilde 148 | o 149 | ograve 150 | oacute 151 | ocircumflex 152 | otilde 153 | odieresis 154 | p 155 | q 156 | r 157 | s 158 | t 159 | u 160 | ugrave 161 | uacute 162 | ucircumflex 163 | udieresis 164 | v 165 | w 166 | x 167 | y 168 | yacute 169 | ydieresis 170 | z 171 | ordfeminine 172 | ordmasculine 173 | germandbls 174 | ae 175 | eth 176 | oslash 177 | thorn 178 | dotlessi 179 | mu 180 | circumflex 181 | caron 182 | zero 183 | one 184 | two 185 | three 186 | four 187 | five 188 | six 189 | seven 190 | eight 191 | nine 192 | twosuperior 193 | threesuperior 194 | onesuperior 195 | onequarter 196 | onehalf 197 | threequarters 198 | underscore 199 | hyphen 200 | parenleft 201 | bracketleft 202 | braceleft 203 | parenright 204 | bracketright 205 | braceright 206 | quoteleft 207 | quoteright 208 | exclam 209 | quotedbl 210 | numbersign 211 | percent 212 | ampersand 213 | quotesingle 214 | asterisk 215 | comma 216 | period 217 | slash 218 | colon 219 | semicolon 220 | question 221 | at 222 | backslash 223 | exclamdown 224 | periodcentered 225 | questiondown 226 | plus 227 | less 228 | equal 229 | greater 230 | bar 231 | asciitilde 232 | logicalnot 233 | plusminus 234 | multiply 235 | divide 236 | minus 237 | dollar 238 | cent 239 | sterling 240 | currency 241 | yen 242 | asciicircum 243 | grave 244 | dieresis 245 | macron 246 | acute 247 | cedilla 248 | breve 249 | dotaccent 250 | ring 251 | ogonek 252 | tilde 253 | hungarumlaut 254 | brokenbar 255 | section 256 | copyright 257 | registered 258 | degree 259 | paragraph 260 | guillemotleft 261 | guillemotright 262 | 263 | type 264 | glyphList 265 | 266 | 267 | public.glyphOrder 268 | 269 | space 270 | uni2B55 271 | uni2B55.001 272 | uni2B55.002 273 | u1F4A9 274 | u1F4A9.brown 275 | u1F4A9.darkbrown 276 | u1F4A9.white 277 | u1F4A9.outline 278 | u1F4A9.hat 279 | uni1F4A9 280 | uni1F4A9.brown 281 | uni1F4A9.darkbrown 282 | uni1F4A9.white 283 | uni1F4A9.outline 284 | uni1F4A9.hat 285 | A 286 | Agrave 287 | Aacute 288 | Acircumflex 289 | Atilde 290 | Adieresis 291 | Aring 292 | B 293 | C 294 | Ccedilla 295 | D 296 | E 297 | Egrave 298 | Eacute 299 | Ecircumflex 300 | Edieresis 301 | F 302 | G 303 | H 304 | I 305 | Igrave 306 | Iacute 307 | Icircumflex 308 | Idieresis 309 | J 310 | K 311 | L 312 | M 313 | N 314 | Ntilde 315 | O 316 | Ograve 317 | Oacute 318 | Ocircumflex 319 | Otilde 320 | Odieresis 321 | P 322 | Q 323 | R 324 | S 325 | T 326 | U 327 | Ugrave 328 | Uacute 329 | Ucircumflex 330 | Udieresis 331 | V 332 | W 333 | X 334 | Y 335 | Yacute 336 | Z 337 | AE 338 | Eth 339 | Oslash 340 | Thorn 341 | a 342 | agrave 343 | aacute 344 | acircumflex 345 | atilde 346 | adieresis 347 | aring 348 | b 349 | c 350 | ccedilla 351 | d 352 | e 353 | egrave 354 | eacute 355 | ecircumflex 356 | edieresis 357 | f 358 | g 359 | h 360 | i 361 | igrave 362 | iacute 363 | icircumflex 364 | idieresis 365 | j 366 | k 367 | l 368 | m 369 | n 370 | ntilde 371 | o 372 | ograve 373 | oacute 374 | ocircumflex 375 | otilde 376 | odieresis 377 | p 378 | q 379 | r 380 | s 381 | t 382 | u 383 | ugrave 384 | uacute 385 | ucircumflex 386 | udieresis 387 | v 388 | w 389 | x 390 | y 391 | yacute 392 | ydieresis 393 | z 394 | ordfeminine 395 | ordmasculine 396 | germandbls 397 | ae 398 | eth 399 | oslash 400 | thorn 401 | dotlessi 402 | mu 403 | circumflex 404 | caron 405 | zero 406 | one 407 | two 408 | three 409 | four 410 | five 411 | six 412 | seven 413 | eight 414 | nine 415 | twosuperior 416 | threesuperior 417 | onesuperior 418 | onequarter 419 | onehalf 420 | threequarters 421 | underscore 422 | hyphen 423 | parenleft 424 | bracketleft 425 | braceleft 426 | parenright 427 | bracketright 428 | braceright 429 | quoteleft 430 | quoteright 431 | exclam 432 | quotedbl 433 | numbersign 434 | percent 435 | ampersand 436 | quotesingle 437 | asterisk 438 | comma 439 | period 440 | slash 441 | colon 442 | semicolon 443 | question 444 | at 445 | backslash 446 | exclamdown 447 | periodcentered 448 | questiondown 449 | plus 450 | less 451 | equal 452 | greater 453 | bar 454 | asciitilde 455 | logicalnot 456 | plusminus 457 | multiply 458 | divide 459 | minus 460 | dollar 461 | cent 462 | sterling 463 | currency 464 | yen 465 | asciicircum 466 | grave 467 | dieresis 468 | macron 469 | acute 470 | cedilla 471 | breve 472 | dotaccent 473 | ring 474 | ogonek 475 | tilde 476 | hungarumlaut 477 | brokenbar 478 | section 479 | copyright 480 | registered 481 | degree 482 | paragraph 483 | guillemotleft 484 | guillemotright 485 | 486 | 487 | 488 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght0.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | org.robofab.ufoLib 7 | formatVersion 8 | 2 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RoelN/Color-Variable-Emoji/b3fbf32e9615a8f002e0648773b5fd29c18196af/sources/1-drawing/ColorVariableEmoji-wght1000.ttf -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/fontinfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ascender 6 | 750 7 | capHeight 8 | 750 9 | descender 10 | -250 11 | familyName 12 | Color Variable Emoji 13 | openTypeNameDesigner 14 | Roel Nieskens and David Jonathan Ross 15 | postscriptBlueValues 16 | 17 | 18 | postscriptFamilyBlues 19 | 20 | 21 | postscriptFamilyOtherBlues 22 | 23 | 24 | postscriptOtherBlues 25 | 26 | 27 | postscriptStemSnapH 28 | 29 | 30 | postscriptStemSnapV 31 | 32 | 33 | styleName 34 | wdth1000 35 | unitsPerEm 36 | 1000 37 | xHeight 38 | 500 39 | 40 | 41 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | space 6 | space.glif 7 | u1F4A9 8 | u1F4A9_.glif 9 | u1F4A9.brown 10 | u1F4A9_.brown.glif 11 | u1F4A9.darkbrown 12 | u1F4A9_.darkbrown.glif 13 | u1F4A9.hat 14 | u1F4A9_.hat.glif 15 | u1F4A9.outline 16 | u1F4A9_.outline.glif 17 | u1F4A9.white 18 | u1F4A9_.white.glif 19 | uni2B55 20 | uni2B55_.glif 21 | uni2B55.001 22 | uni2B55_.001.glif 23 | uni2B55.002 24 | uni2B55_.002.glif 25 | 26 | 27 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/u1F4A9_.brown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/u1F4A9_.darkbrown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/u1F4A9_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/u1F4A9_.outline.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 258 | 259 | 260 | 261 | 262 | 263 | 264 | 265 | 266 | 267 | 268 | 269 | 270 | 271 | 272 | 273 | 274 | 275 | 276 | 277 | 278 | 279 | 280 | 281 | 282 | 283 | 284 | 285 | 286 | 287 | 288 | 289 | 290 | 291 | 292 | 293 | 294 | 295 | 296 | 297 | 298 | 299 | 300 | 301 | 302 | 303 | 304 | 305 | 306 | 307 | 308 | 309 | 310 | 311 | 312 | 313 | 314 | 315 | 316 | com.typemytype.robofont.layerData 317 | 318 | background 319 | 320 | anchors 321 | 322 | 323 | components 324 | 325 | 326 | contours 327 | 328 | 329 | points 330 | 331 | 332 | smooth 333 | 334 | x 335 | 589 336 | y 337 | 604 338 | 339 | 340 | smooth 341 | 342 | x 343 | 597 344 | y 345 | 591 346 | 347 | 348 | segmentType 349 | qcurve 350 | smooth 351 | 352 | x 353 | 597 354 | y 355 | 584 356 | 357 | 358 | smooth 359 | 360 | x 361 | 597 362 | y 363 | 576 364 | 365 | 366 | smooth 367 | 368 | x 369 | 556 370 | y 371 | 558 372 | 373 | 374 | segmentType 375 | qcurve 376 | smooth 377 | 378 | x 379 | 527 380 | y 381 | 553 382 | 383 | 384 | smooth 385 | 386 | x 387 | 520 388 | y 389 | 552 390 | 391 | 392 | smooth 393 | 394 | x 395 | 503 396 | y 397 | 551 398 | 399 | 400 | segmentType 401 | qcurve 402 | smooth 403 | 404 | x 405 | 493 406 | y 407 | 551 408 | 409 | 410 | smooth 411 | 412 | x 413 | 479 414 | y 415 | 551 416 | 417 | 418 | smooth 419 | 420 | x 421 | 446 422 | y 423 | 554 424 | 425 | 426 | segmentType 427 | qcurve 428 | smooth 429 | 430 | x 431 | 427 432 | y 433 | 556 434 | 435 | 436 | smooth 437 | 438 | x 439 | 365 440 | y 441 | 563 442 | 443 | 444 | smooth 445 | 446 | x 447 | 270 448 | y 449 | 591 450 | 451 | 452 | segmentType 453 | qcurve 454 | smooth 455 | 456 | x 457 | 269 458 | y 459 | 608 460 | 461 | 462 | smooth 463 | 464 | x 465 | 269 466 | y 467 | 609 468 | 469 | 470 | smooth 471 | 472 | x 473 | 269 474 | y 475 | 611 476 | 477 | 478 | segmentType 479 | qcurve 480 | smooth 481 | 482 | x 483 | 269 484 | y 485 | 612 486 | 487 | 488 | smooth 489 | 490 | x 491 | 269 492 | y 493 | 623 494 | 495 | 496 | smooth 497 | 498 | x 499 | 276 500 | y 501 | 636 502 | 503 | 504 | segmentType 505 | qcurve 506 | smooth 507 | 508 | x 509 | 283 510 | y 511 | 636 512 | 513 | 514 | smooth 515 | 516 | x 517 | 291 518 | y 519 | 636 520 | 521 | 522 | smooth 523 | 524 | x 525 | 334 526 | y 527 | 611 528 | 529 | 530 | segmentType 531 | qcurve 532 | smooth 533 | 534 | x 535 | 344 536 | y 537 | 603 538 | 539 | 540 | segmentType 541 | line 542 | smooth 543 | 544 | x 545 | 359 546 | y 547 | 856 548 | 549 | 550 | smooth 551 | 552 | x 553 | 360 554 | y 555 | 870 556 | 557 | 558 | smooth 559 | 560 | x 561 | 378 562 | y 563 | 883 564 | 565 | 566 | segmentType 567 | qcurve 568 | smooth 569 | 570 | x 571 | 399 572 | y 573 | 878 574 | 575 | 576 | smooth 577 | 578 | x 579 | 429 580 | y 581 | 871 582 | 583 | 584 | smooth 585 | 586 | x 587 | 470 588 | y 589 | 869 590 | 591 | 592 | segmentType 593 | qcurve 594 | smooth 595 | 596 | x 597 | 511 598 | y 599 | 874 600 | 601 | 602 | smooth 603 | 604 | x 605 | 528 606 | y 607 | 876 608 | 609 | 610 | smooth 611 | 612 | x 613 | 540 614 | y 615 | 864 616 | 617 | 618 | segmentType 619 | qcurve 620 | smooth 621 | 622 | x 623 | 540 624 | y 625 | 844 626 | 627 | 628 | smooth 629 | 630 | x 631 | 540 632 | y 633 | 841 634 | 635 | 636 | smooth 637 | 638 | x 639 | 536 640 | y 641 | 787 642 | 643 | 644 | segmentType 645 | qcurve 646 | smooth 647 | 648 | x 649 | 536 650 | y 651 | 784 652 | 653 | 654 | segmentType 655 | line 656 | smooth 657 | 658 | x 659 | 523 660 | y 661 | 584 662 | 663 | 664 | smooth 665 | 666 | x 667 | 523 668 | y 669 | 582 670 | 671 | 672 | smooth 673 | 674 | x 675 | 524 676 | y 677 | 581 678 | 679 | 680 | segmentType 681 | qcurve 682 | smooth 683 | 684 | x 685 | 525 686 | y 687 | 581 688 | 689 | 690 | smooth 691 | 692 | x 693 | 531 694 | y 695 | 581 696 | 697 | 698 | smooth 699 | 700 | x 701 | 579 702 | y 703 | 604 704 | 705 | 706 | segmentType 707 | qcurve 708 | smooth 709 | 710 | x 711 | 585 712 | y 713 | 604 714 | 715 | 716 | 717 | 718 | lib 719 | 720 | 721 | name 722 | u1F4A9.outline 723 | unicodes 724 | 725 | 726 | width 727 | 829 728 | 729 | 730 | 731 | 732 | 733 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/u1F4A9_.white.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | com.typemytype.robofont.layerData 56 | 57 | background 58 | 59 | anchors 60 | 61 | 62 | components 63 | 64 | 65 | contours 66 | 67 | 68 | points 69 | 70 | 71 | smooth 72 | 73 | x 74 | 589 75 | y 76 | 604 77 | 78 | 79 | smooth 80 | 81 | x 82 | 597 83 | y 84 | 591 85 | 86 | 87 | segmentType 88 | qcurve 89 | smooth 90 | 91 | x 92 | 597 93 | y 94 | 584 95 | 96 | 97 | smooth 98 | 99 | x 100 | 597 101 | y 102 | 576 103 | 104 | 105 | smooth 106 | 107 | x 108 | 556 109 | y 110 | 558 111 | 112 | 113 | segmentType 114 | qcurve 115 | smooth 116 | 117 | x 118 | 527 119 | y 120 | 553 121 | 122 | 123 | smooth 124 | 125 | x 126 | 520 127 | y 128 | 552 129 | 130 | 131 | smooth 132 | 133 | x 134 | 503 135 | y 136 | 551 137 | 138 | 139 | segmentType 140 | qcurve 141 | smooth 142 | 143 | x 144 | 493 145 | y 146 | 551 147 | 148 | 149 | smooth 150 | 151 | x 152 | 479 153 | y 154 | 551 155 | 156 | 157 | smooth 158 | 159 | x 160 | 446 161 | y 162 | 554 163 | 164 | 165 | segmentType 166 | qcurve 167 | smooth 168 | 169 | x 170 | 427 171 | y 172 | 556 173 | 174 | 175 | smooth 176 | 177 | x 178 | 365 179 | y 180 | 563 181 | 182 | 183 | smooth 184 | 185 | x 186 | 270 187 | y 188 | 591 189 | 190 | 191 | segmentType 192 | qcurve 193 | smooth 194 | 195 | x 196 | 269 197 | y 198 | 608 199 | 200 | 201 | smooth 202 | 203 | x 204 | 269 205 | y 206 | 609 207 | 208 | 209 | smooth 210 | 211 | x 212 | 269 213 | y 214 | 611 215 | 216 | 217 | segmentType 218 | qcurve 219 | smooth 220 | 221 | x 222 | 269 223 | y 224 | 612 225 | 226 | 227 | smooth 228 | 229 | x 230 | 269 231 | y 232 | 623 233 | 234 | 235 | smooth 236 | 237 | x 238 | 276 239 | y 240 | 636 241 | 242 | 243 | segmentType 244 | qcurve 245 | smooth 246 | 247 | x 248 | 283 249 | y 250 | 636 251 | 252 | 253 | smooth 254 | 255 | x 256 | 291 257 | y 258 | 636 259 | 260 | 261 | smooth 262 | 263 | x 264 | 334 265 | y 266 | 611 267 | 268 | 269 | segmentType 270 | qcurve 271 | smooth 272 | 273 | x 274 | 344 275 | y 276 | 603 277 | 278 | 279 | segmentType 280 | line 281 | smooth 282 | 283 | x 284 | 359 285 | y 286 | 856 287 | 288 | 289 | smooth 290 | 291 | x 292 | 360 293 | y 294 | 870 295 | 296 | 297 | smooth 298 | 299 | x 300 | 378 301 | y 302 | 883 303 | 304 | 305 | segmentType 306 | qcurve 307 | smooth 308 | 309 | x 310 | 399 311 | y 312 | 878 313 | 314 | 315 | smooth 316 | 317 | x 318 | 429 319 | y 320 | 871 321 | 322 | 323 | smooth 324 | 325 | x 326 | 470 327 | y 328 | 869 329 | 330 | 331 | segmentType 332 | qcurve 333 | smooth 334 | 335 | x 336 | 511 337 | y 338 | 874 339 | 340 | 341 | smooth 342 | 343 | x 344 | 528 345 | y 346 | 876 347 | 348 | 349 | smooth 350 | 351 | x 352 | 540 353 | y 354 | 864 355 | 356 | 357 | segmentType 358 | qcurve 359 | smooth 360 | 361 | x 362 | 540 363 | y 364 | 844 365 | 366 | 367 | smooth 368 | 369 | x 370 | 540 371 | y 372 | 841 373 | 374 | 375 | smooth 376 | 377 | x 378 | 536 379 | y 380 | 787 381 | 382 | 383 | segmentType 384 | qcurve 385 | smooth 386 | 387 | x 388 | 536 389 | y 390 | 784 391 | 392 | 393 | segmentType 394 | line 395 | smooth 396 | 397 | x 398 | 523 399 | y 400 | 584 401 | 402 | 403 | smooth 404 | 405 | x 406 | 523 407 | y 408 | 582 409 | 410 | 411 | smooth 412 | 413 | x 414 | 524 415 | y 416 | 581 417 | 418 | 419 | segmentType 420 | qcurve 421 | smooth 422 | 423 | x 424 | 525 425 | y 426 | 581 427 | 428 | 429 | smooth 430 | 431 | x 432 | 531 433 | y 434 | 581 435 | 436 | 437 | smooth 438 | 439 | x 440 | 579 441 | y 442 | 604 443 | 444 | 445 | segmentType 446 | qcurve 447 | smooth 448 | 449 | x 450 | 585 451 | y 452 | 604 453 | 454 | 455 | 456 | 457 | lib 458 | 459 | 460 | name 461 | u1F4A9.white 462 | unicodes 463 | 464 | 465 | width 466 | 829 467 | 468 | 469 | 470 | 471 | 472 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/uni2B55_.001.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/uni2B55_.002.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/glyphs/uni2B55_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/lib.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.typemytype.robofont.background.layerStrokeColor 6 | 7 | 0.0 8 | 0.8 9 | 0.2 10 | 0.7 11 | 12 | com.typemytype.robofont.compileSettings.autohint 13 | 14 | com.typemytype.robofont.compileSettings.checkOutlines 15 | 16 | com.typemytype.robofont.compileSettings.createDummyDSIG 17 | 18 | com.typemytype.robofont.compileSettings.decompose 19 | 20 | com.typemytype.robofont.compileSettings.generateFormat 21 | 0 22 | com.typemytype.robofont.compileSettings.releaseMode 23 | 24 | com.typemytype.robofont.foreground.layerStrokeColor 25 | 26 | 0.5 27 | 0.0 28 | 0.5 29 | 0.7 30 | 31 | com.typemytype.robofont.italicSlantOffset 32 | 0 33 | com.typemytype.robofont.layerOrder 34 | 35 | background 36 | 37 | com.typemytype.robofont.segmentType 38 | qcurve 39 | com.typemytype.robofont.shouldAddPointsInSplineConversion 40 | 1 41 | com.typemytype.robofont.sort 42 | 43 | 44 | ascending 45 | 46 | space 47 | uni2B55 48 | uni2B55.001 49 | uni2B55.002 50 | u1F4A9 51 | u1F4A9.brown 52 | u1F4A9.darkbrown 53 | u1F4A9.white 54 | u1F4A9.outline 55 | u1F4A9.hat 56 | uni1F4A9 57 | uni1F4A9.brown 58 | uni1F4A9.darkbrown 59 | uni1F4A9.white 60 | uni1F4A9.outline 61 | uni1F4A9.hat 62 | A 63 | Agrave 64 | Aacute 65 | Acircumflex 66 | Atilde 67 | Adieresis 68 | Aring 69 | B 70 | C 71 | Ccedilla 72 | D 73 | E 74 | Egrave 75 | Eacute 76 | Ecircumflex 77 | Edieresis 78 | F 79 | G 80 | H 81 | I 82 | Igrave 83 | Iacute 84 | Icircumflex 85 | Idieresis 86 | J 87 | K 88 | L 89 | M 90 | N 91 | Ntilde 92 | O 93 | Ograve 94 | Oacute 95 | Ocircumflex 96 | Otilde 97 | Odieresis 98 | P 99 | Q 100 | R 101 | S 102 | T 103 | U 104 | Ugrave 105 | Uacute 106 | Ucircumflex 107 | Udieresis 108 | V 109 | W 110 | X 111 | Y 112 | Yacute 113 | Z 114 | AE 115 | Eth 116 | Oslash 117 | Thorn 118 | a 119 | agrave 120 | aacute 121 | acircumflex 122 | atilde 123 | adieresis 124 | aring 125 | b 126 | c 127 | ccedilla 128 | d 129 | e 130 | egrave 131 | eacute 132 | ecircumflex 133 | edieresis 134 | f 135 | g 136 | h 137 | i 138 | igrave 139 | iacute 140 | icircumflex 141 | idieresis 142 | j 143 | k 144 | l 145 | m 146 | n 147 | ntilde 148 | o 149 | ograve 150 | oacute 151 | ocircumflex 152 | otilde 153 | odieresis 154 | p 155 | q 156 | r 157 | s 158 | t 159 | u 160 | ugrave 161 | uacute 162 | ucircumflex 163 | udieresis 164 | v 165 | w 166 | x 167 | y 168 | yacute 169 | ydieresis 170 | z 171 | ordfeminine 172 | ordmasculine 173 | germandbls 174 | ae 175 | eth 176 | oslash 177 | thorn 178 | dotlessi 179 | mu 180 | circumflex 181 | caron 182 | zero 183 | one 184 | two 185 | three 186 | four 187 | five 188 | six 189 | seven 190 | eight 191 | nine 192 | twosuperior 193 | threesuperior 194 | onesuperior 195 | onequarter 196 | onehalf 197 | threequarters 198 | underscore 199 | hyphen 200 | parenleft 201 | bracketleft 202 | braceleft 203 | parenright 204 | bracketright 205 | braceright 206 | quoteleft 207 | quoteright 208 | exclam 209 | quotedbl 210 | numbersign 211 | percent 212 | ampersand 213 | quotesingle 214 | asterisk 215 | comma 216 | period 217 | slash 218 | colon 219 | semicolon 220 | question 221 | at 222 | backslash 223 | exclamdown 224 | periodcentered 225 | questiondown 226 | plus 227 | less 228 | equal 229 | greater 230 | bar 231 | asciitilde 232 | logicalnot 233 | plusminus 234 | multiply 235 | divide 236 | minus 237 | dollar 238 | cent 239 | sterling 240 | currency 241 | yen 242 | asciicircum 243 | grave 244 | dieresis 245 | macron 246 | acute 247 | cedilla 248 | breve 249 | dotaccent 250 | ring 251 | ogonek 252 | tilde 253 | hungarumlaut 254 | brokenbar 255 | section 256 | copyright 257 | registered 258 | degree 259 | paragraph 260 | guillemotleft 261 | guillemotright 262 | 263 | type 264 | glyphList 265 | 266 | 267 | public.glyphOrder 268 | 269 | space 270 | uni2B55 271 | uni2B55.001 272 | uni2B55.002 273 | u1F4A9 274 | u1F4A9.brown 275 | u1F4A9.darkbrown 276 | u1F4A9.white 277 | u1F4A9.outline 278 | u1F4A9.hat 279 | uni1F4A9 280 | uni1F4A9.brown 281 | uni1F4A9.darkbrown 282 | uni1F4A9.white 283 | uni1F4A9.outline 284 | uni1F4A9.hat 285 | A 286 | Agrave 287 | Aacute 288 | Acircumflex 289 | Atilde 290 | Adieresis 291 | Aring 292 | B 293 | C 294 | Ccedilla 295 | D 296 | E 297 | Egrave 298 | Eacute 299 | Ecircumflex 300 | Edieresis 301 | F 302 | G 303 | H 304 | I 305 | Igrave 306 | Iacute 307 | Icircumflex 308 | Idieresis 309 | J 310 | K 311 | L 312 | M 313 | N 314 | Ntilde 315 | O 316 | Ograve 317 | Oacute 318 | Ocircumflex 319 | Otilde 320 | Odieresis 321 | P 322 | Q 323 | R 324 | S 325 | T 326 | U 327 | Ugrave 328 | Uacute 329 | Ucircumflex 330 | Udieresis 331 | V 332 | W 333 | X 334 | Y 335 | Yacute 336 | Z 337 | AE 338 | Eth 339 | Oslash 340 | Thorn 341 | a 342 | agrave 343 | aacute 344 | acircumflex 345 | atilde 346 | adieresis 347 | aring 348 | b 349 | c 350 | ccedilla 351 | d 352 | e 353 | egrave 354 | eacute 355 | ecircumflex 356 | edieresis 357 | f 358 | g 359 | h 360 | i 361 | igrave 362 | iacute 363 | icircumflex 364 | idieresis 365 | j 366 | k 367 | l 368 | m 369 | n 370 | ntilde 371 | o 372 | ograve 373 | oacute 374 | ocircumflex 375 | otilde 376 | odieresis 377 | p 378 | q 379 | r 380 | s 381 | t 382 | u 383 | ugrave 384 | uacute 385 | ucircumflex 386 | udieresis 387 | v 388 | w 389 | x 390 | y 391 | yacute 392 | ydieresis 393 | z 394 | ordfeminine 395 | ordmasculine 396 | germandbls 397 | ae 398 | eth 399 | oslash 400 | thorn 401 | dotlessi 402 | mu 403 | circumflex 404 | caron 405 | zero 406 | one 407 | two 408 | three 409 | four 410 | five 411 | six 412 | seven 413 | eight 414 | nine 415 | twosuperior 416 | threesuperior 417 | onesuperior 418 | onequarter 419 | onehalf 420 | threequarters 421 | underscore 422 | hyphen 423 | parenleft 424 | bracketleft 425 | braceleft 426 | parenright 427 | bracketright 428 | braceright 429 | quoteleft 430 | quoteright 431 | exclam 432 | quotedbl 433 | numbersign 434 | percent 435 | ampersand 436 | quotesingle 437 | asterisk 438 | comma 439 | period 440 | slash 441 | colon 442 | semicolon 443 | question 444 | at 445 | backslash 446 | exclamdown 447 | periodcentered 448 | questiondown 449 | plus 450 | less 451 | equal 452 | greater 453 | bar 454 | asciitilde 455 | logicalnot 456 | plusminus 457 | multiply 458 | divide 459 | minus 460 | dollar 461 | cent 462 | sterling 463 | currency 464 | yen 465 | asciicircum 466 | grave 467 | dieresis 468 | macron 469 | acute 470 | cedilla 471 | breve 472 | dotaccent 473 | ring 474 | ogonek 475 | tilde 476 | hungarumlaut 477 | brokenbar 478 | section 479 | copyright 480 | registered 481 | degree 482 | paragraph 483 | guillemotleft 484 | guillemotright 485 | 486 | 487 | 488 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji-wght1000.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | org.robofab.ufoLib 7 | formatVersion 8 | 2 9 | 10 | 11 | -------------------------------------------------------------------------------- /sources/1-drawing/ColorVariableEmoji.designspace: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/fontinfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | ascender 6 | 750 7 | capHeight 8 | 750 9 | descender 10 | -250 11 | familyName 12 | Color Variable Emoji 13 | openTypeNameDesigner 14 | Roel Nieskens and David Jonathan Ross 15 | postscriptBlueValues 16 | 17 | 18 | postscriptFamilyBlues 19 | 20 | 21 | postscriptFamilyOtherBlues 22 | 23 | 24 | postscriptOtherBlues 25 | 26 | 27 | postscriptStemSnapH 28 | 29 | 30 | postscriptStemSnapV 31 | 32 | 33 | styleName 34 | stuf1000 35 | unitsPerEm 36 | 1000 37 | xHeight 38 | 500 39 | 40 | 41 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/contents.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | space 6 | space.glif 7 | u1F4A9 8 | u1F4A9_.glif 9 | u1F4A9.brown 10 | u1F4A9_.brown.glif 11 | u1F4A9.darkbrown 12 | u1F4A9_.darkbrown.glif 13 | u1F4A9.hat 14 | u1F4A9_.hat.glif 15 | u1F4A9.outline 16 | u1F4A9_.outline.glif 17 | u1F4A9.white 18 | u1F4A9_.white.glif 19 | uni2B55 20 | uni2B55_.glif 21 | uni2B55.001 22 | uni2B55_.001.glif 23 | uni2B55.002 24 | uni2B55_.002.glif 25 | 26 | 27 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/space.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/u1F4A9_.brown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/u1F4A9_.darkbrown.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/u1F4A9_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | com.typemytype.robofont.layerData 181 | 182 | 183 | 184 | 185 | 186 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/u1F4A9_.hat.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/u1F4A9_.outline.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 184 | 185 | 186 | 187 | 188 | 189 | 190 | 191 | 192 | 193 | 194 | 195 | 196 | 197 | 198 | 199 | 200 | 201 | 202 | 203 | 204 | 205 | 206 | 207 | 208 | 209 | 210 | 211 | 212 | 213 | 214 | 215 | 216 | 217 | 218 | 219 | 220 | 221 | 222 | 223 | 224 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 233 | 234 | 235 | 236 | 237 | 238 | 239 | 240 | 241 | 242 | 243 | 244 | 245 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/u1F4A9_.white.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/uni2B55_.001.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/uni2B55_.002.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/glyphs/uni2B55_.glif: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/lib.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | com.typemytype.robofont.compileSettings.autohint 6 | 7 | com.typemytype.robofont.compileSettings.checkOutlines 8 | 9 | com.typemytype.robofont.compileSettings.createDummyDSIG 10 | 11 | com.typemytype.robofont.compileSettings.decompose 12 | 13 | com.typemytype.robofont.compileSettings.generateFormat 14 | 0 15 | com.typemytype.robofont.compileSettings.releaseMode 16 | 17 | com.typemytype.robofont.foreground.layerStrokeColor 18 | 19 | 0.5 20 | 0.0 21 | 0.5 22 | 0.7 23 | 24 | com.typemytype.robofont.italicSlantOffset 25 | 0 26 | com.typemytype.robofont.layerOrder 27 | 28 | 29 | com.typemytype.robofont.segmentType 30 | qcurve 31 | com.typemytype.robofont.shouldAddPointsInSplineConversion 32 | 1 33 | com.typemytype.robofont.sort 34 | 35 | 36 | ascending 37 | 38 | space 39 | uni2B55 40 | uni2B55.001 41 | uni2B55.002 42 | uni1F4A9 43 | uni1F4A9.brown 44 | uni1F4A9.darkbrown 45 | uni1F4A9.white 46 | uni1F4A9.outline 47 | uni1F4A9.hat 48 | A 49 | Agrave 50 | Aacute 51 | Acircumflex 52 | Atilde 53 | Adieresis 54 | Aring 55 | B 56 | C 57 | Ccedilla 58 | D 59 | E 60 | Egrave 61 | Eacute 62 | Ecircumflex 63 | Edieresis 64 | F 65 | G 66 | H 67 | I 68 | Igrave 69 | Iacute 70 | Icircumflex 71 | Idieresis 72 | J 73 | K 74 | L 75 | M 76 | N 77 | Ntilde 78 | O 79 | Ograve 80 | Oacute 81 | Ocircumflex 82 | Otilde 83 | Odieresis 84 | P 85 | Q 86 | R 87 | S 88 | T 89 | U 90 | Ugrave 91 | Uacute 92 | Ucircumflex 93 | Udieresis 94 | V 95 | W 96 | X 97 | Y 98 | Yacute 99 | Z 100 | AE 101 | Eth 102 | Oslash 103 | Thorn 104 | a 105 | agrave 106 | aacute 107 | acircumflex 108 | atilde 109 | adieresis 110 | aring 111 | b 112 | c 113 | ccedilla 114 | d 115 | e 116 | egrave 117 | eacute 118 | ecircumflex 119 | edieresis 120 | f 121 | g 122 | h 123 | i 124 | igrave 125 | iacute 126 | icircumflex 127 | idieresis 128 | j 129 | k 130 | l 131 | m 132 | n 133 | ntilde 134 | o 135 | ograve 136 | oacute 137 | ocircumflex 138 | otilde 139 | odieresis 140 | p 141 | q 142 | r 143 | s 144 | t 145 | u 146 | ugrave 147 | uacute 148 | ucircumflex 149 | udieresis 150 | v 151 | w 152 | x 153 | y 154 | yacute 155 | ydieresis 156 | z 157 | ordfeminine 158 | ordmasculine 159 | germandbls 160 | ae 161 | eth 162 | oslash 163 | thorn 164 | dotlessi 165 | mu 166 | circumflex 167 | caron 168 | zero 169 | one 170 | two 171 | three 172 | four 173 | five 174 | six 175 | seven 176 | eight 177 | nine 178 | twosuperior 179 | threesuperior 180 | onesuperior 181 | onequarter 182 | onehalf 183 | threequarters 184 | underscore 185 | hyphen 186 | parenleft 187 | bracketleft 188 | braceleft 189 | parenright 190 | bracketright 191 | braceright 192 | quoteleft 193 | quoteright 194 | exclam 195 | quotedbl 196 | numbersign 197 | percent 198 | ampersand 199 | quotesingle 200 | asterisk 201 | comma 202 | period 203 | slash 204 | colon 205 | semicolon 206 | question 207 | at 208 | backslash 209 | exclamdown 210 | periodcentered 211 | questiondown 212 | plus 213 | less 214 | equal 215 | greater 216 | bar 217 | asciitilde 218 | logicalnot 219 | plusminus 220 | multiply 221 | divide 222 | minus 223 | dollar 224 | cent 225 | sterling 226 | currency 227 | yen 228 | asciicircum 229 | grave 230 | dieresis 231 | macron 232 | acute 233 | cedilla 234 | breve 235 | dotaccent 236 | ring 237 | ogonek 238 | tilde 239 | hungarumlaut 240 | brokenbar 241 | section 242 | copyright 243 | registered 244 | degree 245 | paragraph 246 | guillemotleft 247 | guillemotright 248 | 249 | type 250 | glyphList 251 | 252 | 253 | public.glyphOrder 254 | 255 | space 256 | uni2B55 257 | uni2B55.001 258 | uni2B55.002 259 | uni1F4A9 260 | uni1F4A9.brown 261 | uni1F4A9.darkbrown 262 | uni1F4A9.white 263 | uni1F4A9.outline 264 | uni1F4A9.hat 265 | A 266 | Agrave 267 | Aacute 268 | Acircumflex 269 | Atilde 270 | Adieresis 271 | Aring 272 | B 273 | C 274 | Ccedilla 275 | D 276 | E 277 | Egrave 278 | Eacute 279 | Ecircumflex 280 | Edieresis 281 | F 282 | G 283 | H 284 | I 285 | Igrave 286 | Iacute 287 | Icircumflex 288 | Idieresis 289 | J 290 | K 291 | L 292 | M 293 | N 294 | Ntilde 295 | O 296 | Ograve 297 | Oacute 298 | Ocircumflex 299 | Otilde 300 | Odieresis 301 | P 302 | Q 303 | R 304 | S 305 | T 306 | U 307 | Ugrave 308 | Uacute 309 | Ucircumflex 310 | Udieresis 311 | V 312 | W 313 | X 314 | Y 315 | Yacute 316 | Z 317 | AE 318 | Eth 319 | Oslash 320 | Thorn 321 | a 322 | agrave 323 | aacute 324 | acircumflex 325 | atilde 326 | adieresis 327 | aring 328 | b 329 | c 330 | ccedilla 331 | d 332 | e 333 | egrave 334 | eacute 335 | ecircumflex 336 | edieresis 337 | f 338 | g 339 | h 340 | i 341 | igrave 342 | iacute 343 | icircumflex 344 | idieresis 345 | j 346 | k 347 | l 348 | m 349 | n 350 | ntilde 351 | o 352 | ograve 353 | oacute 354 | ocircumflex 355 | otilde 356 | odieresis 357 | p 358 | q 359 | r 360 | s 361 | t 362 | u 363 | ugrave 364 | uacute 365 | ucircumflex 366 | udieresis 367 | v 368 | w 369 | x 370 | y 371 | yacute 372 | ydieresis 373 | z 374 | ordfeminine 375 | ordmasculine 376 | germandbls 377 | ae 378 | eth 379 | oslash 380 | thorn 381 | dotlessi 382 | mu 383 | circumflex 384 | caron 385 | zero 386 | one 387 | two 388 | three 389 | four 390 | five 391 | six 392 | seven 393 | eight 394 | nine 395 | twosuperior 396 | threesuperior 397 | onesuperior 398 | onequarter 399 | onehalf 400 | threequarters 401 | underscore 402 | hyphen 403 | parenleft 404 | bracketleft 405 | braceleft 406 | parenright 407 | bracketright 408 | braceright 409 | quoteleft 410 | quoteright 411 | exclam 412 | quotedbl 413 | numbersign 414 | percent 415 | ampersand 416 | quotesingle 417 | asterisk 418 | comma 419 | period 420 | slash 421 | colon 422 | semicolon 423 | question 424 | at 425 | backslash 426 | exclamdown 427 | periodcentered 428 | questiondown 429 | plus 430 | less 431 | equal 432 | greater 433 | bar 434 | asciitilde 435 | logicalnot 436 | plusminus 437 | multiply 438 | divide 439 | minus 440 | dollar 441 | cent 442 | sterling 443 | currency 444 | yen 445 | asciicircum 446 | grave 447 | dieresis 448 | macron 449 | acute 450 | cedilla 451 | breve 452 | dotaccent 453 | ring 454 | ogonek 455 | tilde 456 | hungarumlaut 457 | brokenbar 458 | section 459 | copyright 460 | registered 461 | degree 462 | paragraph 463 | guillemotleft 464 | guillemotright 465 | u1F4A9.hat 466 | u1F4A9 467 | u1F4A9.outline 468 | u1F4A9.white 469 | u1F4A9.brown 470 | u1F4A9.darkbrown 471 | 472 | 473 | 474 | -------------------------------------------------------------------------------- /sources/1-drawing/_archive/_ColorVariableEmoji-stuf1000.ufo/metainfo.plist: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | creator 6 | org.robofab.ufoLib 7 | formatVersion 8 | 2 9 | 10 | 11 | -------------------------------------------------------------------------------- /test-ie.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 11 | 12 | 69 | 70 | 71 | 72 | 73 |
74 | 💩 75 |
76 | 77 | Remember to download and install the font locally on Windows 10! 78 | 79 | 80 | -------------------------------------------------------------------------------- /test.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 46 | 47 | 48 | 49 |
50 | 💩 51 |
52 | 53 | 54 | 55 | --------------------------------------------------------------------------------