-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathfont.js
More file actions
185 lines (184 loc) · 3.9 KB
/
font.js
File metadata and controls
185 lines (184 loc) · 3.9 KB
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
const fonts = [
"Arial",
"Calibri",
"Cambria",
"Cambria Math",
"Candara",
"Comic Sans MS",
"Comic Sans MS Bold",
"Comic Sans",
"Consolas",
"Constantia",
"Corbel",
"Courier New",
"Caurier Regular",
"Ebrima",
"Fixedsys Regular",
"Franklin Gothic",
"Gabriola Regular",
"Gadugi",
"Georgia",
"HoloLens MDL2 Assets Regular",
"Impact Regular",
"Javanese Text Regular",
"Leelawadee UI",
"Lucida Console Regular",
"Lucida Sans Unicode Regular",
"Malgun Gothic",
"Microsoft Himalaya Regular",
"Microsoft JhengHei",
"Microsoft JhengHei UI",
"Microsoft PhangsPa",
"Microsoft Sans Serif Regular",
"Microsoft Tai Le",
"Microsoft YaHei",
"Microsoft YaHei UI",
"Microsoft Yi Baiti Regular",
"MingLiU_HKSCS-ExtB Regular",
"MingLiu-ExtB Regular",
"Modern Regular",
"Mongolia Baiti Regular",
"MS Gothic Regular",
"MS PGothic Regular",
"MS Sans Serif Regular",
"MS Serif Regular",
"MS UI Gothic Regular",
"MV Boli Regular",
"Myanmar Text",
"Nimarla UI",
"MV Boli Regular",
"Myanmar Tet",
"Nirmala UI",
"NSimSun Regular",
"Palatino Linotype",
"PMingLiU-ExtB Regular",
"Roman Regular",
"Script Regular",
"Segoe MDL2 Assets Regular",
"Segoe Print",
"Segoe Script",
"Segoe UI",
"Segoe UI Emoji Regular",
"Segoe UI Historic Regular",
"Segoe UI Symbol Regular",
"SimSun Regular",
"SimSun-ExtB Regular",
"Sitka Banner",
"Sitka Display",
"Sitka Heading",
"Sitka Small",
"Sitka Subheading",
"Sitka Text",
"Small Fonts Regular",
"Sylfaen Regular",
"Symbol Regular",
"System Bold",
"Tahoma",
"Terminal",
"Times New Roman",
"Trebuchet MS",
"Verdana",
"Webdings Regular",
"Wingdings Regular",
"Yu Gothic",
"Yu Gothic UI",
"Arial",
"Arial Black",
"Calibri",
"Calibri Light",
"Cambria",
"Cambria Math",
"Candara",
"Comic Sans MS",
"Consolas",
"Constantia",
"Corbel",
"Courier",
"Courier New",
"Ebrima",
"Fixedsys",
"Franklin Gothic Medium",
"Gabriola",
"Gadugi",
"Georgia",
"HoloLens MDL2 Assets",
"Impact",
"Javanese Text",
"Leelawadee UI",
"Leelawadee UI Semilight",
"Lucida Console",
"Lucida Sans Unicode",
"MS Gothic",
"MS PGothic",
"MS Sans Serif",
"MS Serif",
"MS UI Gothic",
"MV Boli",
"Malgun Gothic",
"Malgun Gothic Semilight",
"Marlett",
"Microsoft Himalaya",
"Microsoft JhengHei",
"Microsoft JhengHei Light",
"Microsoft JhengHei UI",
"Microsoft JhengHei UI Light",
"Microsoft New Tai Lue",
"Microsoft PhagsPa",
"Microsoft Sans Serif",
"Microsoft Tai Le",
"Microsoft YaHei",
"Microsoft YaHei Light",
"Microsoft YaHei UI",
"Microsoft YaHei UI Light",
"Microsoft Yi Baiti",
"MingLiU-ExtB",
"MingLiU_HKSCS-ExtB",
"Modern",
"Mongolian Baiti",
"Myanmar Text",
"NSimSun",
"Nirmala UI",
"Nirmala UI Semilight",
"PMingLiU-ExtB",
"Palatino Linotype",
"Roman",
"Script",
"Segoe MDL2 Assets",
"Segoe Print",
"Segoe Script",
"Segoe UI",
"Segoe UI Black",
"Segoe UI Emoji",
"Segoe UI Historic",
"Segoe UI Light",
"Segoe UI Semibold",
"Segoe UI Semilight",
"Segoe UI Symbol",
"SimSun",
"SimSun-ExtB",
"Sitka Banner",
"Sitka Display",
"Sitka Heading",
"Sitka Small",
"Sitka Subheading",
"Sitka Text",
"Small Fonts",
"Sylfaen",
"Symbol",
"System",
"Tahoma",
"Terminal",
"Times New Roman",
"Trebuchet MS",
"Verdana",
"Webdings",
"Wingdings",
"Yu Gothic",
"Yu Gothic Light",
"Yu Gothic Medium",
"Yu Gothic UI",
"Yu Gothic UI Light",
"Yu Gothic UI Semibold",
"Yu Gothic UI Semilight"
];
module.exports = fonts;