tangled
alpha
login
or
join now
leaflet.pub
/
leaflet
289
fork
atom
a tool for shared writing and social publishing
289
fork
atom
overview
issues
28
pulls
pipelines
add fonts
awarm.space
1 month ago
a1d30fc9
83049703
+78
1 changed file
expand all
collapse all
unified
split
src
fonts.ts
+78
src/fonts.ts
···
113
113
googleFontsFamily: "Space+Mono:ital,wght@0,400;0,700;1,400;1,700",
114
114
fallback: ["monospace"],
115
115
},
116
116
+
117
117
+
// Additional Google Fonts - Mono
118
118
+
"sometype-mono": {
119
119
+
id: "sometype-mono",
120
120
+
displayName: "Sometype Mono",
121
121
+
fontFamily: "Sometype Mono",
122
122
+
type: "google",
123
123
+
googleFontsFamily: "Sometype+Mono:ital,wght@0,400;0,700;1,400;1,700",
124
124
+
fallback: ["monospace"],
125
125
+
},
126
126
+
127
127
+
// Additional Google Fonts - Sans
128
128
+
"pt-sans": {
129
129
+
id: "pt-sans",
130
130
+
displayName: "PT Sans",
131
131
+
fontFamily: "PT Sans",
132
132
+
type: "google",
133
133
+
googleFontsFamily: "PT+Sans:ital,wght@0,400;0,700;1,400;1,700",
134
134
+
fallback: ["system-ui", "sans-serif"],
135
135
+
},
136
136
+
montserrat: {
137
137
+
id: "montserrat",
138
138
+
displayName: "Montserrat",
139
139
+
fontFamily: "Montserrat",
140
140
+
type: "google",
141
141
+
googleFontsFamily: "Montserrat:ital,wght@0,400;0,700;1,400;1,700",
142
142
+
fallback: ["system-ui", "sans-serif"],
143
143
+
},
144
144
+
"alegreya-sans": {
145
145
+
id: "alegreya-sans",
146
146
+
displayName: "Alegreya Sans",
147
147
+
fontFamily: "Alegreya Sans",
148
148
+
type: "google",
149
149
+
googleFontsFamily: "Alegreya+Sans:ital,wght@0,400;0,700;1,400;1,700",
150
150
+
fallback: ["system-ui", "sans-serif"],
151
151
+
},
152
152
+
153
153
+
// Additional Google Fonts - Serif
154
154
+
"pt-serif": {
155
155
+
id: "pt-serif",
156
156
+
displayName: "PT Serif",
157
157
+
fontFamily: "PT Serif",
158
158
+
type: "google",
159
159
+
googleFontsFamily: "PT+Serif:ital,wght@0,400;0,700;1,400;1,700",
160
160
+
fallback: ["Georgia", "serif"],
161
161
+
},
162
162
+
"crimson-text": {
163
163
+
id: "crimson-text",
164
164
+
displayName: "Crimson Text",
165
165
+
fontFamily: "Crimson Text",
166
166
+
type: "google",
167
167
+
googleFontsFamily: "Crimson+Text:ital,wght@0,400;0,700;1,400;1,700",
168
168
+
fallback: ["Georgia", "serif"],
169
169
+
},
170
170
+
cardo: {
171
171
+
id: "cardo",
172
172
+
displayName: "Cardo",
173
173
+
fontFamily: "Cardo",
174
174
+
type: "google",
175
175
+
googleFontsFamily: "Cardo:ital,wght@0,400;0,700;1,400",
176
176
+
fallback: ["Georgia", "serif"],
177
177
+
},
178
178
+
"ibm-plex-serif": {
179
179
+
id: "ibm-plex-serif",
180
180
+
displayName: "IBM Plex Serif",
181
181
+
fontFamily: "IBM Plex Serif",
182
182
+
type: "google",
183
183
+
googleFontsFamily: "IBM+Plex+Serif:ital,wght@0,400;0,700;1,400;1,700",
184
184
+
fallback: ["Georgia", "serif"],
185
185
+
},
186
186
+
"source-serif": {
187
187
+
id: "source-serif",
188
188
+
displayName: "Source Serif 4",
189
189
+
fontFamily: "Source Serif 4",
190
190
+
type: "google",
191
191
+
googleFontsFamily: "Source+Serif+4:ital,wght@0,400;0,700;1,400;1,700",
192
192
+
fallback: ["Georgia", "serif"],
193
193
+
},
116
194
};
117
195
118
196
export const defaultFontId = "quattro";