@peteai/presentation-editor 0.0.2 → 0.0.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +2 -2
- package/dist/components/presentation-editor/active-layers-buttons.svelte +53 -0
- package/dist/components/presentation-editor/active-layers-buttons.svelte.d.ts +3 -0
- package/dist/components/presentation-editor/active-layers.svelte +181 -0
- package/dist/components/presentation-editor/active-layers.svelte.d.ts +3 -0
- package/dist/components/presentation-editor/color-indicator/color-indicator-gradient-def.svelte +81 -0
- package/dist/components/presentation-editor/color-indicator/color-indicator-gradient-def.svelte.d.ts +9 -0
- package/dist/components/presentation-editor/color-indicator/color-indicator-gradient.svelte +21 -0
- package/dist/components/presentation-editor/color-indicator/color-indicator-gradient.svelte.d.ts +8 -0
- package/dist/components/presentation-editor/color-indicator/color-indicator.svelte +23 -0
- package/dist/components/presentation-editor/color-indicator/color-indicator.svelte.d.ts +6 -0
- package/dist/components/presentation-editor/color-indicator/index.d.ts +4 -0
- package/dist/components/presentation-editor/color-indicator/index.js +6 -0
- package/dist/components/presentation-editor/cursor-tooltip.svelte +1 -1
- package/dist/components/presentation-editor/dragged.svelte +21 -11
- package/dist/components/presentation-editor/fonts.d.ts +3 -0
- package/dist/components/presentation-editor/fonts.js +1278 -0
- package/dist/components/presentation-editor/header.svelte +21 -33
- package/dist/components/presentation-editor/header.svelte.d.ts +16 -6
- package/dist/components/presentation-editor/hotkeys.svelte +85 -0
- package/dist/components/presentation-editor/{sidebar/layers.svelte.d.ts → hotkeys.svelte.d.ts} +3 -3
- package/dist/components/presentation-editor/layers/active-background-border.svelte +3 -7
- package/dist/components/presentation-editor/layers/active-layer-border.svelte +2 -5
- package/dist/components/presentation-editor/layers/active-layer-border.svelte.d.ts +0 -1
- package/dist/components/presentation-editor/layers/buttons/border-button/border-button.svelte +113 -129
- package/dist/components/presentation-editor/layers/buttons/border-button/border-button.svelte.d.ts +2 -2
- package/dist/components/presentation-editor/layers/buttons/corner-radius-button/corner-radius-button.svelte +51 -32
- package/dist/components/presentation-editor/layers/buttons/corner-radius-button/corner-radius-button.svelte.d.ts +2 -2
- package/dist/components/presentation-editor/layers/buttons/flip-button/flip-button.svelte +30 -7
- package/dist/components/presentation-editor/layers/buttons/flip-button/flip-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/buttons/opacity-button/opacity-button.svelte +76 -33
- package/dist/components/presentation-editor/layers/buttons/opacity-button/opacity-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/controls/corner-scale-control/corner-scale-control.svelte +89 -59
- package/dist/components/presentation-editor/layers/controls/corner-scale-control/corner-scale-control.svelte.d.ts +5 -100
- package/dist/components/presentation-editor/layers/controls/group-resize-control/group-resize-control.svelte +337 -0
- package/dist/components/presentation-editor/layers/controls/group-resize-control/group-resize-control.svelte.d.ts +104 -0
- package/dist/components/presentation-editor/layers/controls/group-resize-control/index.d.ts +2 -0
- package/dist/components/presentation-editor/layers/controls/group-resize-control/index.js +4 -0
- package/dist/components/presentation-editor/layers/controls/rotate-control/rotate-control.svelte +128 -43
- package/dist/components/presentation-editor/layers/controls/rotate-control/rotate-control.svelte.d.ts +1 -5
- package/dist/components/presentation-editor/layers/controls/side-resize-control/side-resize-control.svelte +68 -57
- package/dist/components/presentation-editor/layers/controls/side-resize-control/side-resize-control.svelte.d.ts +2 -110
- package/dist/components/presentation-editor/layers/controls/side-scale-control/side-scale-control.svelte +45 -32
- package/dist/components/presentation-editor/layers/controls/side-scale-control/side-scale-control.svelte.d.ts +2 -54
- package/dist/components/presentation-editor/layers/index.d.ts +4 -5
- package/dist/components/presentation-editor/layers/index.js +7 -8
- package/dist/components/presentation-editor/layers/layer-button.svelte +25 -7
- package/dist/components/presentation-editor/layers/layer-wrapper.svelte +212 -162
- package/dist/components/presentation-editor/layers/layer-wrapper.svelte.d.ts +2 -2
- package/dist/components/presentation-editor/layers/types/background/background-content-image.svelte +41 -0
- package/dist/components/presentation-editor/layers/types/background/background-content-image.svelte.d.ts +8 -0
- package/dist/components/presentation-editor/layers/types/background/background-layer-buttons.svelte +28 -74
- package/dist/components/presentation-editor/layers/types/background/background-layer-buttons.svelte.d.ts +2 -17
- package/dist/components/presentation-editor/layers/types/background/background-layer-content.svelte +19 -0
- package/dist/components/presentation-editor/layers/types/background/background-layer-content.svelte.d.ts +8 -0
- package/dist/components/presentation-editor/layers/types/background/background-layer.svelte +69 -61
- package/dist/components/presentation-editor/layers/types/background/background-layer.svelte.d.ts +2 -3
- package/dist/components/presentation-editor/layers/types/background/index.d.ts +2 -3
- package/dist/components/presentation-editor/layers/types/background/index.js +2 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/alignment-button/alignment-button.svelte +55 -12
- package/dist/components/presentation-editor/layers/types/html/buttons/alignment-button/alignment-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/bold-button/bold-button.svelte +60 -8
- package/dist/components/presentation-editor/layers/types/html/buttons/bold-button/bold-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/case-button/case-button.svelte +59 -24
- package/dist/components/presentation-editor/layers/types/html/buttons/case-button/case-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/color-button/color-button.svelte +27 -76
- package/dist/components/presentation-editor/layers/types/html/buttons/color-button/color-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/font-family-button/font-family-button.svelte +36 -0
- package/dist/components/presentation-editor/layers/types/html/buttons/font-family-button/font-family-button.svelte.d.ts +7 -0
- package/dist/components/presentation-editor/layers/types/html/buttons/font-family-button/index.d.ts +2 -0
- package/dist/components/presentation-editor/layers/types/html/buttons/font-family-button/index.js +2 -0
- package/dist/components/presentation-editor/layers/types/html/buttons/font-size-button/font-size-button.svelte +72 -29
- package/dist/components/presentation-editor/layers/types/html/buttons/font-size-button/font-size-button.svelte.d.ts +3 -5
- package/dist/components/presentation-editor/layers/types/html/buttons/italic-button/italic-button.svelte +60 -8
- package/dist/components/presentation-editor/layers/types/html/buttons/italic-button/italic-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/list-button/list-button.svelte +71 -18
- package/dist/components/presentation-editor/layers/types/html/buttons/list-button/list-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/strikethrough-button/strikethrough-button.svelte +54 -8
- package/dist/components/presentation-editor/layers/types/html/buttons/strikethrough-button/strikethrough-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/buttons/underline-button/underline-button.svelte +54 -9
- package/dist/components/presentation-editor/layers/types/html/buttons/underline-button/underline-button.svelte.d.ts +3 -3
- package/dist/components/presentation-editor/layers/types/html/editor/createEditor.js +2 -2
- package/dist/components/presentation-editor/layers/types/html/editor/utils.d.ts +11 -0
- package/dist/components/presentation-editor/layers/types/html/editor/utils.js +88 -0
- package/dist/components/presentation-editor/layers/types/html/extensions/font-family/font-family.d.ts +27 -0
- package/dist/components/presentation-editor/layers/types/html/extensions/font-family/font-family.js +40 -0
- package/dist/components/presentation-editor/layers/types/html/extensions/font-family/index.d.ts +3 -0
- package/dist/components/presentation-editor/layers/types/html/extensions/font-family/index.js +3 -0
- package/dist/components/presentation-editor/layers/types/html/extensions/font-size/font-size.d.ts +5 -1
- package/dist/components/presentation-editor/layers/types/html/extensions/font-size/font-size.js +3 -7
- package/dist/components/presentation-editor/layers/types/html/extensions.d.ts +1 -0
- package/dist/components/presentation-editor/layers/types/html/extensions.js +56 -0
- package/dist/components/presentation-editor/layers/types/html/html-content.svelte +26 -5
- package/dist/components/presentation-editor/layers/types/html/html-layer-content.svelte +26 -0
- package/dist/components/presentation-editor/layers/types/html/html-layer-content.svelte.d.ts +9 -0
- package/dist/components/presentation-editor/layers/types/html/html-layer-edit.svelte +103 -0
- package/dist/components/presentation-editor/layers/types/html/html-layer-edit.svelte.d.ts +8 -0
- package/dist/components/presentation-editor/layers/types/html/html-layer.svelte +61 -53
- package/dist/components/presentation-editor/layers/types/html/index.d.ts +3 -5
- package/dist/components/presentation-editor/layers/types/html/index.js +3 -56
- package/dist/components/presentation-editor/layers/types/image/{image-content.svelte → image-layer-content.svelte} +11 -3
- package/dist/components/presentation-editor/layers/types/image/image-layer-content.svelte.d.ts +8 -0
- package/dist/components/presentation-editor/layers/types/image/image-layer.svelte +51 -21
- package/dist/components/presentation-editor/layers/types/image/index.d.ts +2 -4
- package/dist/components/presentation-editor/layers/types/image/index.js +2 -4
- package/dist/components/presentation-editor/layers/utils.d.ts +68 -9
- package/dist/components/presentation-editor/layers/utils.js +260 -25
- package/dist/components/presentation-editor/menu/background-menu-content.svelte +80 -0
- package/dist/components/presentation-editor/menu/background-menu-content.svelte.d.ts +9 -0
- package/dist/components/presentation-editor/menu/layer-menu-content.svelte +183 -0
- package/dist/components/presentation-editor/menu/layer-menu-content.svelte.d.ts +3 -0
- package/dist/components/presentation-editor/menu/slide-menu-content.svelte +67 -0
- package/dist/components/presentation-editor/menu/slide-menu-content.svelte.d.ts +9 -0
- package/dist/components/presentation-editor/presentation-editor.svelte +119 -175
- package/dist/components/presentation-editor/presentation-editor.svelte.js +597 -136
- package/dist/components/presentation-editor/sidebar/color-sidebar/color-sidebar-color.svelte +58 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/color-sidebar-color.svelte.d.ts +10 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/color-sidebar-gradient-picker.svelte +144 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/color-sidebar-gradient-picker.svelte.d.ts +7 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/color-sidebar.svelte +404 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/color-sidebar.svelte.d.ts +3 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/index.d.ts +2 -0
- package/dist/components/presentation-editor/sidebar/color-sidebar/index.js +2 -0
- package/dist/components/presentation-editor/sidebar/font-sidebar/font-sidebar-button.svelte +26 -0
- package/dist/components/presentation-editor/sidebar/font-sidebar/font-sidebar-button.svelte.d.ts +8 -0
- package/dist/components/presentation-editor/sidebar/font-sidebar/font-sidebar.svelte +216 -0
- package/dist/components/presentation-editor/sidebar/font-sidebar/font-sidebar.svelte.d.ts +3 -0
- package/dist/components/presentation-editor/sidebar/font-sidebar/index.d.ts +2 -0
- package/dist/components/presentation-editor/sidebar/font-sidebar/index.js +2 -0
- package/dist/components/presentation-editor/sidebar/position-slidebar.svelte +130 -0
- package/dist/components/presentation-editor/sidebar/position-slidebar.svelte.d.ts +18 -0
- package/dist/components/presentation-editor/sidebar/sidebar-text-tab-button.svelte +90 -0
- package/dist/components/presentation-editor/sidebar/sidebar-text-tab-button.svelte.d.ts +7 -0
- package/dist/components/presentation-editor/sidebar/sidebar-text-tab.svelte +82 -0
- package/dist/components/presentation-editor/sidebar/sidebar-text-tab.svelte.d.ts +18 -0
- package/dist/components/presentation-editor/sidebar/{images-library.svelte → sidebar-uploads-tab.svelte} +0 -1
- package/dist/components/presentation-editor/sidebar/sidebar-uploads-tab.svelte.d.ts +3 -0
- package/dist/components/presentation-editor/sidebar/sidebar-wrapper.svelte +25 -0
- package/dist/components/presentation-editor/sidebar/sidebar-wrapper.svelte.d.ts +7 -0
- package/dist/components/presentation-editor/sidebar/sidebar.svelte +71 -15
- package/dist/components/presentation-editor/sidebar/sidebar.svelte.d.ts +16 -5
- package/dist/components/presentation-editor/sidebar/uploads-image.svelte +28 -11
- package/dist/components/presentation-editor/slide-editor.svelte +20 -22
- package/dist/components/presentation-editor/slide-inner.svelte +19 -18
- package/dist/components/presentation-editor/slides-navigation/slide-preview.svelte +61 -52
- package/dist/components/presentation-editor/slides-navigation/slides-navigation.svelte +6 -8
- package/dist/components/presentation-editor/snapping-guides.svelte +3 -3
- package/dist/components/presentation-editor/types.d.ts +67 -27
- package/dist/components/presentation-editor/utils.d.ts +50 -1
- package/dist/components/presentation-editor/utils.js +101 -6
- package/dist/components/ui/button/button.svelte +3 -2
- package/dist/components/ui/button/button.svelte.d.ts +5 -82
- package/dist/components/ui/color-picker/color-picker-alpha-grid.svelte +43 -0
- package/dist/components/ui/color-picker/color-picker-alpha-grid.svelte.d.ts +8 -0
- package/dist/components/ui/color-picker/color-picker.svelte +344 -0
- package/dist/components/ui/color-picker/color-picker.svelte.d.ts +13 -0
- package/dist/components/ui/color-picker/index.d.ts +3 -0
- package/dist/components/ui/color-picker/index.js +5 -0
- package/dist/components/ui/context-menu/context-menu-shortcut.svelte +6 -3
- package/dist/components/ui/context-menu/context-menu-sub-trigger.svelte +1 -1
- package/dist/components/ui/dropdown-menu/dropdown-menu-item.svelte +1 -1
- package/dist/components/ui/dropdown-menu/dropdown-menu-shortcut.svelte +6 -3
- package/dist/components/ui/dropdown-menu/dropdown-menu-sub-trigger.svelte +1 -1
- package/dist/components/ui/infinite-loader/index.d.ts +4 -0
- package/dist/components/ui/infinite-loader/index.js +4 -0
- package/dist/components/ui/infinite-loader/infinite-loader-loop-tracker.d.ts +13 -0
- package/dist/components/ui/infinite-loader/infinite-loader-loop-tracker.js +44 -0
- package/dist/components/ui/infinite-loader/infinite-loader-state.svelte.d.ts +15 -0
- package/dist/components/ui/infinite-loader/infinite-loader-state.svelte.js +28 -0
- package/dist/components/ui/infinite-loader/infinite-loader.svelte +149 -0
- package/dist/components/ui/infinite-loader/infinite-loader.svelte.d.ts +17 -0
- package/dist/components/ui/input/input.svelte +1 -1
- package/dist/components/ui/slider/slider.svelte +20 -18
- package/dist/components/ui/tabs/index.d.ts +6 -0
- package/dist/components/ui/tabs/index.js +8 -0
- package/dist/components/ui/tabs/tabs-content.svelte +19 -0
- package/dist/components/ui/tabs/tabs-content.svelte.d.ts +4 -0
- package/dist/components/ui/tabs/tabs-list.svelte +19 -0
- package/dist/components/ui/tabs/tabs-list.svelte.d.ts +4 -0
- package/dist/components/ui/tabs/tabs-trigger.svelte +19 -0
- package/dist/components/ui/tabs/tabs-trigger.svelte.d.ts +4 -0
- package/dist/components/ui/toggle/toggle.svelte +3 -2
- package/dist/components/ui/toggle/toggle.svelte.d.ts +2 -46
- package/dist/plugin.js +3 -2
- package/dist/utils.d.ts +1 -0
- package/dist/utils.js +1 -0
- package/package.json +28 -25
- package/dist/components/presentation-editor/app.css +0 -12
- package/dist/components/presentation-editor/layers/hovered-layer.svelte +0 -34
- package/dist/components/presentation-editor/layers/hovered-layer.svelte.d.ts +0 -7
- package/dist/components/presentation-editor/layers/types/background/background-content.svelte +0 -11
- package/dist/components/presentation-editor/layers/types/background/background-content.svelte.d.ts +0 -7
- package/dist/components/presentation-editor/layers/types/background/background-layer-thumb.svelte +0 -12
- package/dist/components/presentation-editor/layers/types/background/background-layer-thumb.svelte.d.ts +0 -7
- package/dist/components/presentation-editor/layers/types/html/html-layer-active.svelte +0 -159
- package/dist/components/presentation-editor/layers/types/html/html-layer-active.svelte.d.ts +0 -8
- package/dist/components/presentation-editor/layers/types/html/html-layer-buttons.svelte +0 -42
- package/dist/components/presentation-editor/layers/types/html/html-layer-buttons.svelte.d.ts +0 -10
- package/dist/components/presentation-editor/layers/types/html/html-layer-thumb.svelte +0 -24
- package/dist/components/presentation-editor/layers/types/html/html-layer-thumb.svelte.d.ts +0 -8
- package/dist/components/presentation-editor/layers/types/image/image-content.svelte.d.ts +0 -8
- package/dist/components/presentation-editor/layers/types/image/image-layer-buttons.svelte +0 -21
- package/dist/components/presentation-editor/layers/types/image/image-layer-buttons.svelte.d.ts +0 -7
- package/dist/components/presentation-editor/layers/types/image/image-layer-thumb.svelte +0 -13
- package/dist/components/presentation-editor/layers/types/image/image-layer-thumb.svelte.d.ts +0 -8
- package/dist/components/presentation-editor/sidebar/images-library.svelte.d.ts +0 -3
- package/dist/components/presentation-editor/sidebar/layers.svelte +0 -94
- package/dist/components/presentation-editor/slides-navigation/buttons/slide-delete-button.svelte +0 -32
- package/dist/components/presentation-editor/slides-navigation/buttons/slide-delete-button.svelte.d.ts +0 -10
- package/dist/components/presentation-editor/slides-navigation/buttons/slide-duplicate-button.svelte +0 -34
- package/dist/components/presentation-editor/slides-navigation/buttons/slide-duplicate-button.svelte.d.ts +0 -10
|
@@ -0,0 +1,1278 @@
|
|
|
1
|
+
const googleFonts = [
|
|
2
|
+
'Roboto',
|
|
3
|
+
'Open Sans',
|
|
4
|
+
'Montserrat',
|
|
5
|
+
'Inter',
|
|
6
|
+
'Poppins',
|
|
7
|
+
'Lato',
|
|
8
|
+
'Oswald',
|
|
9
|
+
'Raleway',
|
|
10
|
+
'Nunito',
|
|
11
|
+
'Ubuntu',
|
|
12
|
+
'Rubik',
|
|
13
|
+
'Playfair Display',
|
|
14
|
+
'Merriweather',
|
|
15
|
+
'PT Sans',
|
|
16
|
+
'Work Sans',
|
|
17
|
+
'DM Sans',
|
|
18
|
+
'Lora',
|
|
19
|
+
'IBM Plex Sans',
|
|
20
|
+
'Fira Sans',
|
|
21
|
+
'Barlow',
|
|
22
|
+
'Inconsolata',
|
|
23
|
+
'PT Serif',
|
|
24
|
+
'Libre Franklin',
|
|
25
|
+
'Jost',
|
|
26
|
+
'Source Code Pro',
|
|
27
|
+
'Source Sans 3',
|
|
28
|
+
'Cabin',
|
|
29
|
+
'Anton',
|
|
30
|
+
'Dosis',
|
|
31
|
+
'Bitter',
|
|
32
|
+
'EB Garamond',
|
|
33
|
+
'Space Grotesk',
|
|
34
|
+
'Oxygen',
|
|
35
|
+
'Crimson Text',
|
|
36
|
+
'Pacifico',
|
|
37
|
+
'Lobster',
|
|
38
|
+
'Arvo',
|
|
39
|
+
'Caveat',
|
|
40
|
+
'Fjalla One',
|
|
41
|
+
'Abril Fatface',
|
|
42
|
+
'Urbanist',
|
|
43
|
+
'Shadows Into Light',
|
|
44
|
+
'Maven Pro',
|
|
45
|
+
'Varela Round',
|
|
46
|
+
'Fira Sans Condensed',
|
|
47
|
+
'Archivo Black',
|
|
48
|
+
'Be Vietnam Pro',
|
|
49
|
+
'Merriweather Sans',
|
|
50
|
+
'Permanent Marker',
|
|
51
|
+
'Indie Flower',
|
|
52
|
+
'IBM Plex Serif',
|
|
53
|
+
'Cinzel',
|
|
54
|
+
'Vollkorn',
|
|
55
|
+
'Catamaran',
|
|
56
|
+
'Bree Serif',
|
|
57
|
+
'Cormorant',
|
|
58
|
+
'Amiri',
|
|
59
|
+
'Orbitron',
|
|
60
|
+
'Sarabun',
|
|
61
|
+
'Bodoni Moda',
|
|
62
|
+
'Amatic SC',
|
|
63
|
+
'Great Vibes',
|
|
64
|
+
'Acme',
|
|
65
|
+
'Kalam',
|
|
66
|
+
'ABeeZee',
|
|
67
|
+
'Spectral',
|
|
68
|
+
'Alegreya Sans',
|
|
69
|
+
'Antic Slab',
|
|
70
|
+
'Encode Sans',
|
|
71
|
+
'Alegreya',
|
|
72
|
+
'Concert One',
|
|
73
|
+
'Righteous',
|
|
74
|
+
'Noticia Text',
|
|
75
|
+
'League Spartan',
|
|
76
|
+
'Tinos',
|
|
77
|
+
'Yanone Kaffeesatz',
|
|
78
|
+
'Prata',
|
|
79
|
+
'Chivo',
|
|
80
|
+
'Russo One',
|
|
81
|
+
'Changa',
|
|
82
|
+
'Patua One',
|
|
83
|
+
'Courgette',
|
|
84
|
+
'Roboto Serif',
|
|
85
|
+
'Parisienne',
|
|
86
|
+
'Sanchez',
|
|
87
|
+
'Cardo',
|
|
88
|
+
'Bangers',
|
|
89
|
+
'PT Sans Caption',
|
|
90
|
+
'Comic Neue',
|
|
91
|
+
'Gothic A1',
|
|
92
|
+
'JetBrains Mono',
|
|
93
|
+
'Martel',
|
|
94
|
+
'Yellowtail',
|
|
95
|
+
'Didact Gothic',
|
|
96
|
+
'Readex Pro',
|
|
97
|
+
'Merienda',
|
|
98
|
+
'Unbounded',
|
|
99
|
+
'Advent Pro',
|
|
100
|
+
'Luckiest Guy',
|
|
101
|
+
'Ubuntu Condensed',
|
|
102
|
+
'Francois One',
|
|
103
|
+
'Creepster',
|
|
104
|
+
'Kaushan Script',
|
|
105
|
+
'Gloria Hallelujah',
|
|
106
|
+
'Philosopher',
|
|
107
|
+
'Yantramanav',
|
|
108
|
+
'Gruppo',
|
|
109
|
+
'Onest',
|
|
110
|
+
'Crete Round',
|
|
111
|
+
'Libre Caslon Text',
|
|
112
|
+
'Old Standard TT',
|
|
113
|
+
'DM Serif Text',
|
|
114
|
+
'News Cycle',
|
|
115
|
+
'Atkinson Hyperlegible',
|
|
116
|
+
'Crimson Pro',
|
|
117
|
+
'Silkscreen',
|
|
118
|
+
'Unna',
|
|
119
|
+
'Alata',
|
|
120
|
+
'Courier Prime',
|
|
121
|
+
'Eczar',
|
|
122
|
+
'Paytone One',
|
|
123
|
+
'Sacramento',
|
|
124
|
+
'Cantarell',
|
|
125
|
+
'Quattrocento',
|
|
126
|
+
'Patrick Hand',
|
|
127
|
+
'Encode Sans Condensed',
|
|
128
|
+
'Rokkitt',
|
|
129
|
+
'Zeyada',
|
|
130
|
+
'Aleo',
|
|
131
|
+
'Tenor Sans',
|
|
132
|
+
'Sen',
|
|
133
|
+
'Red Hat Text',
|
|
134
|
+
'Allura',
|
|
135
|
+
'Sofia',
|
|
136
|
+
'Fugaz One',
|
|
137
|
+
'VT323',
|
|
138
|
+
'Syne',
|
|
139
|
+
'Josefin Slab',
|
|
140
|
+
'Fira Sans Extra Condensed',
|
|
141
|
+
'Khand',
|
|
142
|
+
'Special Elite',
|
|
143
|
+
'Berkshire Swash',
|
|
144
|
+
'Rock Salt',
|
|
145
|
+
'Quattrocento Sans',
|
|
146
|
+
'Architects Daughter',
|
|
147
|
+
'Yatra One',
|
|
148
|
+
'Staatliches',
|
|
149
|
+
'Tangerine',
|
|
150
|
+
'Baskervville',
|
|
151
|
+
'Krub',
|
|
152
|
+
'DM Mono',
|
|
153
|
+
'Kumbh Sans',
|
|
154
|
+
'Sofia Sans',
|
|
155
|
+
'Poiret One',
|
|
156
|
+
'Fredoka',
|
|
157
|
+
'Commissioner',
|
|
158
|
+
'Fraunces',
|
|
159
|
+
'Geologica',
|
|
160
|
+
'Neuton',
|
|
161
|
+
'Blinker',
|
|
162
|
+
'Hanken Grotesk',
|
|
163
|
+
'Epilogue',
|
|
164
|
+
'Gravitas One',
|
|
165
|
+
'Pathway Gothic One',
|
|
166
|
+
'Pridi',
|
|
167
|
+
'Cookie',
|
|
168
|
+
'Viga',
|
|
169
|
+
'Yeseva One',
|
|
170
|
+
'Gelasio',
|
|
171
|
+
'Hammersmith One',
|
|
172
|
+
'Literata',
|
|
173
|
+
'Antonio',
|
|
174
|
+
'Carter One',
|
|
175
|
+
'Cuprum',
|
|
176
|
+
'Baloo 2',
|
|
177
|
+
'Asap Condensed',
|
|
178
|
+
'Golos Text',
|
|
179
|
+
'Macondo',
|
|
180
|
+
'Ropa Sans',
|
|
181
|
+
'Neucha',
|
|
182
|
+
'Faustina',
|
|
183
|
+
'Instrument Sans',
|
|
184
|
+
'Secular One',
|
|
185
|
+
'Radio Canada',
|
|
186
|
+
'Oxanium',
|
|
187
|
+
'League Gothic',
|
|
188
|
+
'STIX Two Text',
|
|
189
|
+
'Alice',
|
|
190
|
+
'Bungee',
|
|
191
|
+
'Actor',
|
|
192
|
+
'Sorts Mill Goudy',
|
|
193
|
+
'Mr Dafoe',
|
|
194
|
+
'Handlee',
|
|
195
|
+
'Amaranth',
|
|
196
|
+
'Bai Jamjuree',
|
|
197
|
+
'Forum',
|
|
198
|
+
'PT Mono',
|
|
199
|
+
'Reenie Beanie',
|
|
200
|
+
'Itim',
|
|
201
|
+
'Homemade Apple',
|
|
202
|
+
'Sofia Sans Condensed',
|
|
203
|
+
'Alex Brush',
|
|
204
|
+
'Marck Script',
|
|
205
|
+
'Saira Semi Condensed',
|
|
206
|
+
'Fira Code',
|
|
207
|
+
'Gilda Display',
|
|
208
|
+
'Audiowide',
|
|
209
|
+
'Arsenal',
|
|
210
|
+
'Abhaya Libre',
|
|
211
|
+
'Rammetto One',
|
|
212
|
+
'Libre Bodoni',
|
|
213
|
+
'Vidaloka',
|
|
214
|
+
'Quantico',
|
|
215
|
+
'Sintony',
|
|
216
|
+
'Istok Web',
|
|
217
|
+
'Volkhov',
|
|
218
|
+
'Unica One',
|
|
219
|
+
'Playfair',
|
|
220
|
+
'Bad Script',
|
|
221
|
+
'Newsreader',
|
|
222
|
+
'Gudea',
|
|
223
|
+
'Ultra',
|
|
224
|
+
'Cousine',
|
|
225
|
+
'Italianno',
|
|
226
|
+
'Sriracha',
|
|
227
|
+
'Fira Mono',
|
|
228
|
+
'Playball',
|
|
229
|
+
'Nothing You Could Do',
|
|
230
|
+
'Andika',
|
|
231
|
+
'Pinyon Script',
|
|
232
|
+
'Anonymous Pro',
|
|
233
|
+
'Julius Sans One',
|
|
234
|
+
'Jura',
|
|
235
|
+
'Cabin Condensed',
|
|
236
|
+
'Lusitana',
|
|
237
|
+
'Black Ops One',
|
|
238
|
+
'Pangolin',
|
|
239
|
+
'Alexandria',
|
|
240
|
+
'Monda',
|
|
241
|
+
'Mada',
|
|
242
|
+
'Six Caps',
|
|
243
|
+
'Varela',
|
|
244
|
+
'Cormorant Infant',
|
|
245
|
+
'Share Tech Mono',
|
|
246
|
+
'Ruda',
|
|
247
|
+
'Londrina Solid',
|
|
248
|
+
'Damion',
|
|
249
|
+
'Andada Pro',
|
|
250
|
+
'Delius',
|
|
251
|
+
'Pontano Sans',
|
|
252
|
+
'Rufina',
|
|
253
|
+
'Sarala',
|
|
254
|
+
'Niramit',
|
|
255
|
+
'Alegreya Sans SC',
|
|
256
|
+
'Anton SC',
|
|
257
|
+
'Major Mono Display',
|
|
258
|
+
'Pragati Narrow',
|
|
259
|
+
'Calistoga',
|
|
260
|
+
'Tektur',
|
|
261
|
+
'Gabarito',
|
|
262
|
+
'Adamina',
|
|
263
|
+
'Arapey',
|
|
264
|
+
'Do Hyeon',
|
|
265
|
+
'Petrona',
|
|
266
|
+
'Mate',
|
|
267
|
+
'Grandstander',
|
|
268
|
+
'Rakkas',
|
|
269
|
+
'Caveat Brush',
|
|
270
|
+
'Sansita',
|
|
271
|
+
'Alef',
|
|
272
|
+
'Shrikhand',
|
|
273
|
+
'BenchNine',
|
|
274
|
+
'Leckerli One',
|
|
275
|
+
'Khula',
|
|
276
|
+
'Economica',
|
|
277
|
+
'Charm',
|
|
278
|
+
'Lexend Giga',
|
|
279
|
+
'M PLUS 1',
|
|
280
|
+
'Syncopate',
|
|
281
|
+
'Covered By Your Grace',
|
|
282
|
+
'Livvic',
|
|
283
|
+
'Holtwood One SC',
|
|
284
|
+
'Saira Extra Condensed',
|
|
285
|
+
'Judson',
|
|
286
|
+
'Electrolize',
|
|
287
|
+
'Bowlby One SC',
|
|
288
|
+
'Cinzel Decorative',
|
|
289
|
+
'Martel Sans',
|
|
290
|
+
'Mrs Saint Delafield',
|
|
291
|
+
'Gochi Hand',
|
|
292
|
+
'Mandali',
|
|
293
|
+
'Allison',
|
|
294
|
+
'Yrsa',
|
|
295
|
+
'Palanquin',
|
|
296
|
+
'Coda',
|
|
297
|
+
'Cabin Sketch',
|
|
298
|
+
'Bevan',
|
|
299
|
+
'Racing Sans One',
|
|
300
|
+
'Jua',
|
|
301
|
+
'Rochester',
|
|
302
|
+
'Eater',
|
|
303
|
+
'Michroma',
|
|
304
|
+
'Lemonada',
|
|
305
|
+
'Chewy',
|
|
306
|
+
'La Belle Aurore',
|
|
307
|
+
'Athiti',
|
|
308
|
+
'Alumni Sans',
|
|
309
|
+
'Averia Serif Libre',
|
|
310
|
+
'Gupter',
|
|
311
|
+
'Belleza',
|
|
312
|
+
'Balsamiq Sans',
|
|
313
|
+
'Chango',
|
|
314
|
+
'Fredericka the Great',
|
|
315
|
+
'Days One',
|
|
316
|
+
'Aclonica',
|
|
317
|
+
'Kaisei Decol',
|
|
318
|
+
'Basic',
|
|
319
|
+
'Gurajada',
|
|
320
|
+
'Kreon',
|
|
321
|
+
'Potta One',
|
|
322
|
+
'Georama',
|
|
323
|
+
'Squada One',
|
|
324
|
+
'Suez One',
|
|
325
|
+
'Alatsi',
|
|
326
|
+
'Arya',
|
|
327
|
+
'Darker Grotesque',
|
|
328
|
+
'Palanquin Dark',
|
|
329
|
+
'Karma',
|
|
330
|
+
'Laila',
|
|
331
|
+
'Averia Libre',
|
|
332
|
+
'Schoolbell',
|
|
333
|
+
'Ramabhadra',
|
|
334
|
+
'Lustria',
|
|
335
|
+
'Hachi Maru Pop',
|
|
336
|
+
'Glegoo',
|
|
337
|
+
'Chonburi',
|
|
338
|
+
'Akshar',
|
|
339
|
+
'Candal',
|
|
340
|
+
'Kameron',
|
|
341
|
+
'Allerta Stencil',
|
|
342
|
+
'Pirata One',
|
|
343
|
+
'Boogaloo',
|
|
344
|
+
'Armata',
|
|
345
|
+
'Mali',
|
|
346
|
+
'Cedarville Cursive',
|
|
347
|
+
'Brygada 1918',
|
|
348
|
+
'PT Serif Caption',
|
|
349
|
+
'Marcellus SC',
|
|
350
|
+
'Podkova',
|
|
351
|
+
'Corben',
|
|
352
|
+
'Tomorrow',
|
|
353
|
+
'Shadows Into Light Two',
|
|
354
|
+
'Aldrich',
|
|
355
|
+
'Bowlby One',
|
|
356
|
+
'Julee',
|
|
357
|
+
'Ibarra Real Nova',
|
|
358
|
+
'Nobile',
|
|
359
|
+
'Familjen Grotesk',
|
|
360
|
+
'Antic',
|
|
361
|
+
'Barriecito',
|
|
362
|
+
'Just Another Hand',
|
|
363
|
+
'Cutive Mono',
|
|
364
|
+
'Spinnaker',
|
|
365
|
+
'K2D',
|
|
366
|
+
'Kiwi Maru',
|
|
367
|
+
'Oranienbaum',
|
|
368
|
+
'Italiana',
|
|
369
|
+
'Nixie One',
|
|
370
|
+
'REM',
|
|
371
|
+
'Cantata One',
|
|
372
|
+
'Dongle',
|
|
373
|
+
'Rozha One',
|
|
374
|
+
'Rye',
|
|
375
|
+
'Norican',
|
|
376
|
+
'Graduate',
|
|
377
|
+
'Sofia Sans Extra Condensed',
|
|
378
|
+
'Coming Soon',
|
|
379
|
+
'Castoro',
|
|
380
|
+
'Odibee Sans',
|
|
381
|
+
'Caudex',
|
|
382
|
+
'Pattaya',
|
|
383
|
+
'Caladea',
|
|
384
|
+
'Black And White Picture',
|
|
385
|
+
'Bungee Shade',
|
|
386
|
+
'Yuji Mai',
|
|
387
|
+
'Overpass Mono',
|
|
388
|
+
'Rancho',
|
|
389
|
+
'Jomhuria',
|
|
390
|
+
'Ms Madi',
|
|
391
|
+
'BioRhyme',
|
|
392
|
+
'Krona One',
|
|
393
|
+
'M PLUS 2',
|
|
394
|
+
'Lateef',
|
|
395
|
+
'Kalnia',
|
|
396
|
+
'Telex',
|
|
397
|
+
'Nanum Brush Script',
|
|
398
|
+
'Monomaniac One',
|
|
399
|
+
'Proza Libre',
|
|
400
|
+
'Arizonia',
|
|
401
|
+
'Fahkwang',
|
|
402
|
+
'Inria Serif',
|
|
403
|
+
'Ovo',
|
|
404
|
+
'Gowun Batang',
|
|
405
|
+
'Limelight',
|
|
406
|
+
'Spicy Rice',
|
|
407
|
+
'Baloo Da 2',
|
|
408
|
+
'Overlock',
|
|
409
|
+
'Alegreya SC',
|
|
410
|
+
'Kosugi',
|
|
411
|
+
'Bellefair',
|
|
412
|
+
'Kristi',
|
|
413
|
+
'Yesteryear',
|
|
414
|
+
'Enriqueta',
|
|
415
|
+
'Annie Use Your Telescope',
|
|
416
|
+
'Niconne',
|
|
417
|
+
'Zilla Slab Highlight',
|
|
418
|
+
'Marmelad',
|
|
419
|
+
'Maitree',
|
|
420
|
+
'Glory',
|
|
421
|
+
'Belanosima',
|
|
422
|
+
'Koulen',
|
|
423
|
+
'Hepta Slab',
|
|
424
|
+
'Scada',
|
|
425
|
+
'Oxygen Mono',
|
|
426
|
+
'Wix Madefor Display',
|
|
427
|
+
'Ysabeau SC',
|
|
428
|
+
'Klee One',
|
|
429
|
+
'Rethink Sans',
|
|
430
|
+
'Markazi Text',
|
|
431
|
+
'Grand Hotel',
|
|
432
|
+
'Trirong',
|
|
433
|
+
'Lexend Exa',
|
|
434
|
+
'Kurale',
|
|
435
|
+
'Metrophobic',
|
|
436
|
+
'Cormorant Upright',
|
|
437
|
+
'Aboreto',
|
|
438
|
+
'Goudy Bookletter 1911',
|
|
439
|
+
'Waiting for the Sunrise',
|
|
440
|
+
'Cormorant SC',
|
|
441
|
+
'Short Stack',
|
|
442
|
+
'Besley',
|
|
443
|
+
'Gantari',
|
|
444
|
+
'Dawning of a New Day',
|
|
445
|
+
'Encode Sans Semi Condensed',
|
|
446
|
+
'Allerta',
|
|
447
|
+
'Love Ya Like A Sister',
|
|
448
|
+
'Arbutus Slab',
|
|
449
|
+
'Knewave',
|
|
450
|
+
'Amiko',
|
|
451
|
+
'Solway',
|
|
452
|
+
'McLaren',
|
|
453
|
+
'Average Sans',
|
|
454
|
+
'Azeret Mono',
|
|
455
|
+
'Sofia Sans Semi Condensed',
|
|
456
|
+
'Geist',
|
|
457
|
+
'Capriola',
|
|
458
|
+
'Calligraffitti',
|
|
459
|
+
'Petit Formal Script',
|
|
460
|
+
'Halant',
|
|
461
|
+
'Oooh Baby',
|
|
462
|
+
'Ga Maamli',
|
|
463
|
+
'Irish Grover',
|
|
464
|
+
'UnifrakturMaguntia',
|
|
465
|
+
'Wallpoet',
|
|
466
|
+
'Jockey One',
|
|
467
|
+
'Fresca',
|
|
468
|
+
'Instrument Serif',
|
|
469
|
+
'David Libre',
|
|
470
|
+
'Hahmlet',
|
|
471
|
+
'Sigmar One',
|
|
472
|
+
'Imbue',
|
|
473
|
+
'Jaldi',
|
|
474
|
+
'Spectral SC',
|
|
475
|
+
'Bungee Inline',
|
|
476
|
+
'Buenard',
|
|
477
|
+
'Fjord One',
|
|
478
|
+
'Quintessential',
|
|
479
|
+
'Young Serif',
|
|
480
|
+
'Mochiy Pop One',
|
|
481
|
+
'Rambla',
|
|
482
|
+
'Seaweed Script',
|
|
483
|
+
'Biryani',
|
|
484
|
+
'Average',
|
|
485
|
+
'Mouse Memoirs',
|
|
486
|
+
'Style Script',
|
|
487
|
+
'B612',
|
|
488
|
+
'Spline Sans',
|
|
489
|
+
'Manjari',
|
|
490
|
+
'Skranji',
|
|
491
|
+
'Sniglet',
|
|
492
|
+
'Bentham',
|
|
493
|
+
'MuseoModerno',
|
|
494
|
+
'Cambay',
|
|
495
|
+
'Kadwa',
|
|
496
|
+
'Bubblegum Sans',
|
|
497
|
+
'Gloock',
|
|
498
|
+
'Prosto One',
|
|
499
|
+
'Miriam Libre',
|
|
500
|
+
'Encode Sans Expanded',
|
|
501
|
+
'Mansalva',
|
|
502
|
+
'IM Fell English',
|
|
503
|
+
'Contrail One',
|
|
504
|
+
'Ma Shan Zheng',
|
|
505
|
+
'Rasa',
|
|
506
|
+
'Grenze Gotisch',
|
|
507
|
+
'Kelly Slab',
|
|
508
|
+
'Vesper Libre',
|
|
509
|
+
'Rosario',
|
|
510
|
+
'DotGothic16',
|
|
511
|
+
'B612 Mono',
|
|
512
|
+
'Magra',
|
|
513
|
+
'KoHo',
|
|
514
|
+
'Bellota Text',
|
|
515
|
+
'RocknRoll One',
|
|
516
|
+
'Trocchi',
|
|
517
|
+
'Baloo Paaji 2',
|
|
518
|
+
'Lemon',
|
|
519
|
+
'Gabriela',
|
|
520
|
+
'Meddon',
|
|
521
|
+
'Carrois Gothic',
|
|
522
|
+
'Reddit Sans',
|
|
523
|
+
'Geo',
|
|
524
|
+
'Fauna One',
|
|
525
|
+
'Tilt Neon',
|
|
526
|
+
'Antic Didone',
|
|
527
|
+
'Poly',
|
|
528
|
+
'Over the Rainbow',
|
|
529
|
+
'Caprasimo',
|
|
530
|
+
'IM Fell English SC',
|
|
531
|
+
'Delius Unicase',
|
|
532
|
+
'Coustard',
|
|
533
|
+
'Radley',
|
|
534
|
+
'Pixelify Sans',
|
|
535
|
+
'Montagu Slab',
|
|
536
|
+
'Yusei Magic',
|
|
537
|
+
'Ruslan Display',
|
|
538
|
+
'Qwigley',
|
|
539
|
+
'Stardos Stencil',
|
|
540
|
+
'Copse',
|
|
541
|
+
'Pathway Extreme',
|
|
542
|
+
'Gluten',
|
|
543
|
+
'Fanwood Text',
|
|
544
|
+
'Alike',
|
|
545
|
+
'Mr De Haviland',
|
|
546
|
+
'Hanuman',
|
|
547
|
+
'Farro',
|
|
548
|
+
'Preahvihear',
|
|
549
|
+
'ZCOOL XiaoWei',
|
|
550
|
+
'Shippori Antique',
|
|
551
|
+
'Pompiere',
|
|
552
|
+
'Lekton',
|
|
553
|
+
'Turret Road',
|
|
554
|
+
'Lexend Peta',
|
|
555
|
+
'Kufam',
|
|
556
|
+
'Bona Nova SC',
|
|
557
|
+
'Grape Nuts',
|
|
558
|
+
'Libre Caslon Display',
|
|
559
|
+
'SUSE',
|
|
560
|
+
'Gotu',
|
|
561
|
+
'Baloo Tamma 2',
|
|
562
|
+
'Mukta Mahee',
|
|
563
|
+
'Qwitcher Grypen',
|
|
564
|
+
'Nova Square',
|
|
565
|
+
'Mountains of Christmas',
|
|
566
|
+
'Tauri',
|
|
567
|
+
'Murecho',
|
|
568
|
+
'Sunflower',
|
|
569
|
+
'Aguafina Script',
|
|
570
|
+
'Vina Sans',
|
|
571
|
+
'Poetsen One',
|
|
572
|
+
'Share',
|
|
573
|
+
'Lexend Zetta',
|
|
574
|
+
'Patrick Hand SC',
|
|
575
|
+
'Marvel',
|
|
576
|
+
'Megrim',
|
|
577
|
+
'Syne Mono',
|
|
578
|
+
'Nova Mono',
|
|
579
|
+
'Rouge Script',
|
|
580
|
+
'Red Rose',
|
|
581
|
+
'Kaisei Tokumin',
|
|
582
|
+
'Mukta Vaani',
|
|
583
|
+
'Hurricane',
|
|
584
|
+
'Thasadith',
|
|
585
|
+
'Chelsea Market',
|
|
586
|
+
'Rampart One',
|
|
587
|
+
'Baloo Thambi 2',
|
|
588
|
+
'Moon Dance',
|
|
589
|
+
'Voltaire',
|
|
590
|
+
'Esteban',
|
|
591
|
+
'Anybody',
|
|
592
|
+
'Madimi One',
|
|
593
|
+
'Oregano',
|
|
594
|
+
'Expletus Sans',
|
|
595
|
+
'Mogra',
|
|
596
|
+
'Faster One',
|
|
597
|
+
'Della Respira',
|
|
598
|
+
'Aref Ruqaa',
|
|
599
|
+
'Encode Sans Semi Expanded',
|
|
600
|
+
'Whisper',
|
|
601
|
+
'Cormorant Unicase',
|
|
602
|
+
'Battambang',
|
|
603
|
+
'Shantell Sans',
|
|
604
|
+
'Amethysta',
|
|
605
|
+
'IM Fell DW Pica',
|
|
606
|
+
'Cambo',
|
|
607
|
+
'Share Tech',
|
|
608
|
+
'Sansita Swashed',
|
|
609
|
+
'Fondamento',
|
|
610
|
+
'Aladin',
|
|
611
|
+
'Quando',
|
|
612
|
+
'Fuggles',
|
|
613
|
+
'Amarante',
|
|
614
|
+
'Gamja Flower',
|
|
615
|
+
'WindSong',
|
|
616
|
+
'Geist Mono',
|
|
617
|
+
'Give You Glory',
|
|
618
|
+
'Chivo Mono',
|
|
619
|
+
'Asul',
|
|
620
|
+
'Allan',
|
|
621
|
+
'Montez',
|
|
622
|
+
'Happy Monkey',
|
|
623
|
+
'Federo',
|
|
624
|
+
'Hina Mincho',
|
|
625
|
+
'Almendra',
|
|
626
|
+
'Sue Ellen Francisco',
|
|
627
|
+
'Poller One',
|
|
628
|
+
'League Script',
|
|
629
|
+
'Delicious Handrawn',
|
|
630
|
+
'Reddit Mono',
|
|
631
|
+
'Kodchasan',
|
|
632
|
+
'Molengo',
|
|
633
|
+
'Suranna',
|
|
634
|
+
'Finger Paint',
|
|
635
|
+
'Baloo Bhai 2',
|
|
636
|
+
'Vollkorn SC',
|
|
637
|
+
'Charis SIL',
|
|
638
|
+
'ADLaM Display',
|
|
639
|
+
'Recursive',
|
|
640
|
+
'Sedgwick Ave',
|
|
641
|
+
'Vibur',
|
|
642
|
+
'Salsa',
|
|
643
|
+
'Cutive',
|
|
644
|
+
'Croissant One',
|
|
645
|
+
'Brawler',
|
|
646
|
+
'Tienne',
|
|
647
|
+
'Parkinsans',
|
|
648
|
+
'AR One Sans',
|
|
649
|
+
'ZCOOL KuaiLe',
|
|
650
|
+
'Supermercado One',
|
|
651
|
+
'Birthstone',
|
|
652
|
+
'Inknut Antiqua',
|
|
653
|
+
'Coiny',
|
|
654
|
+
'Inder',
|
|
655
|
+
'Goblin One',
|
|
656
|
+
'Host Grotesk',
|
|
657
|
+
'Euphoria Script',
|
|
658
|
+
'Walter Turncoat',
|
|
659
|
+
'Hi Melody',
|
|
660
|
+
'Red Hat Mono',
|
|
661
|
+
'Wendy One',
|
|
662
|
+
'Zen Dots',
|
|
663
|
+
'Numans',
|
|
664
|
+
'Sumana',
|
|
665
|
+
'Xanh Mono',
|
|
666
|
+
'Imprima',
|
|
667
|
+
'Protest Revolution',
|
|
668
|
+
'Mona Sans',
|
|
669
|
+
'Agdasima',
|
|
670
|
+
'Iceberg',
|
|
671
|
+
'Orelega One',
|
|
672
|
+
'Monofett',
|
|
673
|
+
'Goldman',
|
|
674
|
+
'Inria Sans',
|
|
675
|
+
'Sigmar',
|
|
676
|
+
'Vast Shadow',
|
|
677
|
+
'Averia Sans Libre',
|
|
678
|
+
'Meow Script',
|
|
679
|
+
'Loved by the King',
|
|
680
|
+
'Kantumruy Pro',
|
|
681
|
+
'Playpen Sans',
|
|
682
|
+
'Ephesis',
|
|
683
|
+
'Harmattan',
|
|
684
|
+
'Dangrek',
|
|
685
|
+
'Unkempt',
|
|
686
|
+
'Gugi',
|
|
687
|
+
'Padauk',
|
|
688
|
+
'Cherry Cream Soda',
|
|
689
|
+
'Corinthia',
|
|
690
|
+
'Crafty Girls',
|
|
691
|
+
'DynaPuff',
|
|
692
|
+
'Headland One',
|
|
693
|
+
'Mallanna',
|
|
694
|
+
'Atma',
|
|
695
|
+
'Montaga',
|
|
696
|
+
'Oleo Script Swash Caps',
|
|
697
|
+
'IM Fell Double Pica',
|
|
698
|
+
'Bilbo Swash Caps',
|
|
699
|
+
'Kranky',
|
|
700
|
+
'Puritan',
|
|
701
|
+
'Charmonman',
|
|
702
|
+
'Carme',
|
|
703
|
+
'Rhodium Libre',
|
|
704
|
+
'Codystar',
|
|
705
|
+
'ZCOOL QingKe HuangYou',
|
|
706
|
+
'Just Me Again Down Here',
|
|
707
|
+
'Sarpanch',
|
|
708
|
+
'Alike Angular',
|
|
709
|
+
'Lily Script One',
|
|
710
|
+
'Ubuntu Sans',
|
|
711
|
+
'Dekko',
|
|
712
|
+
'Slabo 13px',
|
|
713
|
+
'Shojumaru',
|
|
714
|
+
'Notable',
|
|
715
|
+
'Tenali Ramakrishna',
|
|
716
|
+
'Tilt Warp',
|
|
717
|
+
'Fontdiner Swanky',
|
|
718
|
+
'Zen Antique Soft',
|
|
719
|
+
'Sarina',
|
|
720
|
+
'Elsie',
|
|
721
|
+
'Zen Kurenaido',
|
|
722
|
+
'Saira Stencil One',
|
|
723
|
+
'Anaheim',
|
|
724
|
+
'Bellota',
|
|
725
|
+
'Fragment Mono',
|
|
726
|
+
'Slackey',
|
|
727
|
+
'Clicker Script',
|
|
728
|
+
'Artifika',
|
|
729
|
+
'Sofadi One',
|
|
730
|
+
'Duru Sans',
|
|
731
|
+
'Dokdo',
|
|
732
|
+
'Bayon',
|
|
733
|
+
'Mako',
|
|
734
|
+
'Platypi',
|
|
735
|
+
'The Girl Next Door',
|
|
736
|
+
'Carlito',
|
|
737
|
+
'Doppio One',
|
|
738
|
+
'Metamorphous',
|
|
739
|
+
'Bigshot One',
|
|
740
|
+
'Balthazar',
|
|
741
|
+
'Dynalight',
|
|
742
|
+
'Fustat',
|
|
743
|
+
'Nova Round',
|
|
744
|
+
'Bakbak One',
|
|
745
|
+
'Rubik Dirt',
|
|
746
|
+
'NTR',
|
|
747
|
+
'Prociono',
|
|
748
|
+
'Rubik Moonrocks',
|
|
749
|
+
'Nerko One',
|
|
750
|
+
'Radio Canada Big',
|
|
751
|
+
'Redressed',
|
|
752
|
+
'Gentium Plus',
|
|
753
|
+
'Square Peg',
|
|
754
|
+
'Sail',
|
|
755
|
+
'Shanti',
|
|
756
|
+
'Honk',
|
|
757
|
+
'Scheherazade New',
|
|
758
|
+
'Wire One',
|
|
759
|
+
'Germania One',
|
|
760
|
+
'Henny Penny',
|
|
761
|
+
'Lacquer',
|
|
762
|
+
'Chicle',
|
|
763
|
+
'Mirza',
|
|
764
|
+
'Nokora',
|
|
765
|
+
'MedievalSharp',
|
|
766
|
+
'Galada',
|
|
767
|
+
'Road Rage',
|
|
768
|
+
'Licorice',
|
|
769
|
+
'Modak',
|
|
770
|
+
'Ledger',
|
|
771
|
+
'Baloo Tammudu 2',
|
|
772
|
+
'Piazzolla',
|
|
773
|
+
'Gayathri',
|
|
774
|
+
'Viaoda Libre',
|
|
775
|
+
'Overlock SC',
|
|
776
|
+
'Raleway Dots',
|
|
777
|
+
'Manuale',
|
|
778
|
+
'Convergence',
|
|
779
|
+
'Vujahday Script',
|
|
780
|
+
'Peralta',
|
|
781
|
+
'Life Savers',
|
|
782
|
+
'Freehand',
|
|
783
|
+
'Genos',
|
|
784
|
+
'Eagle Lake',
|
|
785
|
+
'Akaya Kanadaka',
|
|
786
|
+
'Arima',
|
|
787
|
+
'Reggae One',
|
|
788
|
+
'Orienta',
|
|
789
|
+
'Modern Antiqua',
|
|
790
|
+
'Gaegu',
|
|
791
|
+
'Zen Antique',
|
|
792
|
+
'Asar',
|
|
793
|
+
'Bubbler One',
|
|
794
|
+
'Original Surfer',
|
|
795
|
+
'IM Fell French Canon',
|
|
796
|
+
'Carattere',
|
|
797
|
+
'Zain',
|
|
798
|
+
'Sedgwick Ave Display',
|
|
799
|
+
'Iceland',
|
|
800
|
+
'Vampiro One',
|
|
801
|
+
'Kablammo',
|
|
802
|
+
'Flamenco',
|
|
803
|
+
'Crushed',
|
|
804
|
+
'Kdam Thmor Pro',
|
|
805
|
+
'Bona Nova',
|
|
806
|
+
'Borel',
|
|
807
|
+
'Homenaje',
|
|
808
|
+
'Kavivanar',
|
|
809
|
+
'MonteCarlo',
|
|
810
|
+
'Belgrano',
|
|
811
|
+
'Swanky and Moo Moo',
|
|
812
|
+
'Sura',
|
|
813
|
+
'Scope One',
|
|
814
|
+
'Gemunu Libre',
|
|
815
|
+
'Varta',
|
|
816
|
+
'Boldonse',
|
|
817
|
+
'Moul',
|
|
818
|
+
'Nova Flat',
|
|
819
|
+
'Macondo Swash Caps',
|
|
820
|
+
'Winky Sans',
|
|
821
|
+
'Sunshiney',
|
|
822
|
+
'Bungee Spice',
|
|
823
|
+
'Medula One',
|
|
824
|
+
'Alkalami',
|
|
825
|
+
'Flow Circular',
|
|
826
|
+
'East Sea Dokdo',
|
|
827
|
+
'Frijole',
|
|
828
|
+
'Sulphur Point',
|
|
829
|
+
'Mochiy Pop P One',
|
|
830
|
+
'Edu SA Beginner',
|
|
831
|
+
'M PLUS 1 Code',
|
|
832
|
+
'Katibeh',
|
|
833
|
+
'Trade Winds',
|
|
834
|
+
'BhuTuka Expanded One',
|
|
835
|
+
'Ceviche One',
|
|
836
|
+
'Rationale',
|
|
837
|
+
'Baumans',
|
|
838
|
+
'Abyssinica SIL',
|
|
839
|
+
'Train One',
|
|
840
|
+
'Akronim',
|
|
841
|
+
'Cherry Swash',
|
|
842
|
+
'Beth Ellen',
|
|
843
|
+
'Gidole',
|
|
844
|
+
'The Nautigal',
|
|
845
|
+
'Delius Swash Caps',
|
|
846
|
+
'Cairo Play',
|
|
847
|
+
'Kavoon',
|
|
848
|
+
'Nosifer',
|
|
849
|
+
'Comforter Brush',
|
|
850
|
+
'Protest Strike',
|
|
851
|
+
'Rum Raisin',
|
|
852
|
+
'Iansui',
|
|
853
|
+
'Bytesized',
|
|
854
|
+
'Strait',
|
|
855
|
+
'Miniver',
|
|
856
|
+
'Sonsie One',
|
|
857
|
+
'Cute Font',
|
|
858
|
+
'Mate SC',
|
|
859
|
+
'Lexend Mega',
|
|
860
|
+
'Fuzzy Bubbles',
|
|
861
|
+
'Uncial Antiqua',
|
|
862
|
+
'Jersey 15',
|
|
863
|
+
'Rosarivo',
|
|
864
|
+
'Freckle Face',
|
|
865
|
+
'Ruthie',
|
|
866
|
+
'Bokor',
|
|
867
|
+
'Nova Slim',
|
|
868
|
+
'Voces',
|
|
869
|
+
'Stick',
|
|
870
|
+
'IM Fell Great Primer',
|
|
871
|
+
'IM Fell DW Pica SC',
|
|
872
|
+
'Gentium Book Plus',
|
|
873
|
+
'Emilys Candy',
|
|
874
|
+
'Ranchers',
|
|
875
|
+
'Maiden Orange',
|
|
876
|
+
'Birthstone Bounce',
|
|
877
|
+
'Barrio',
|
|
878
|
+
'Martian Mono',
|
|
879
|
+
'Alkatra',
|
|
880
|
+
'Denk One',
|
|
881
|
+
'Chathura',
|
|
882
|
+
'Sancreek',
|
|
883
|
+
'Baloo Bhaina 2',
|
|
884
|
+
'Chau Philomene One',
|
|
885
|
+
'Mohave',
|
|
886
|
+
'Pavanam',
|
|
887
|
+
'Ribeye',
|
|
888
|
+
'Zhi Mang Xing',
|
|
889
|
+
'Passions Conflict',
|
|
890
|
+
'Smythe',
|
|
891
|
+
'Redacted',
|
|
892
|
+
'Timmana',
|
|
893
|
+
'Miltonian Tattoo',
|
|
894
|
+
'Karantina',
|
|
895
|
+
'Stick No Bills',
|
|
896
|
+
'Gafata',
|
|
897
|
+
'Asset',
|
|
898
|
+
'Lovers Quarrel',
|
|
899
|
+
'Fenix',
|
|
900
|
+
'Rubik Vinyl',
|
|
901
|
+
'Texturina',
|
|
902
|
+
'Yuji Syuku',
|
|
903
|
+
'Erica One',
|
|
904
|
+
'Kite One',
|
|
905
|
+
'Liu Jian Mao Cao',
|
|
906
|
+
'Mystery Quest',
|
|
907
|
+
'IM Fell Double Pica SC',
|
|
908
|
+
'Big Shoulders',
|
|
909
|
+
'IM Fell Great Primer SC',
|
|
910
|
+
'Meie Script',
|
|
911
|
+
'Funnel Sans',
|
|
912
|
+
'Rubik Scribble',
|
|
913
|
+
'Poltawski Nowy',
|
|
914
|
+
'Farsan',
|
|
915
|
+
'Astloch',
|
|
916
|
+
'Angkor',
|
|
917
|
+
'Emblema One',
|
|
918
|
+
'Tillana',
|
|
919
|
+
'Mina',
|
|
920
|
+
'IM Fell French Canon SC',
|
|
921
|
+
'Sour Gummy',
|
|
922
|
+
'UnifrakturCook',
|
|
923
|
+
'Kenia',
|
|
924
|
+
'Sree Krushnadevaraya',
|
|
925
|
+
'Mooli',
|
|
926
|
+
'Autour One',
|
|
927
|
+
'Tiny5',
|
|
928
|
+
'Caesar Dressing',
|
|
929
|
+
'Cantora One',
|
|
930
|
+
'Atomic Age',
|
|
931
|
+
'Stalemate',
|
|
932
|
+
'Long Cang',
|
|
933
|
+
'Ruluko',
|
|
934
|
+
'Fascinate Inline',
|
|
935
|
+
'Ewert',
|
|
936
|
+
'Paprika',
|
|
937
|
+
'Londrina Outline',
|
|
938
|
+
'Junge',
|
|
939
|
+
'Yomogi',
|
|
940
|
+
'Carrois Gothic SC',
|
|
941
|
+
'Lavishly Yours',
|
|
942
|
+
'Sixtyfour Convergence',
|
|
943
|
+
'Nova Script',
|
|
944
|
+
'Meera Inimai',
|
|
945
|
+
'Port Lligat Slab',
|
|
946
|
+
'Nova Cut',
|
|
947
|
+
'Metal Mania',
|
|
948
|
+
'Rubik Doodle Shadow',
|
|
949
|
+
'Nova Oval',
|
|
950
|
+
'Underdog',
|
|
951
|
+
'Keania One',
|
|
952
|
+
'Miltonian',
|
|
953
|
+
'Ramaraja',
|
|
954
|
+
'Akatab',
|
|
955
|
+
'Gulzar',
|
|
956
|
+
'Benne',
|
|
957
|
+
'Englebert',
|
|
958
|
+
'Habibi',
|
|
959
|
+
'Spline Sans Mono',
|
|
960
|
+
'Jomolhari',
|
|
961
|
+
'Margarine',
|
|
962
|
+
'Srisakdi',
|
|
963
|
+
'Fasthand',
|
|
964
|
+
'Akaya Telivigala',
|
|
965
|
+
'Chela One',
|
|
966
|
+
'Sometype Mono',
|
|
967
|
+
'Port Lligat Sans',
|
|
968
|
+
'Gwendolyn',
|
|
969
|
+
'Zen Tokyo Zoo',
|
|
970
|
+
'New Rocker',
|
|
971
|
+
'Kulim Park',
|
|
972
|
+
'Offside',
|
|
973
|
+
'Waterfall',
|
|
974
|
+
'Mynerve',
|
|
975
|
+
'Protest Riot',
|
|
976
|
+
'Londrina Shadow',
|
|
977
|
+
'Ysabeau Office',
|
|
978
|
+
'Unlock',
|
|
979
|
+
'Ribeye Marrow',
|
|
980
|
+
'Trykker',
|
|
981
|
+
'Stoke',
|
|
982
|
+
'Suwannaphum',
|
|
983
|
+
'Gorditas',
|
|
984
|
+
'Cagliostro',
|
|
985
|
+
'Funnel Display',
|
|
986
|
+
'Smooch',
|
|
987
|
+
'Imperial Script',
|
|
988
|
+
'Finlandica',
|
|
989
|
+
'Girassol',
|
|
990
|
+
'Trispace',
|
|
991
|
+
'Spirax',
|
|
992
|
+
'Simonetta',
|
|
993
|
+
'Kode Mono',
|
|
994
|
+
'Beau Rivage',
|
|
995
|
+
'Bilbo',
|
|
996
|
+
'Condiment',
|
|
997
|
+
'Dorsa',
|
|
998
|
+
'Lugrasimo',
|
|
999
|
+
'Piedra',
|
|
1000
|
+
'Jacques Francois Shadow',
|
|
1001
|
+
'Lexend Tera',
|
|
1002
|
+
'Stint Ultra Condensed',
|
|
1003
|
+
'Qahiri',
|
|
1004
|
+
'Solitreo',
|
|
1005
|
+
'Jolly Lodger',
|
|
1006
|
+
'Bruno Ace SC',
|
|
1007
|
+
'Kaisei HarunoUmi',
|
|
1008
|
+
'Edu TAS Beginner',
|
|
1009
|
+
'Anta',
|
|
1010
|
+
'Arbutus',
|
|
1011
|
+
'Inika',
|
|
1012
|
+
'Text Me One',
|
|
1013
|
+
'Montserrat Underline',
|
|
1014
|
+
'Engagement',
|
|
1015
|
+
'Koh Santepheap',
|
|
1016
|
+
'Grenze',
|
|
1017
|
+
'Baskervville SC',
|
|
1018
|
+
'Chocolate Classical Sans',
|
|
1019
|
+
'Devonshire',
|
|
1020
|
+
'Braah One',
|
|
1021
|
+
'Jacques Francois',
|
|
1022
|
+
'Poor Story',
|
|
1023
|
+
'Yeon Sung',
|
|
1024
|
+
'Chilanka',
|
|
1025
|
+
'Flow Rounded',
|
|
1026
|
+
'Rubik Iso',
|
|
1027
|
+
'Stint Ultra Expanded',
|
|
1028
|
+
'Jaro',
|
|
1029
|
+
'Tilt Prism',
|
|
1030
|
+
'Sono',
|
|
1031
|
+
'Festive',
|
|
1032
|
+
'Bungee Hairline',
|
|
1033
|
+
'Linden Hill',
|
|
1034
|
+
'Seymour One',
|
|
1035
|
+
'Jersey 10',
|
|
1036
|
+
'Kotta One',
|
|
1037
|
+
'Donegal One',
|
|
1038
|
+
'Yaldevi',
|
|
1039
|
+
'Comforter',
|
|
1040
|
+
'Faculty Glyphic',
|
|
1041
|
+
'Aoboshi One',
|
|
1042
|
+
'Federant',
|
|
1043
|
+
'Risque',
|
|
1044
|
+
'Tac One',
|
|
1045
|
+
'Galindo',
|
|
1046
|
+
'42dot Sans',
|
|
1047
|
+
'Milonga',
|
|
1048
|
+
'Tulpen One',
|
|
1049
|
+
'Marhey',
|
|
1050
|
+
'Marko One',
|
|
1051
|
+
'Kumar One',
|
|
1052
|
+
'Tourney',
|
|
1053
|
+
'Fascinate',
|
|
1054
|
+
'Averia Gruesa Libre',
|
|
1055
|
+
'Inclusive Sans',
|
|
1056
|
+
'Bonheur Royale',
|
|
1057
|
+
'Castoro Titling',
|
|
1058
|
+
'Shalimar',
|
|
1059
|
+
'Luxurious Script',
|
|
1060
|
+
'Gasoek One',
|
|
1061
|
+
'Ysabeau',
|
|
1062
|
+
'Romanesco',
|
|
1063
|
+
'Water Brush',
|
|
1064
|
+
'Bigelow Rules',
|
|
1065
|
+
'Ranga',
|
|
1066
|
+
'Glass Antiqua',
|
|
1067
|
+
'Joti One',
|
|
1068
|
+
'New Amsterdam',
|
|
1069
|
+
'Purple Purse',
|
|
1070
|
+
'Sahitya',
|
|
1071
|
+
'Buda',
|
|
1072
|
+
'Cherry Bomb One',
|
|
1073
|
+
'Teachers',
|
|
1074
|
+
'Grey Qo',
|
|
1075
|
+
'Comme',
|
|
1076
|
+
'Passero One',
|
|
1077
|
+
'Micro 5',
|
|
1078
|
+
'Ballet',
|
|
1079
|
+
'Jaini',
|
|
1080
|
+
'Lancelot',
|
|
1081
|
+
'New Tegomin',
|
|
1082
|
+
'Mrs Sheppards',
|
|
1083
|
+
'Joan',
|
|
1084
|
+
'Elsie Swash Caps',
|
|
1085
|
+
'Galdeano',
|
|
1086
|
+
'Sedan SC',
|
|
1087
|
+
'Metal',
|
|
1088
|
+
'Peddana',
|
|
1089
|
+
'Gidugu',
|
|
1090
|
+
'Odor Mean Chey',
|
|
1091
|
+
'Kumar One Outline',
|
|
1092
|
+
'Wellfleet',
|
|
1093
|
+
'Felipa',
|
|
1094
|
+
'Climate Crisis',
|
|
1095
|
+
'Alumni Sans Pinstripe',
|
|
1096
|
+
'Griffy',
|
|
1097
|
+
'Mea Culpa',
|
|
1098
|
+
'Bodoni Moda SC',
|
|
1099
|
+
'Hedvig Letters Serif',
|
|
1100
|
+
'Handjet',
|
|
1101
|
+
'Hubballi',
|
|
1102
|
+
'Dr Sugiyama',
|
|
1103
|
+
'Reem Kufi Ink',
|
|
1104
|
+
'Ysabeau Infant',
|
|
1105
|
+
'Smokum',
|
|
1106
|
+
'Doto',
|
|
1107
|
+
'Bagel Fat One',
|
|
1108
|
+
'Rubik Wet Paint',
|
|
1109
|
+
'Encode Sans SC',
|
|
1110
|
+
'Butterfly Kids',
|
|
1111
|
+
'Mr Bedfort',
|
|
1112
|
+
'Bungee Outline',
|
|
1113
|
+
'Ravi Prakash',
|
|
1114
|
+
'Bahiana',
|
|
1115
|
+
'Phudu',
|
|
1116
|
+
'Liter',
|
|
1117
|
+
'Luxurious Roman',
|
|
1118
|
+
'Monomakh',
|
|
1119
|
+
'Plaster',
|
|
1120
|
+
'Londrina Sketch',
|
|
1121
|
+
'Princess Sofia',
|
|
1122
|
+
'Diplomata SC',
|
|
1123
|
+
'Snippet',
|
|
1124
|
+
'Revalia',
|
|
1125
|
+
'Agu Display',
|
|
1126
|
+
'Fruktur',
|
|
1127
|
+
'Praise',
|
|
1128
|
+
'Truculenta',
|
|
1129
|
+
'Victor Mono',
|
|
1130
|
+
'Oi',
|
|
1131
|
+
'Big Shoulders Stencil',
|
|
1132
|
+
'Flavors',
|
|
1133
|
+
'Sirin Stencil',
|
|
1134
|
+
'Miss Fajardose',
|
|
1135
|
+
'Reddit Sans Condensed',
|
|
1136
|
+
'Bonbon',
|
|
1137
|
+
'Stalinist One',
|
|
1138
|
+
'Trochut',
|
|
1139
|
+
'Jacquard 12',
|
|
1140
|
+
'Moderustic',
|
|
1141
|
+
'Updock',
|
|
1142
|
+
'Oldenburg',
|
|
1143
|
+
'Edu VIC WA NT Beginner',
|
|
1144
|
+
'Kirang Haerang',
|
|
1145
|
+
'Ponomar',
|
|
1146
|
+
'Almendra Display',
|
|
1147
|
+
'Neonderthaw',
|
|
1148
|
+
'Hanalei Fill',
|
|
1149
|
+
'Lunasima',
|
|
1150
|
+
'Alumni Sans Collegiate One',
|
|
1151
|
+
'Lumanosimo',
|
|
1152
|
+
'Uchen',
|
|
1153
|
+
'Jim Nightshade',
|
|
1154
|
+
'Sevillana',
|
|
1155
|
+
'Darumadrop One',
|
|
1156
|
+
'Lakki Reddy',
|
|
1157
|
+
'Danfo',
|
|
1158
|
+
'Cactus Classical Serif',
|
|
1159
|
+
'Wittgenstein',
|
|
1160
|
+
'Island Moments',
|
|
1161
|
+
'Nabla',
|
|
1162
|
+
'Diplomata',
|
|
1163
|
+
'Rubik Distressed',
|
|
1164
|
+
'Bruno Ace',
|
|
1165
|
+
'Freeman',
|
|
1166
|
+
'Yuji Boku',
|
|
1167
|
+
'Ruwudu',
|
|
1168
|
+
'Hind Mysuru',
|
|
1169
|
+
'Caramel',
|
|
1170
|
+
'Ojuju',
|
|
1171
|
+
'Foldit',
|
|
1172
|
+
'Gideon Roman',
|
|
1173
|
+
'Reem Kufi Fun',
|
|
1174
|
+
'Molle',
|
|
1175
|
+
'Butcherman',
|
|
1176
|
+
'Labrada',
|
|
1177
|
+
'Bacasime Antique',
|
|
1178
|
+
'Big Shoulders Inline',
|
|
1179
|
+
'Fleur De Leah',
|
|
1180
|
+
'Beiruti',
|
|
1181
|
+
'Explora',
|
|
1182
|
+
'BioRhyme Expanded',
|
|
1183
|
+
'Dhurjati',
|
|
1184
|
+
'Edu AU VIC WA NT Pre',
|
|
1185
|
+
'Kalnia Glaze',
|
|
1186
|
+
'Jersey 25',
|
|
1187
|
+
'Babylonica',
|
|
1188
|
+
'Inspiration',
|
|
1189
|
+
'Konkhmer Sleokchher',
|
|
1190
|
+
'Alumni Sans Inline One',
|
|
1191
|
+
'Aubrey',
|
|
1192
|
+
'Combo',
|
|
1193
|
+
'Blaka',
|
|
1194
|
+
'Send Flowers',
|
|
1195
|
+
'Vibes',
|
|
1196
|
+
'LXGW WenKai TC',
|
|
1197
|
+
'Jersey 20',
|
|
1198
|
+
'My Soul',
|
|
1199
|
+
'Workbench',
|
|
1200
|
+
'Taprom',
|
|
1201
|
+
'Love Light',
|
|
1202
|
+
'Tsukimi Rounded',
|
|
1203
|
+
'Rubik Glitch Pop',
|
|
1204
|
+
'Kings',
|
|
1205
|
+
'Geostar',
|
|
1206
|
+
'Twinkle Star',
|
|
1207
|
+
'Rubik Beastly',
|
|
1208
|
+
'Sedan',
|
|
1209
|
+
'Diphylleia',
|
|
1210
|
+
'Edu AU VIC WA NT Dots',
|
|
1211
|
+
'Orbit',
|
|
1212
|
+
'Geostar Fill',
|
|
1213
|
+
'Splash',
|
|
1214
|
+
'Moirai One',
|
|
1215
|
+
'Suravaram',
|
|
1216
|
+
'Moulpali',
|
|
1217
|
+
'Hedvig Letters Sans',
|
|
1218
|
+
'Palette Mosaic',
|
|
1219
|
+
'Rock 3D',
|
|
1220
|
+
'Hubot Sans',
|
|
1221
|
+
'Hanalei',
|
|
1222
|
+
'Rubik Spray Paint',
|
|
1223
|
+
'Flow Block',
|
|
1224
|
+
'Edu QLD Beginner',
|
|
1225
|
+
'Grandiflora One',
|
|
1226
|
+
'Jacquard 24',
|
|
1227
|
+
'Shafarik',
|
|
1228
|
+
'Zen Loop',
|
|
1229
|
+
'Sassy Frass',
|
|
1230
|
+
'Snowburst One',
|
|
1231
|
+
'Kolker Brush',
|
|
1232
|
+
'Sankofa Display',
|
|
1233
|
+
'Rubik Puddles',
|
|
1234
|
+
'Arsenal SC',
|
|
1235
|
+
'Redacted Script',
|
|
1236
|
+
'Rubik Burned',
|
|
1237
|
+
'Tapestry',
|
|
1238
|
+
'Rubik 80s Fade',
|
|
1239
|
+
'Shizuru',
|
|
1240
|
+
'LXGW WenKai Mono TC',
|
|
1241
|
+
'Moo Lah Lah',
|
|
1242
|
+
'Slackside One',
|
|
1243
|
+
'Cherish',
|
|
1244
|
+
'Syne Tactile',
|
|
1245
|
+
'Warnes',
|
|
1246
|
+
'Matemasie',
|
|
1247
|
+
'Ingrid Darling',
|
|
1248
|
+
'Annapurna SIL',
|
|
1249
|
+
'Ubuntu Sans Mono',
|
|
1250
|
+
'Bungee Tint',
|
|
1251
|
+
'Petemoss',
|
|
1252
|
+
'Sixtyfour',
|
|
1253
|
+
'Rubik Microbe',
|
|
1254
|
+
'Jacquarda Bastarda 9',
|
|
1255
|
+
'Are You Serious',
|
|
1256
|
+
'Estonia',
|
|
1257
|
+
'Ole',
|
|
1258
|
+
'Dai Banna SIL',
|
|
1259
|
+
'Puppies Play',
|
|
1260
|
+
'Rubik Doodle Triangles',
|
|
1261
|
+
'Blaka Hollow',
|
|
1262
|
+
'Gajraj One',
|
|
1263
|
+
'Namdhinggo',
|
|
1264
|
+
'Narnoor',
|
|
1265
|
+
'Rubik Pixels',
|
|
1266
|
+
'Pochaevsk',
|
|
1267
|
+
'Rubik Marker Hatch',
|
|
1268
|
+
'Blaka Ink',
|
|
1269
|
+
'Chokokutai',
|
|
1270
|
+
'Kay Pho Du',
|
|
1271
|
+
'Yarndings 12',
|
|
1272
|
+
'Yarndings 20 Charted',
|
|
1273
|
+
'Yarndings 20',
|
|
1274
|
+
'Yarndings 12 Charted',
|
|
1275
|
+
];
|
|
1276
|
+
const defaultFonts = {};
|
|
1277
|
+
googleFonts.forEach((font) => (defaultFonts[font] = { type: 'google' }));
|
|
1278
|
+
export { defaultFonts };
|