├── .gitignore ├── LICENSE ├── README.md ├── fonts ├── otf │ ├── ZhudouSans-Bold.otf │ ├── ZhudouSans-ExtraLight.otf │ ├── ZhudouSans-Heavy.otf │ ├── ZhudouSans-Light.otf │ ├── ZhudouSans-Medium.otf │ ├── ZhudouSans-Normal.otf │ └── ZhudouSans-Regular.otf ├── ttf │ ├── ZhudouSans-Bold.ttf │ ├── ZhudouSans-ExtraLight.ttf │ ├── ZhudouSans-Heavy.ttf │ ├── ZhudouSans-Light.ttf │ ├── ZhudouSans-Medium.ttf │ ├── ZhudouSans-Normal.ttf │ └── ZhudouSans-Regular.ttf ├── variable │ └── ZhudouSansVF.ttf └── webfont │ ├── ZhudouSans-Bold.woff │ ├── ZhudouSans-Bold.woff2 │ ├── ZhudouSans-ExtraLight.woff │ ├── ZhudouSans-ExtraLight.woff2 │ ├── ZhudouSans-Heavy.woff │ ├── ZhudouSans-Heavy.woff2 │ ├── ZhudouSans-Light.woff │ ├── ZhudouSans-Light.woff2 │ ├── ZhudouSans-Medium.woff │ ├── ZhudouSans-Medium.woff2 │ ├── ZhudouSans-Normal.woff │ ├── ZhudouSans-Normal.woff2 │ ├── ZhudouSans-Regular.woff │ ├── ZhudouSans-Regular.woff2 │ ├── ZhudouSansVF.woff │ └── ZhudouSansVF.woff2 ├── images ├── Title.dark.svg ├── Title.light.svg ├── ccmp.dark.svg ├── ccmp.light.svg ├── cpct.dark.svg ├── cpct.light.svg ├── dlig.dark.svg ├── dlig.light.svg ├── fwid-hwid-pwid.dark.svg ├── fwid-hwid-pwid.light.svg ├── kern.dark.svg ├── kern.light.svg ├── locl.dark.svg ├── locl.light.svg ├── ss02.dark.svg ├── ss02.light.svg ├── zero.dark.svg └── zero.light.svg └── source ├── Zhudou Sans 1.000.fcp └── Zhudou Sans.glyphs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | *(Autosaved).* 4 | *(自动存储).* -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | Copyright © 2022 Buernia (https://github.com/Buernia), with Reserved Font Name 'Zhudou' and '煮豆'. 2 | Portions Copyright © 2014-2021 Adobe (http://www.adobe.com/), with Reserved Font Name 'Source'. 3 | Portions Copyright © 2015 Google Inc. 4 | 5 | This Font Software is licensed under the SIL Open Font License, Version 1.1. 6 | This license is copied below, and is also available with a FAQ at: 7 | http://scripts.sil.org/OFL 8 | 9 | 10 | ----------------------------------------------------------- 11 | SIL OPEN FONT LICENSE Version 1.1 - 26 February 2007 12 | ----------------------------------------------------------- 13 | 14 | PREAMBLE 15 | The goals of the Open Font License (OFL) are to stimulate worldwide 16 | development of collaborative font projects, to support the font creation 17 | efforts of academic and linguistic communities, and to provide a free and 18 | open framework in which fonts may be shared and improved in partnership 19 | with others. 20 | 21 | The OFL allows the licensed fonts to be used, studied, modified and 22 | redistributed freely as long as they are not sold by themselves. The 23 | fonts, including any derivative works, can be bundled, embedded, 24 | redistributed and/or sold with any software provided that any reserved 25 | names are not used by derivative works. The fonts and derivatives, 26 | however, cannot be released under any other type of license. The 27 | requirement for fonts to remain under this license does not apply 28 | to any document created using the fonts or their derivatives. 29 | 30 | DEFINITIONS 31 | "Font Software" refers to the set of files released by the Copyright 32 | Holder(s) under this license and clearly marked as such. This may 33 | include source files, build scripts and documentation. 34 | 35 | "Reserved Font Name" refers to any names specified as such after the 36 | copyright statement(s). 37 | 38 | "Original Version" refers to the collection of Font Software components as 39 | distributed by the Copyright Holder(s). 40 | 41 | "Modified Version" refers to any derivative made by adding to, deleting, 42 | or substituting -- in part or in whole -- any of the components of the 43 | Original Version, by changing formats or by porting the Font Software to a 44 | new environment. 45 | 46 | "Author" refers to any designer, engineer, programmer, technical 47 | writer or other person who contributed to the Font Software. 48 | 49 | PERMISSION & CONDITIONS 50 | Permission is hereby granted, free of charge, to any person obtaining 51 | a copy of the Font Software, to use, study, copy, merge, embed, modify, 52 | redistribute, and sell modified and unmodified copies of the Font 53 | Software, subject to the following conditions: 54 | 55 | 1) Neither the Font Software nor any of its individual components, 56 | in Original or Modified Versions, may be sold by itself. 57 | 58 | 2) Original or Modified Versions of the Font Software may be bundled, 59 | redistributed and/or sold with any software, provided that each copy 60 | contains the above copyright notice and this license. These can be 61 | included either as stand-alone text files, human-readable headers or 62 | in the appropriate machine-readable metadata fields within text or 63 | binary files as long as those fields can be easily viewed by the user. 64 | 65 | 3) No Modified Version of the Font Software may use the Reserved Font 66 | Name(s) unless explicit written permission is granted by the corresponding 67 | Copyright Holder. This restriction only applies to the primary font name as 68 | presented to the users. 69 | 70 | 4) The name(s) of the Copyright Holder(s) or the Author(s) of the Font 71 | Software shall not be used to promote, endorse or advertise any 72 | Modified Version, except to acknowledge the contribution(s) of the 73 | Copyright Holder(s) and the Author(s) or with their explicit written 74 | permission. 75 | 76 | 5) The Font Software, modified or unmodified, in part or in whole, 77 | must be distributed entirely under this license, and must not be 78 | distributed under any other license. The requirement for fonts to 79 | remain under this license does not apply to any document created 80 | using the Font Software. 81 | 82 | TERMINATION 83 | This license becomes null and void if any of the above conditions are 84 | not met. 85 | 86 | DISCLAIMER 87 | THE FONT SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 88 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO ANY WARRANTIES OF 89 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT 90 | OF COPYRIGHT, PATENT, TRADEMARK, OR OTHER RIGHT. IN NO EVENT SHALL THE 91 | COPYRIGHT HOLDER BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, 92 | INCLUDING ANY GENERAL, SPECIAL, INDIRECT, INCIDENTAL, OR CONSEQUENTIAL 93 | DAMAGES, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING 94 | FROM, OUT OF THE USE OR INABILITY TO USE THE FONT SOFTWARE OR FROM 95 | OTHER DEALINGS IN THE FONT SOFTWARE. 96 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # 煮豆黑体 Zhudou Sans 2 | 3 | 煮豆黑体是衍生自 [Noto Sans](https://github.com/googlefonts/noto-fonts) 和[思源黑体](https://github.com/adobe-fonts/source-han-sans)的标点符号字体家族,支持中日韩标点、全角字母、全角数字及一些特殊符号。标点造型主要来源于 Noto Sans,可以为类似风格的西文字体带来更加协调的中外文混排效果。 4 | 5 | 本字体为可变字体,支持字重无级变化,同时提供对应思源黑体7个字重的静态版本。 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | > 样张文本选自马王堆汉墓帛书《老子》甲本、[《请颁行新式标点符号议案(修正案)》](https://zh.wikisource.org/wiki/%E8%AB%8B%E9%A0%92%E8%A1%8C%E6%96%B0%E5%BC%8F%E6%A8%99%E9%BB%9E%E7%AC%A6%E8%99%9F%E8%AD%B0%E6%A1%88%EF%BC%88%E4%BF%AE%E6%AD%A3%E6%A1%88%EF%BC%89)、1951年[《标点符号用法》](https://zh.wikisource.org/wiki/%E6%A8%99%E9%BB%9E%E7%AC%A6%E8%99%9F%E7%94%A8%E6%B3%95_(1951%E5%B9%B4))和日文维基百科条目[《約物》](https://ja.wikipedia.org/w/index.php?title=%E7%B4%84%E7%89%A9&oldid=86255058) 14 | > 15 | > 样张使用的中日文字体为思源黑体 16 | 17 | ## 字符支持 18 | 19 | * 现代中日韩标点符号 20 | * 古汉语钩识号(𖿢,`U+16FE2`)和重文号(𖿣,`U+16FE3`) 21 | * 全角字母、数字 22 | * 7个知识共享(Creative Commons)许可图标(⊜🄍🄎🄏🅭🅮🅯,`U+229C`、`U+1F10D`—`U+1F10F`、`U+1F16D`—`U+1F16F`) 23 | * 6个中国传统吉祥图案(🉠🉡🉢🉣🉤🉥,`U+1F260`—`U+1F265`) 24 | 25 | ⚠**注意:本字体不包含汉字、假名、谚文、一般西文和数字,请和其他字体搭配使用。** 26 | 27 | ## 排版功能 28 | 29 | 本字体支持以下 OpenType 排版特性: 30 | 31 | * **替代半角宽度**(`halt`、`vhal`) 32 | 33 | 将所有标点符号的宽度设置为半角。 34 | 35 | * **自选连字**(`dlig`) 36 | 37 | 将 “??” “?!” “!?” “!!” 组合成 “⁇” “⁈” “⁉” “‼” 合字。可在软件 OpenType 功能菜单中选择 “自由连字”(Adobe)或 “历史和任意连字”(Word)以开启该功能。 38 | 39 | 40 | 41 | 42 | 43 | 44 | * **全角、半角与比例宽度字形**(`fwid`、`hwid`、`pwid`) 45 | 46 | 弯引号有全角、半角、比例(Adobe 误译为 “等比宽度”)3种宽度的字形,连接号和间隔号有全角、半角2种宽度的字形。Adobe 软件可在 “字形” 面板中选择相应字形。 47 | 48 | 49 | 50 | 51 | 52 | 53 | * **破折号连字**(`ccmp`) 54 | 55 | 将2个 “—”(`U+2014`)组成一个完整的破折号,将3个 “—” 组成一个占3字宽的长横。默认开启。 56 | 57 | 58 | 59 | 60 | 61 | 62 | * **标点挤压**(`kern`、`vkrn`) 63 | 64 | 压缩连续出现的标点符号所占空间。默认开启,可在软件字距微调菜单中关闭。在 InDesign 等专业排版软件中建议关闭(选择 “原始设定-仅罗马字”,确保西文字母间距微调不受影响),改用软件内的标点挤压功能。 65 | 66 | 67 | 68 | 69 | 70 | 71 | > 文本选自《请颁行新式标点符号议案(修正案)》 72 | 73 | * **地区字形**(`locl`) 74 | 75 | 本字体默认采用中国内地标点规范,可在软件(如 Word 和 InDesign)或网页中将文本标记为相应语言以采用港澳台、日本或韩国规范。 76 | 77 | 78 | 79 | 80 | 81 | 82 | > 文本选自1951年《标点符号用法》 83 | 84 | * **斜杠0**(`zero`) 85 | 86 | 将全角数字0更改为斜杠0︀(Adobe 称 “斜线零”)字形。 87 | 88 | 89 | 90 | 91 | 92 | 93 | * **竖排字形**(`vert`) 94 | 95 | 在竖排文本中使用相应的标点形式,默认开启。 96 | 97 | * **居中标点**(`cpct`、`ss01`) 98 | 99 | 将顿号、句号、叹号、逗号、句点、冒号、分号、问号居中。可在软件 OpenType 功能菜单中选择 “居中中日韩标点” 风格组合(Adobe)或 “样式集1”(Word)以开启该功能。 100 | 101 | 102 | 103 | 104 | 105 | 106 | * **蝌蚪形逗号**(`ss02`)**(新特性!)** 107 | 108 | 将逗号、分号和引号的字形改为蝌蚪形。可在软件 OpenType 功能菜单中选择 “蝌蚪逗号” 风格组合(Adobe)或 “样式集2”(Word)以开启该功能。 109 | 110 | 111 | 112 | 113 | 114 | 115 | 此外,本字体亦支持变体选择符(Variation Selector,VS)功能,在相应字符后输入变体选择符 VS01(`U+FE00`)或 VS02(`U+FE01`)即可强制将该字符显示为规定的变体字形。本字体支持以下 Unicode 定义的标点符号和数字变体字形: 116 | 117 | | 字符 | 顿号`U+3001` | 句号`U+3002` | 叹号`U+FF01` | 逗号`U+FF0C` | 句点`U+FF0E` | 全角数字0 `U+FF10` | 冒号`U+FF1A` | 分号`U+FF1B` | 问号`U+FF1F` | 118 | | -------- | ---------- | ---------- | ---------- | ---------- | ---------- | ----------- | ---------- | ---------- | ---------- | 119 | | VS01 `U+FE00` | 、︀(偏靠) | 。︀(偏靠) | !︀(偏靠) | ,︀(偏靠) | .︀(偏靠) | 0︀(斜杠0) | :︀(偏靠) | ;︀(偏靠) | ?︀(偏靠) | 120 | | VS02 `U+FE01` | 、︁(居中) | 。︁(居中) | !︁(居中) | ,︁(居中) | .︁(居中) | 不适用 | :︁(居中) | ;︁(居中) | ?︁(居中) | 121 | 122 | 上表中的符号可直接复制粘贴使用。 123 | 124 | ## 授权信息 125 | 126 | 本字体以《SIL 开源字体许可证》1.1版(SIL Open Font License 1.1,OFL)授权,可以自由使用(包括商用)、传播、修改,但不能单独出售字体文件。此外,修改版本不可使用本字体的保留名称 “Zhudou” 和 “煮豆”,且必须同样以《OFL》授权。详细信息请参见 https://scripts.sil.org/OFL 。 127 | 128 | ## 致谢 129 | 130 | 感谢[绵云饴里](https://github.com/MY1L)优化传统吉祥图案的轮廓。 131 | 132 | ## 联系作者 133 | 134 | * **Twitter**:[@Buernia](https://twitter.com/Buernia) 135 | * **新浪微博**:[@奈白不弍](https://weibo.com/p/1005055835431520) 136 | * **Email**:buernia在foxmail.com(在→@) 137 | 138 | 关于本字体的意见或问题,建议在本项目的 [Issues 页面](https://github.com/Buernia/Zhudou-Sans/issues)提出。 139 | 140 | ## 其他项目 141 | 142 | * [铁蒺藜体 Tiejili](https://github.com/Buernia/Tiejili) 143 | 144 | -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-Bold.otf -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-ExtraLight.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-ExtraLight.otf -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-Heavy.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-Heavy.otf -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-Light.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-Light.otf -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-Medium.otf -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-Normal.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-Normal.otf -------------------------------------------------------------------------------- /fonts/otf/ZhudouSans-Regular.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/otf/ZhudouSans-Regular.otf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-Bold.ttf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-ExtraLight.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-ExtraLight.ttf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-Heavy.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-Heavy.ttf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-Light.ttf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-Medium.ttf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-Normal.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-Normal.ttf -------------------------------------------------------------------------------- /fonts/ttf/ZhudouSans-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/ttf/ZhudouSans-Regular.ttf -------------------------------------------------------------------------------- /fonts/variable/ZhudouSansVF.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/variable/ZhudouSansVF.ttf -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Bold.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Bold.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-ExtraLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-ExtraLight.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-ExtraLight.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-ExtraLight.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Heavy.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Heavy.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Heavy.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Heavy.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Light.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Light.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Light.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Medium.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Medium.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Normal.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Normal.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Normal.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Normal.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Regular.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Regular.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSans-Regular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSans-Regular.woff2 -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSansVF.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSansVF.woff -------------------------------------------------------------------------------- /fonts/webfont/ZhudouSansVF.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/fonts/webfont/ZhudouSansVF.woff2 -------------------------------------------------------------------------------- /images/ccmp.dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/ccmp.light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/cpct.dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/cpct.light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/dlig.dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/dlig.light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/fwid-hwid-pwid.dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/fwid-hwid-pwid.light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/ss02.dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/ss02.light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 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 | -------------------------------------------------------------------------------- /images/zero.dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /images/zero.light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | -------------------------------------------------------------------------------- /source/Zhudou Sans 1.000.fcp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Buernia/Zhudou-Sans/61f340baca1511a7e82f6220afc16e6c119d023f/source/Zhudou Sans 1.000.fcp --------------------------------------------------------------------------------