├── README.md ├── SIL_Open_Font_License_1.1.txt ├── fake_pearl_history.md ├── preview └── preview.png ├── tw ├── FakePearl-ExtraLight.ttf ├── FakePearl-Light.ttf ├── FakePearl-Medium.ttf ├── FakePearl-Regular.ttf └── FakePearl-SemiBold.ttf └── webfont ├── FakePearl-ExtraLight.woff ├── FakePearl-ExtraLight.woff2 ├── FakePearl-Light.woff ├── FakePearl-Light.woff2 ├── FakePearl-Medium.woff ├── FakePearl-Medium.woff2 ├── FakePearl-Regular.woff ├── FakePearl-Regular.woff2 ├── FakePearl-SemiBold.woff └── FakePearl-SemiBold.woff2 /README.md: -------------------------------------------------------------------------------- 1 | 「假粉圓體」是基於[jf open 粉圓](https://github.com/justfont/open-huninn-font)的開放原始碼中文字型。 2 | 3 | 假粉圓,有字重的粉圓字體。 4 | 5 | ## 5種字重(Style) 6 | * ExtraLight 7 | * Light 8 | * Regular 9 | * Medium 10 | * SemiBold 11 | 12 | 原本的粉圓字體放在Regular 字重裡,透過程式自動產生ExtraLight、Light、Medium、SemiBold 新的字重。 13 | 14 | 在ExtraLight和Light字重是把原本的粉圓字體微微調細一點點。在Light的字重裡,可能會因為筆劃太細造成某些筆畫消失。 15 | 16 | 在SemiBold和Medium的字重裡,可能會因為筆劃太粗造成某些筆畫重疊難以識別,有粗體字的需求,可以先挑戰使用SemiBold字重看看,如果發現效果不如預期,Medium字重。 17 | 18 | ![字體預覽](https://github.com/max32002/FakePearl/raw/master/preview/preview.png) 19 | 20 | 不能確定自動產生出來的字重裡每一個都是完整的字,畢盡程式會誤判是常有的事情,所以不是在Regular字重裡的筆劃可能會消失。 21 | 22 | 由於是程式自動產生字重,有些字的方向可能會錯亂,請再回報有問題的字,小弟有空就幫忙修正。您也可以自行使用FontForget開啟「Regular」字重的 ttf 字型檔,就可以透過「Expand Stroke」這一個功能調整字型到您喜歡的字重。 23 | 24 | ## 下載字型 25 | 26 | 請點選GitHub此畫面右上綠色「Clone or download」按鈕,並選擇「Download ZIP」,或點進想下載的ttf字型檔案,再點「Download」的按鈕進行下載。 27 | 28 | ## 網頁字型(Web Font)服務 29 | 30 | 網頁字型用於網頁上的字型顯示,訪客不需預先安裝字型檔,一樣能夠看到特殊的字型效果。不只是電腦,在智慧型手機和平板裝置的瀏覽器上也可正常顯示。實現該功能的原理是在瀏覽時才下載字型檔。 31 | 32 | 可以服用下面的css: 33 | ``` 34 | @font-face { 35 | font-family: FakePearl-Regular; 36 | src: url(https://cdn.jsdelivr.net/gh/max32002/FakePearl@1.1/webfont/FakePearl-Regular.woff2) format("woff2") 37 | , url(https://cdn.jsdelivr.net/gh/max32002/FakePearl@1.1/webfont/FakePearl-Regular.woff) format("woff"); 38 | } 39 | ``` 40 | 41 | ## 著作權與授權 42 | * 本字型是基於 SIL Open Font License 1.1 改造just-font公司所開發、發表的「[jf open 粉圓](https://github.com/justfont/open-huninn-font)」字型。 43 | * 本字型亦基於 SIL Open Font License 1.1 授權條款免費公開,關於授權合約的內容、免責事項等細節,請詳讀 License 文件。 44 | * 可自由商用 不需付費、知會或標明作者,即可自由使用此字型,亦可做商業應用。 45 | * 可自由傳布 可自由分享檔案、將檔案安裝於任何軟硬體中。 46 | * 可自由改作為其他字型 將字型檔案修改重製為其他字型檔案,改作後的字型檔案須同樣依 Open Font License 釋出。 47 | 48 | 字體授權小提示:本字型採用 SIL Open Font License 1.1 授權發表,可以免費商用。在 github 上有附上 SIL Open Font License 1.1 的授權文件,如甲方或公司需要出示授權文件,直接使用此文件即可。 49 | 50 | ## 相關網頁 51 | 52 | 花園家族: 53 | * B2花園 B2 Hana 54 | https://max-everyday.com/2020/08/b2-hana-font/ 55 | * 花園肉丸 Hana Meatball 56 | https://max-everyday.com/2020/08/hana-meatball/ 57 | 58 | 簡體/繁體轉換家族: 59 | * 獅尾簡腿黑體 Swei Jay Leg 60 | https://max-everyday.com/2020/11/swei-jay-leg/ 61 | * 獅尾簡中黑體 Swei Jay Sans 62 | https://max-everyday.com/2020/11/swei-jay-sans/ 63 | * 獅尾簡中宋體 Swei Jay Serif 64 | https://max-everyday.com/2020/11/swei-jay-serif/ 65 | * 獅尾繁腿黑體 Swei Fan Leg 66 | https://max-everyday.com/2020/11/swei-fan-leg/ 67 | * 獅尾繁中黑體 Swei Fan Sans 68 | https://max-everyday.com/2020/11/swei-fan-sans/ 69 | * 獅尾繁中宋體 Swei Fan Serif 70 | https://max-everyday.com/2020/11/swei-fan-serif/ 71 | 72 | 獅尾黑體家族: 73 | * 獅尾右下腿黑體 Swei Right Bottom Leg 74 | https://max-everyday.com/2021/08/swei-right-bottom-leg/ 75 | * 獅尾右下圓黑體 Swei Right Bottom Sans 76 | https://max-everyday.com/2021/08/swei-right-bottom-sans/ 77 | * 獅尾飛腿黑體 Swei Dart Leg 78 | https://max-everyday.com/2020/11/swei-dart-leg/ 79 | * 獅尾飛鏢黑體 Swei Dart Sans 80 | https://max-everyday.com/2020/11/swei-dart-sans/ 81 | * 獅尾火腿黑體 Swei Match Leg 82 | https://max-everyday.com/2020/11/swei-match-leg/ 83 | * 獅尾火柴黑體 Swei Match Sans 84 | https://max-everyday.com/2020/11/swei-match-sans/ 85 | * 獅尾骨腿黑體 Swei Bone Leg 86 | https://max-everyday.com/2020/11/swei-bone-leg/ 87 | * 獅尾骨頭黑體 Swei Bone Sans 88 | https://max-everyday.com/2020/11/swei-bone-sans/ 89 | * 獅尾斧腿黑體 Swei Ax Leg 90 | https://max-everyday.com/2020/11/swei-ax-leg/ 91 | * 獅尾斧頭黑體 Swei Ax Sans 92 | https://max-everyday.com/2020/11/swei-ax-sans/ 93 | * 獅尾喇腿黑體 Swei Bell Leg 94 | https://max-everyday.com/2020/11/swei-bell-leg/ 95 | * 獅尾喇叭黑體 Swei Bell Sans 96 | https://max-everyday.com/2020/11/swei-bell-sans/ 97 | * 獅尾惡腿黑體 Swei Devil Leg 98 | https://max-everyday.com/2020/11/swei-devil-leg/ 99 | * 獅尾惡魔黑體 Swei Devil Sans 100 | https://max-everyday.com/2020/11/swei-devil-sans/ 101 | * 獅尾麥腿黑體 Swei Marker Leg 102 | https://max-everyday.com/2020/10/swei-marker-leg/ 103 | * 獅尾麥克黑體 Swei Marker Sans 104 | https://max-everyday.com/2020/10/swei-marker-sans/ 105 | * 獅尾詠腿黑體 Swei Fist Leg 106 | https://max-everyday.com/2020/10/swei-fist-leg/ 107 | * 獅尾詠春黑體 Swei Fist Sans 108 | https://max-everyday.com/2020/10/swei-fist-sans/ 109 | * 獅尾鋸腿黑體 Swei Alias Leg 110 | https://max-everyday.com/2020/10/swei-alias-leg/ 111 | * 獅尾鋸齒黑體 Swei Alias Sans 112 | https://max-everyday.com/2020/10/swei-alias-sans/ 113 | * 獅尾尖腿黑體 Swei Spike Leg 114 | https://max-everyday.com/2020/10/swei-spike-leg/ 115 | * 獅尾尖刺黑體 Swei Spike Sans 116 | https://max-everyday.com/2020/10/swei-spike-sans/ 117 | * 獅尾快腿黑體 Swei Shear Leg 118 | https://max-everyday.com/2020/09/swei-shear-leg/ 119 | * 獅尾快剪黑體 Swei Shear Sans 120 | https://max-everyday.com/2020/09/swei-shear-sans/ 121 | * 獅尾福腿黑體 Swei Gospel Leg 122 | https://max-everyday.com/2020/09/swei-gospel-leg/ 123 | * 獅尾福音黑體 Swei Gospel Sans 124 | https://max-everyday.com/2020/09/swei-gospel-sans/ 125 | * 獅尾D滷腿黑體 Swei Del Luna Leg 126 | https://max-everyday.com/2020/09/swei-del-luna-leg/ 127 | * 獅尾德魯納黑體 Swei Del Luna Sans 128 | https://max-everyday.com/2020/09/swei-del-luna-sans/ 129 | * 獅尾彎腿黑體 Swei Curve Leg 130 | https://max-everyday.com/2020/09/swei-curve-leg/ 131 | * 獅尾彎黑體 Swei Curve Sans 132 | https://max-everyday.com/2020/09/swei-curve-sans/ 133 | * 獅尾霓腿黑體 Swei Bow Leg 134 | https://max-everyday.com/2020/09/swei-bow-leg/ 135 | * 獅尾霓黑體 Swei Bow Sans 136 | https://max-everyday.com/2020/09/swei-bow-sans/ 137 | * 獅尾蝙蝠圓體 Swei Bat Sans 138 | https://max-everyday.com/2020/09/swei-bat-sans/ 139 | * 獅尾牙膏圓體 Swei Toothpaste 140 | https://max-everyday.com/2020/09/swei-toothpaste/ 141 | * 獅尾三腿黑體 Swei 3T Leg 142 | https://max-everyday.com/2020/09/swei-3t-leg/ 143 | * 獅尾三角黑體 Swei 3T Sans 144 | https://max-everyday.com/2020/08/swei-3t-sans/ 145 | * 獅尾螺帽腿黑體 Swei Nut Leg 146 | https://max-everyday.com/2020/08/swei-nut-leg/ 147 | * 獅尾螺帽黑體 Swei Nut Sans 148 | https://max-everyday.com/2020/08/swei-nut-sans/ 149 | * 獅尾B2腿黑體 Swei B2 Leg 150 | https://max-everyday.com/2020/07/swei-b2-leg/ 151 | * 獅尾B2黑體 Swei B2 Sans 152 | https://max-everyday.com/2020/07/swei-b2-sans/ 153 | * 獅尾腿圓 Swei Gothic Leg 154 | https://max-everyday.com/2020/08/swei-gothic-leg/ 155 | * 獅尾彩虹腿 Swei Rainbow Leg 156 | https://max-everyday.com/2020/08/swei-rainbow-leg/ 157 | * 獅尾XD珍珠 Swei XD Pearl 158 | https://max-everyday.com/2020/07/swei-xd-pearl/ 159 | * 獅尾D露西 Swei D Lucy 160 | https://max-everyday.com/2020/07/swei-d-lucy/ 161 | * 獅尾半月字體 Swei Gothic 162 | https://max-everyday.com/2020/04/swei-half-moon/ 163 | * 台灣圓體 TaiwanPearl 164 | https://max-everyday.com/2020/06/taiwanpearl/ 165 | * 獅尾圓體 Swei Gothic 166 | https://max-everyday.com/2020/04/swei-gothic/ 167 | * 獅尾黑體 Swei Sans 168 | https://max-everyday.com/2020/03/swei-sans/ 169 | 170 | 獅尾宋體家族: 171 | * 獅尾B2加糖宋體 Swei B2 Sugar 172 | https://max-everyday.com/2020/11/swei-b2-sugar/ 173 | * 獅尾加糖宋體 Swei Sugar 174 | https://max-everyday.com/2020/11/swei-sugar/ 175 | * 獅尾B2宋朝 Swei B2 Serif 176 | https://max-everyday.com/2020/07/swei-b2-serif/ 177 | * 獅尾肉丸 Swei Meatball 178 | https://max-everyday.com/2020/06/swei-meatball/ 179 | * 獅尾四季春字體 Swei Spring 180 | https://max-everyday.com/2020/04/swei-spring/ 181 | 182 | 其他字體: 183 | * 馬路口圓體 Maruko Gothic 184 | https://max-everyday.com/2021/07/maruko-gothic/ 185 | * 苦累蛙圓體 Kurewa Gothic 186 | https://max-everyday.com/2021/06/kurewa-gothic/ 187 | * 何某手寫體 Nani Font 188 | https://max-everyday.com/2020/09/nanifont/ 189 | * 內海字體 Naikai Font 190 | https://max-everyday.com/2020/03/naikaifont/ 191 | * 莫大毛筆字體 Bakudai Font 192 | https://max-everyday.com/2020/03/bakudaifont/ 193 | * 正風毛筆字體 Masa Font 194 | https://max-everyday.com/2020/05/masafont/ 195 | * 假粉圓體 Fake Pearl 196 | https://max-everyday.com/2020/03/open-huninn-font/ 197 | * 俊羽圓體 Yu Pearl 198 | https://max-everyday.com/2020/03/yupearl/ 199 | 200 | 其他網站: 201 | * 清松手寫體 JasonHandWriting 202 | https://jasonfonts.max-everyday.com/ 203 | * Max學習字體相關的筆記 204 | https://codereview.max-everyday.com/font-readme/ 205 | 206 | ## 贊助Max 207 | 208 | 很高興可以替中華民國美學盡一分心力、讓台灣擁有更好的文字風景,希望能提供另一種美學讓大家選擇。 209 | 210 | 如果你想支持或打賞Max,贊助方式如下: 211 | https://max-everyday.com/about/#donate 212 | -------------------------------------------------------------------------------- /SIL_Open_Font_License_1.1.txt: -------------------------------------------------------------------------------- 1 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 2 | This license is copied below, and is also available with a FAQ at: 3 | http://scripts.sil.org/OFL 4 | 5 | 6 | ----------------------------------------------------------- 7 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 8 | ----------------------------------------------------------- 9 | 10 | PREAMBLE 11 | The goals of the Open Font License (OFL) are to stimulate worldwide 12 | development of collaborative font projects, to support the font creation 13 | efforts of academic and linguistic communities, and to provide a free and 14 | open framework in which fonts may be shared and improved in partnership 15 | with others. 16 | 17 | The OFL allows the licensed fonts to be used, studied, modified and 18 | redistributed freely as long as they are not sold by themselves. The 19 | fonts, including any derivative works, can be bundled, embedded, 20 | redistributed and/or sold with any software provided that any reserved 21 | names are not used by derivative works. The fonts and derivatives, 22 | however, cannot be released under any other type of license. The 23 | requirement for fonts to remain under this license does not apply 24 | to any document created using the fonts or their derivatives. 25 | 26 | DEFINITIONS 27 | "Font Software" refers to the set of files released by the Copyright 28 | Holder(s) under this license and clearly marked as such. This may 29 | include source files, build scripts and documentation. 30 | 31 | "Reserved Font Name" refers to any names specified as such after the 32 | copyright statement(s). 33 | 34 | "Original Version" refers to the collection of Font Software components as 35 | distributed by the Copyright Holder(s). 36 | 37 | "Modified Version" refers to any derivative made by adding to, deleting, 38 | or substituting -- in part or in whole -- any of the components of the 39 | Original Version, by changing formats or by porting the Font Software to a 40 | new environment. 41 | 42 | "Author" refers to any designer, engineer, programmer, technical 43 | writer or other person who contributed to the Font Software. 44 | 45 | PERMISSION & CONDITIONS 46 | Permission is hereby granted, free of charge, to any person obtaining 47 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 48 | redistribute, and sell modified and unmodified copies of the Font 49 | Software, subject to the following conditions: 50 | 51 | 1) Neither the Font Software nor any of its individual components, 52 | in Original or Modified Versions, may be sold by itself. 53 | 54 | 2) Original or Modified Versions of the Font Software may be bundled, 55 | redistributed and/or sold with any software, provided that each copy 56 | contains the above copyright notice and this license. These can be 57 | included either as stand-alone text files, human-readable headers or 58 | in the appropriate machine-readable metadata fields within text or 59 | binary files as long as those fields can be easily viewed by the user. 60 | 61 | 3) No Modified Version of the Font Software may use the Reserved Font 62 | Name(s) unless explicit written permission is granted by the corresponding 63 | Copyright Holder. This restriction only applies to the primary font name as 64 | presented to the users. 65 | 66 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 67 | Software shall not be used to promote, endorse or advertise any 68 | Modified Version, except to acknowledge the contribution(s) of the 69 | Copyright Holder(s) and the Author(s) or with their explicit written 70 | permission. 71 | 72 | 5) The Font Software, modified or unmodified, in part or in whole, 73 | must be distributed entirely under this license, and must not be 74 | distributed under any other license. The requirement for fonts to 75 | remain under this license does not apply to any document created 76 | using the Font Software. 77 | 78 | TERMINATION 79 | This license becomes null and void if any of the above conditions are 80 | not met. 81 | 82 | DISCLAIMER 83 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 84 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 85 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 86 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 87 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 88 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 89 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 90 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 91 | OTHER DEALINGS IN THE FONT SOFTWARE. 92 | -------------------------------------------------------------------------------- /fake_pearl_history.md: -------------------------------------------------------------------------------- 1 | # 2020/03/23 (ver 1.13) 2 | * v1.13 , 字體的 family 打錯,已修正。 3 | 4 | # 2020/03/22 (ver 1.11) 5 | * 使用「蠟」重新組合「獵」字,用來解決透過程式產生ExtraLight字重會壞掉的問題。 6 | * 重新產生 Light 和 ExtraLight 字重的字型。 7 | 8 | -------------------------------------------------------------------------------- /preview/preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/preview/preview.png -------------------------------------------------------------------------------- /tw/FakePearl-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/tw/FakePearl-ExtraLight.ttf -------------------------------------------------------------------------------- /tw/FakePearl-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/tw/FakePearl-Light.ttf -------------------------------------------------------------------------------- /tw/FakePearl-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/tw/FakePearl-Medium.ttf -------------------------------------------------------------------------------- /tw/FakePearl-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/tw/FakePearl-Regular.ttf -------------------------------------------------------------------------------- /tw/FakePearl-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/tw/FakePearl-SemiBold.ttf -------------------------------------------------------------------------------- /webfont/FakePearl-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-ExtraLight.woff -------------------------------------------------------------------------------- /webfont/FakePearl-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-ExtraLight.woff2 -------------------------------------------------------------------------------- /webfont/FakePearl-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-Light.woff -------------------------------------------------------------------------------- /webfont/FakePearl-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-Light.woff2 -------------------------------------------------------------------------------- /webfont/FakePearl-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-Medium.woff -------------------------------------------------------------------------------- /webfont/FakePearl-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-Medium.woff2 -------------------------------------------------------------------------------- /webfont/FakePearl-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-Regular.woff -------------------------------------------------------------------------------- /webfont/FakePearl-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-Regular.woff2 -------------------------------------------------------------------------------- /webfont/FakePearl-SemiBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-SemiBold.woff -------------------------------------------------------------------------------- /webfont/FakePearl-SemiBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/max32002/FakePearl/1bb7821c84f2b01de550816a686dc8b745744cc9/webfont/FakePearl-SemiBold.woff2 --------------------------------------------------------------------------------