@remotion/studio 4.0.484 → 4.0.486
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/dist/ResolveCompositionConfigInStudio.js +42 -0
- package/dist/components/AssetSelector.js +1 -1
- package/dist/components/AssetSelectorItem.js +9 -9
- package/dist/components/AudioWaveform.js +3 -3
- package/dist/components/Button.js +2 -2
- package/dist/components/Canvas.js +28 -0
- package/dist/components/CanvasOrLoading.js +1 -1
- package/dist/components/CheckboardToggle.js +1 -1
- package/dist/components/Checkbox.js +3 -3
- package/dist/components/ColorPicker/AlphaSlider.js +4 -3
- package/dist/components/ColorPicker/ColorPicker.js +4 -4
- package/dist/components/ColorPicker/ColorPickerPopup.js +10 -10
- package/dist/components/ColorPicker/HueSlider.js +4 -3
- package/dist/components/ColorPicker/SaturationValueArea.js +5 -4
- package/dist/components/ColorPicker/checker.d.ts +1 -1
- package/dist/components/ColorPicker/checker.js +3 -3
- package/dist/components/CompactExplanation.js +3 -3
- package/dist/components/CompositionSelector.js +141 -5
- package/dist/components/CompositionSelectorItem.d.ts +1 -0
- package/dist/components/CompositionSelectorItem.js +103 -11
- package/dist/components/ContextMenu.js +75 -1
- package/dist/components/CopyButton.js +3 -2
- package/dist/components/CurrentAsset.d.ts +3 -1
- package/dist/components/CurrentAsset.js +15 -2
- package/dist/components/CurrentComposition.js +3 -2
- package/dist/components/EffectPickerModal.js +1 -1
- package/dist/components/FilePreview.js +2 -1
- package/dist/components/FpsCounter.js +3 -2
- package/dist/components/FullscreenToggle.js +2 -1
- package/dist/components/GlobalKeybindings.js +0 -12
- package/dist/components/InlineAction.js +2 -2
- package/dist/components/InlineCompositionName.d.ts +7 -0
- package/dist/components/InlineCompositionName.js +58 -0
- package/dist/components/InlineEditableTitle.d.ts +8 -0
- package/dist/components/InlineEditableTitle.js +134 -0
- package/dist/components/InspectorInfoHeader.js +2 -2
- package/dist/components/InspectorPanel/DefaultInspector.d.ts +1 -0
- package/dist/components/InspectorPanel/DefaultInspector.js +2 -2
- package/dist/components/InspectorPanel/KeyframeEasingNavigator.js +1 -1
- package/dist/components/InspectorPanel/KeyframeInspector.js +1 -0
- package/dist/components/InspectorPanel/SequenceInspectorHeader.js +17 -30
- package/dist/components/InspectorPanel/common.js +2 -2
- package/dist/components/InspectorPanel/styles.js +5 -5
- package/dist/components/InspectorPanel.d.ts +1 -0
- package/dist/components/InspectorPanel.js +2 -2
- package/dist/components/InspectorSequenceSection.js +35 -2
- package/dist/components/InstallablePackage.js +1 -1
- package/dist/components/KeyboardShortcutsExplainer.js +5 -5
- package/dist/components/LoopToggle.js +1 -1
- package/dist/components/Menu/MenuDivider.js +1 -1
- package/dist/components/Menu/MenuItem.js +1 -1
- package/dist/components/Menu/MenuSubItem.js +1 -1
- package/dist/components/Menu/styles.js +3 -3
- package/dist/components/MenuToolbar.js +2 -2
- package/dist/components/ModalButton.js +1 -1
- package/dist/components/ModalContainer.js +3 -3
- package/dist/components/ModalFooter.js +2 -1
- package/dist/components/ModalHeader.js +3 -2
- package/dist/components/Modals.js +2 -1
- package/dist/components/NewComposition/CancelButton.js +4 -3
- package/dist/components/NewComposition/CodemodFooter.d.ts +7 -1
- package/dist/components/NewComposition/CodemodFooter.js +17 -12
- package/dist/components/NewComposition/ComboBox.js +3 -3
- package/dist/components/NewComposition/DeleteComposition.js +7 -1
- package/dist/components/NewComposition/DeleteFolder.js +7 -1
- package/dist/components/NewComposition/DuplicateComposition.js +17 -10
- package/dist/components/NewComposition/InputAndValidationContainer.d.ts +3 -0
- package/dist/components/NewComposition/InputAndValidationContainer.js +15 -0
- package/dist/components/NewComposition/InputDragger.js +11 -3
- package/dist/components/NewComposition/MenuContent.js +1 -1
- package/dist/components/NewComposition/NewCompDuration.js +7 -6
- package/dist/components/NewComposition/NewComposition.d.ts +5 -1
- package/dist/components/NewComposition/NewComposition.js +31 -85
- package/dist/components/NewComposition/NewFolder.d.ts +5 -0
- package/dist/components/NewComposition/NewFolder.js +86 -0
- package/dist/components/NewComposition/RemInput.js +3 -3
- package/dist/components/NewComposition/RemTextarea.js +1 -1
- package/dist/components/NewComposition/RenameComposition.js +13 -14
- package/dist/components/NewComposition/RenameFolder.js +9 -2
- package/dist/components/NewComposition/RenameStaticFile.js +22 -60
- package/dist/components/NewComposition/ValidationMessage.js +10 -2
- package/dist/components/NewComposition/use-rename-static-file.d.ts +18 -0
- package/dist/components/NewComposition/use-rename-static-file.js +90 -0
- package/dist/components/NoRegisterRoot.js +3 -2
- package/dist/components/Notifications/ColorDot.js +3 -2
- package/dist/components/Notifications/Notification.js +4 -4
- package/dist/components/Notifications/NotificationCenter.js +2 -1
- package/dist/components/Notifications/ServerDisconnected.js +5 -4
- package/dist/components/OptionsPanel.d.ts +0 -3
- package/dist/components/OptionsPanel.js +8 -4
- package/dist/components/OutlineToggle.js +1 -1
- package/dist/components/PlayPause.js +4 -3
- package/dist/components/PreviewToolbar.js +1 -1
- package/dist/components/QuickSwitcher/AlgoliaCredit.js +2 -1
- package/dist/components/QuickSwitcher/QuickSwitcherContent.js +1 -1
- package/dist/components/QuickSwitcher/QuickSwitcherResult.js +2 -2
- package/dist/components/RefreshCompositionOverlay.js +2 -1
- package/dist/components/RenderButton.js +9 -9
- package/dist/components/RenderModal/CliCopyButton.js +1 -1
- package/dist/components/RenderModal/ClientRenderProgress.js +1 -1
- package/dist/components/RenderModal/DataEditor.js +1 -1
- package/dist/components/RenderModal/GuiRenderStatus.js +1 -1
- package/dist/components/RenderModal/InfoBubble.js +2 -2
- package/dist/components/RenderModal/InfoTooltip.js +3 -3
- package/dist/components/RenderModal/InlineEyeIcon.js +2 -1
- package/dist/components/RenderModal/InlineRemoveButton.js +2 -1
- package/dist/components/RenderModal/MultiRangeSlider.js +1 -1
- package/dist/components/RenderModal/OptionExplainer.js +2 -2
- package/dist/components/RenderModal/RenderModalHr.js +2 -1
- package/dist/components/RenderModal/RenderStatusModal.js +2 -1
- package/dist/components/RenderModal/SchemaEditor/SchemaLabel.js +1 -5
- package/dist/components/RenderModal/SchemaEditor/SchemaResetButton.js +2 -1
- package/dist/components/RenderModal/SchemaEditor/SchemaSeparationLine.js +1 -1
- package/dist/components/RenderModal/SchemaEditor/SchemaVerticalGuide.js +2 -1
- package/dist/components/RenderModal/SchemaEditor/ZodDateEditor.js +1 -1
- package/dist/components/RenderModal/SchemaEditor/ZodErrorMessages.js +1 -1
- package/dist/components/RenderModal/SchemaEditor/ZodNonEditableValue.js +1 -1
- package/dist/components/RenderModal/SchemaEditor/create-zod-values.js +2 -1
- package/dist/components/RenderModal/ServerRenderModal.js +5 -4
- package/dist/components/RenderModal/WarningIndicatorButton.js +4 -6
- package/dist/components/RenderModal/WebRenderModal.js +2 -1
- package/dist/components/RenderModal/WebRenderModalAudio.js +4 -3
- package/dist/components/RenderModal/WebRenderModalLicense.js +2 -2
- package/dist/components/RenderModal/WebRenderModalPicture.js +2 -1
- package/dist/components/RenderModal/render-modals.js +3 -3
- package/dist/components/RenderPreview.js +1 -1
- package/dist/components/RenderQueue/RenderQueueCopyToClipboard.js +2 -1
- package/dist/components/RenderQueue/RenderQueueDownloadItem.js +2 -1
- package/dist/components/RenderQueue/RenderQueueItemCancelButton.js +2 -1
- package/dist/components/RenderQueue/RenderQueueItemStatus.js +1 -1
- package/dist/components/RenderQueue/RenderQueueOpenInFolder.js +2 -1
- package/dist/components/RenderQueue/RenderQueueRemoveItem.js +2 -1
- package/dist/components/RenderQueue/RenderQueueRepeat.js +2 -1
- package/dist/components/RenderQueue/index.js +1 -1
- package/dist/components/RendersTab.js +2 -2
- package/dist/components/SegmentedControl.js +3 -3
- package/dist/components/SelectedOutlineElement.d.ts +5 -0
- package/dist/components/SelectedOutlineElement.js +52 -10
- package/dist/components/SelectedOutlineOverlay.d.ts +1 -1
- package/dist/components/SelectedOutlineOverlay.js +16 -4
- package/dist/components/SelectedOutlineUvControls.js +5 -5
- package/dist/components/SidebarCollapserControls.js +5 -4
- package/dist/components/Splitter/SplitterElement.js +2 -1
- package/dist/components/StaticFilePreview.js +1 -1
- package/dist/components/Tabs/index.js +3 -3
- package/dist/components/Tabs/vertical.js +3 -3
- package/dist/components/TextViewer.js +2 -1
- package/dist/components/TimeValue.js +1 -1
- package/dist/components/Timeline/EasingEditorModal.js +8 -8
- package/dist/components/Timeline/KeyframeSettingsModal.js +1 -1
- package/dist/components/Timeline/LoopedIndicator.js +2 -2
- package/dist/components/Timeline/MaxTimelineTracks.js +3 -2
- package/dist/components/Timeline/TimelineArrayField.js +6 -5
- package/dist/components/Timeline/TimelineColorField.js +2 -1
- package/dist/components/Timeline/TimelineDeleteKeybindings.js +34 -1
- package/dist/components/Timeline/TimelineEffectItem.js +3 -2
- package/dist/components/Timeline/TimelineEffectPropItem.js +2 -2
- package/dist/components/Timeline/TimelineExpandArrowButton.js +3 -2
- package/dist/components/Timeline/TimelineExpandedRow.js +2 -1
- package/dist/components/Timeline/TimelineExpandedSection.js +2 -1
- package/dist/components/Timeline/TimelineFieldLabel.js +2 -1
- package/dist/components/Timeline/TimelineFontFamilyField.d.ts +11 -0
- package/dist/components/Timeline/TimelineFontFamilyField.js +545 -0
- package/dist/components/Timeline/TimelineImageInfo.js +2 -1
- package/dist/components/Timeline/TimelineInOutPointer.js +2 -1
- package/dist/components/Timeline/TimelineInOutPointerHandle.js +4 -5
- package/dist/components/Timeline/TimelineKeyframeControls.d.ts +1 -1
- package/dist/components/Timeline/TimelineKeyframeControls.js +3 -2
- package/dist/components/Timeline/TimelineKeyframeDiamondIcon.js +1 -1
- package/dist/components/Timeline/TimelineKeyframeEasingLine.js +1 -1
- package/dist/components/Timeline/TimelineLayerEye.js +3 -3
- package/dist/components/Timeline/TimelineMediaInfo.js +2 -2
- package/dist/components/Timeline/TimelinePrimitiveFieldValue.js +8 -0
- package/dist/components/Timeline/TimelineRotationField.js +4 -3
- package/dist/components/Timeline/TimelineScaleField.js +1 -1
- package/dist/components/Timeline/TimelineSchemaField.d.ts +2 -0
- package/dist/components/Timeline/TimelineSchemaField.js +47 -7
- package/dist/components/Timeline/TimelineScrollable.js +3 -2
- package/dist/components/Timeline/TimelineSelection.js +7 -6
- package/dist/components/Timeline/TimelineSequence.js +17 -20
- package/dist/components/Timeline/TimelineSequenceFrame.js +3 -2
- package/dist/components/Timeline/TimelineSequenceItem.js +27 -108
- package/dist/components/Timeline/TimelineSequenceName.js +3 -2
- package/dist/components/Timeline/TimelineSequencePropItem.js +8 -4
- package/dist/components/Timeline/TimelineSequenceRightEdgeDragHandle.d.ts +20 -1
- package/dist/components/Timeline/TimelineSequenceRightEdgeDragHandle.js +128 -11
- package/dist/components/Timeline/TimelineSlider.js +2 -1
- package/dist/components/Timeline/TimelineSliderHandle.js +2 -1
- package/dist/components/Timeline/TimelineTextContentField.d.ts +12 -0
- package/dist/components/Timeline/TimelineTextContentField.js +100 -0
- package/dist/components/Timeline/TimelineTimeIndicators.js +1 -1
- package/dist/components/Timeline/TimelineVideoInfo.js +2 -1
- package/dist/components/Timeline/TimelineWidthProvider.js +18 -3
- package/dist/components/Timeline/TimelineZoomControls.js +4 -3
- package/dist/components/Timeline/call-move-keyframe.d.ts +5 -0
- package/dist/components/Timeline/call-move-keyframe.js +14 -3
- package/dist/components/Timeline/focus-inspector-field.d.ts +16 -0
- package/dist/components/Timeline/focus-inspector-field.js +49 -0
- package/dist/components/Timeline/google-fonts-list.d.ts +6 -0
- package/dist/components/Timeline/google-fonts-list.js +1512 -0
- package/dist/components/Timeline/save-sequence-prop.d.ts +8 -1
- package/dist/components/Timeline/save-sequence-prop.js +63 -19
- package/dist/components/Timeline/split-selected-timeline-item.d.ts +38 -0
- package/dist/components/Timeline/split-selected-timeline-item.js +156 -0
- package/dist/components/Timeline/timeline-field-display-utils.js +2 -0
- package/dist/components/Timeline/timeline-rotation-field-utils.d.ts +5 -0
- package/dist/components/Timeline/timeline-rotation-field-utils.js +16 -0
- package/dist/components/Timeline/timeline-scroll-logic.js +5 -2
- package/dist/components/Timeline/use-expanded-track-keyframe-rows.js +1 -0
- package/dist/components/Timeline/use-rename-sequence.d.ts +30 -0
- package/dist/components/Timeline/use-rename-sequence.js +115 -0
- package/dist/components/Timeline/use-timeline-expanded-tree.d.ts +2 -1
- package/dist/components/Timeline/use-timeline-expanded-tree.js +3 -1
- package/dist/components/Timeline/use-timeline-height.js +1 -0
- package/dist/components/TimelineInOutToggle.js +1 -1
- package/dist/components/UpdateCheck.js +2 -2
- package/dist/components/UpdateModal/OpenIssueButton.js +1 -1
- package/dist/components/VisualControls/ClickableFileName.js +2 -2
- package/dist/components/composition-menu-items.js +3 -0
- package/dist/components/effect-drag-and-drop.js +1 -0
- package/dist/components/folder-menu-items.js +20 -0
- package/dist/components/import-assets.d.ts +7 -1
- package/dist/components/import-assets.js +55 -1
- package/dist/components/options-sidebar-tabs.d.ts +4 -0
- package/dist/components/options-sidebar-tabs.js +5 -0
- package/dist/components/selected-outline-measurement.js +2 -1
- package/dist/components/selected-outline-types.d.ts +6 -1
- package/dist/error-overlay/remotion-overlay/CalculateMetadataErrorExplainer.js +2 -2
- package/dist/error-overlay/remotion-overlay/CodeFrame.js +7 -5
- package/dist/error-overlay/remotion-overlay/CompositionIdListItem.js +2 -2
- package/dist/error-overlay/remotion-overlay/DismissButton.js +3 -2
- package/dist/error-overlay/remotion-overlay/ErrorLoader.js +3 -2
- package/dist/error-overlay/remotion-overlay/ErrorMessage.js +4 -4
- package/dist/error-overlay/remotion-overlay/HelpLink.js +1 -1
- package/dist/error-overlay/remotion-overlay/MediaPlaybackErrorExplainer.js +4 -4
- package/dist/error-overlay/remotion-overlay/Overlay.js +3 -2
- package/dist/error-overlay/remotion-overlay/StackFrame.js +4 -3
- package/dist/error-overlay/remotion-overlay/Symbolicating.js +2 -1
- package/dist/error-overlay/remotion-overlay/carets.js +3 -2
- package/dist/esm/{chunk-9erwh79m.js → chunk-975rp13y.js} +11165 -7032
- package/dist/esm/chunk-jefhcs5z.js +164 -0
- package/dist/esm/internals.mjs +11166 -6999
- package/dist/esm/previewEntry.mjs +10697 -6526
- package/dist/esm/renderEntry.mjs +8 -5
- package/dist/helpers/checkerboard-background.js +4 -12
- package/dist/helpers/colors.d.ts +99 -7
- package/dist/helpers/colors.js +118 -10
- package/dist/helpers/inject-css.js +85 -83
- package/dist/helpers/render-codec-label.d.ts +1 -1
- package/dist/helpers/timeline-layout.d.ts +7 -4
- package/dist/helpers/timeline-layout.js +3 -1
- package/dist/helpers/use-create-composition.d.ts +35 -0
- package/dist/helpers/use-create-composition.js +111 -0
- package/dist/helpers/use-menu-structure.js +31 -3
- package/dist/helpers/use-rename-composition.d.ts +16 -0
- package/dist/helpers/use-rename-composition.js +49 -0
- package/dist/helpers/validate-folder-rename.js +2 -10
- package/dist/helpers/validate-new-folder-name.d.ts +5 -0
- package/dist/helpers/validate-new-folder-name.js +16 -0
- package/dist/hot-middleware-client/client.js +3 -2
- package/dist/icons/Checkmark.js +2 -1
- package/dist/icons/audio.js +2 -1
- package/dist/icons/caret.js +2 -2
- package/dist/icons/certificate.js +2 -1
- package/dist/icons/data.js +2 -1
- package/dist/icons/eyedropper.js +2 -1
- package/dist/icons/file.js +2 -1
- package/dist/icons/frame.js +2 -1
- package/dist/icons/gear.js +2 -1
- package/dist/icons/gif.js +2 -1
- package/dist/icons/jump-to-start.js +2 -1
- package/dist/icons/keys.js +4 -3
- package/dist/icons/media-volume.js +1 -1
- package/dist/icons/minus.js +2 -1
- package/dist/icons/pause.js +2 -1
- package/dist/icons/play.js +2 -1
- package/dist/icons/redo.js +2 -1
- package/dist/icons/step-back.js +2 -1
- package/dist/icons/step-forward.js +2 -1
- package/dist/icons/undo.js +2 -1
- package/dist/previewEntry.js +2 -1
- package/dist/renderEntry.js +4 -3
- package/dist/state/modals.d.ts +7 -0
- package/dist/state/timeline-zoom.js +17 -14
- package/dist/state/z-index.d.ts +1 -0
- package/dist/state/z-index.js +11 -2
- package/package.json +12 -12
- package/dist/esm/chunk-6jf1natv.js +0 -25
|
@@ -0,0 +1,1512 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
exports.GOOGLE_FONTS_LIST = void 0;
|
|
4
|
+
// Auto-generated by packages/studio/scripts/generate-google-font-info.ts
|
|
5
|
+
exports.GOOGLE_FONTS_LIST = [
|
|
6
|
+
{
|
|
7
|
+
importName: 'ABeeZee',
|
|
8
|
+
fontFamily: 'ABeeZee',
|
|
9
|
+
previewUrl: 'ABeeZee',
|
|
10
|
+
weights: ['400'],
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
importName: 'Abel',
|
|
14
|
+
fontFamily: 'Abel',
|
|
15
|
+
previewUrl: 'Abel',
|
|
16
|
+
weights: ['400'],
|
|
17
|
+
},
|
|
18
|
+
{
|
|
19
|
+
importName: 'AbrilFatface',
|
|
20
|
+
fontFamily: 'Abril Fatface',
|
|
21
|
+
previewUrl: 'Abril+Fatface',
|
|
22
|
+
weights: ['400'],
|
|
23
|
+
},
|
|
24
|
+
{
|
|
25
|
+
importName: 'Acme',
|
|
26
|
+
fontFamily: 'Acme',
|
|
27
|
+
previewUrl: 'Acme',
|
|
28
|
+
weights: ['400'],
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
importName: 'Alata',
|
|
32
|
+
fontFamily: 'Alata',
|
|
33
|
+
previewUrl: 'Alata',
|
|
34
|
+
weights: ['400'],
|
|
35
|
+
},
|
|
36
|
+
{
|
|
37
|
+
importName: 'AlbertSans',
|
|
38
|
+
fontFamily: 'Albert Sans',
|
|
39
|
+
previewUrl: 'Albert+Sans',
|
|
40
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
41
|
+
},
|
|
42
|
+
{
|
|
43
|
+
importName: 'Alegreya',
|
|
44
|
+
fontFamily: 'Alegreya',
|
|
45
|
+
previewUrl: 'Alegreya',
|
|
46
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
47
|
+
},
|
|
48
|
+
{
|
|
49
|
+
importName: 'AlegreyaSans',
|
|
50
|
+
fontFamily: 'Alegreya Sans',
|
|
51
|
+
previewUrl: 'Alegreya+Sans',
|
|
52
|
+
weights: ['100', '300', '400', '500', '700', '800', '900'],
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
importName: 'AlegreyaSansSC',
|
|
56
|
+
fontFamily: 'Alegreya Sans SC',
|
|
57
|
+
previewUrl: 'Alegreya+Sans+SC',
|
|
58
|
+
weights: ['100', '300', '400', '500', '700', '800', '900'],
|
|
59
|
+
},
|
|
60
|
+
{
|
|
61
|
+
importName: 'AlfaSlabOne',
|
|
62
|
+
fontFamily: 'Alfa Slab One',
|
|
63
|
+
previewUrl: 'Alfa+Slab+One',
|
|
64
|
+
weights: ['400'],
|
|
65
|
+
},
|
|
66
|
+
{
|
|
67
|
+
importName: 'Alice',
|
|
68
|
+
fontFamily: 'Alice',
|
|
69
|
+
previewUrl: 'Alice',
|
|
70
|
+
weights: ['400'],
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
importName: 'Almarai',
|
|
74
|
+
fontFamily: 'Almarai',
|
|
75
|
+
previewUrl: 'Almarai',
|
|
76
|
+
weights: ['300', '400', '700', '800'],
|
|
77
|
+
},
|
|
78
|
+
{
|
|
79
|
+
importName: 'AmaticSC',
|
|
80
|
+
fontFamily: 'Amatic SC',
|
|
81
|
+
previewUrl: 'Amatic+SC',
|
|
82
|
+
weights: ['400', '700'],
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
importName: 'Amiri',
|
|
86
|
+
fontFamily: 'Amiri',
|
|
87
|
+
previewUrl: 'Amiri',
|
|
88
|
+
weights: ['400', '700'],
|
|
89
|
+
},
|
|
90
|
+
{
|
|
91
|
+
importName: 'AnticSlab',
|
|
92
|
+
fontFamily: 'Antic Slab',
|
|
93
|
+
previewUrl: 'Antic+Slab',
|
|
94
|
+
weights: ['400'],
|
|
95
|
+
},
|
|
96
|
+
{
|
|
97
|
+
importName: 'Anton',
|
|
98
|
+
fontFamily: 'Anton',
|
|
99
|
+
previewUrl: 'Anton',
|
|
100
|
+
weights: ['400'],
|
|
101
|
+
},
|
|
102
|
+
{
|
|
103
|
+
importName: 'ArchitectsDaughter',
|
|
104
|
+
fontFamily: 'Architects Daughter',
|
|
105
|
+
previewUrl: 'Architects+Daughter',
|
|
106
|
+
weights: ['400'],
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
importName: 'Archivo',
|
|
110
|
+
fontFamily: 'Archivo',
|
|
111
|
+
previewUrl: 'Archivo',
|
|
112
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
113
|
+
},
|
|
114
|
+
{
|
|
115
|
+
importName: 'ArchivoBlack',
|
|
116
|
+
fontFamily: 'Archivo Black',
|
|
117
|
+
previewUrl: 'Archivo+Black',
|
|
118
|
+
weights: ['400'],
|
|
119
|
+
},
|
|
120
|
+
{
|
|
121
|
+
importName: 'ArchivoNarrow',
|
|
122
|
+
fontFamily: 'Archivo Narrow',
|
|
123
|
+
previewUrl: 'Archivo+Narrow',
|
|
124
|
+
weights: ['400', '500', '600', '700'],
|
|
125
|
+
},
|
|
126
|
+
{
|
|
127
|
+
importName: 'Arimo',
|
|
128
|
+
fontFamily: 'Arimo',
|
|
129
|
+
previewUrl: 'Arimo',
|
|
130
|
+
weights: ['400', '500', '600', '700'],
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
importName: 'Arsenal',
|
|
134
|
+
fontFamily: 'Arsenal',
|
|
135
|
+
previewUrl: 'Arsenal',
|
|
136
|
+
weights: ['400', '700'],
|
|
137
|
+
},
|
|
138
|
+
{
|
|
139
|
+
importName: 'Arvo',
|
|
140
|
+
fontFamily: 'Arvo',
|
|
141
|
+
previewUrl: 'Arvo',
|
|
142
|
+
weights: ['400', '700'],
|
|
143
|
+
},
|
|
144
|
+
{
|
|
145
|
+
importName: 'Asap',
|
|
146
|
+
fontFamily: 'Asap',
|
|
147
|
+
previewUrl: 'Asap',
|
|
148
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
149
|
+
},
|
|
150
|
+
{
|
|
151
|
+
importName: 'AsapCondensed',
|
|
152
|
+
fontFamily: 'Asap Condensed',
|
|
153
|
+
previewUrl: 'Asap+Condensed',
|
|
154
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
importName: 'Assistant',
|
|
158
|
+
fontFamily: 'Assistant',
|
|
159
|
+
previewUrl: 'Assistant',
|
|
160
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
161
|
+
},
|
|
162
|
+
{
|
|
163
|
+
importName: 'Barlow',
|
|
164
|
+
fontFamily: 'Barlow',
|
|
165
|
+
previewUrl: 'Barlow',
|
|
166
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
167
|
+
},
|
|
168
|
+
{
|
|
169
|
+
importName: 'BarlowCondensed',
|
|
170
|
+
fontFamily: 'Barlow Condensed',
|
|
171
|
+
previewUrl: 'Barlow+Condensed',
|
|
172
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
173
|
+
},
|
|
174
|
+
{
|
|
175
|
+
importName: 'BarlowSemiCondensed',
|
|
176
|
+
fontFamily: 'Barlow Semi Condensed',
|
|
177
|
+
previewUrl: 'Barlow+Semi+Condensed',
|
|
178
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
importName: 'BeVietnamPro',
|
|
182
|
+
fontFamily: 'Be Vietnam Pro',
|
|
183
|
+
previewUrl: 'Be+Vietnam+Pro',
|
|
184
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
185
|
+
},
|
|
186
|
+
{
|
|
187
|
+
importName: 'BebasNeue',
|
|
188
|
+
fontFamily: 'Bebas Neue',
|
|
189
|
+
previewUrl: 'Bebas+Neue',
|
|
190
|
+
weights: ['400'],
|
|
191
|
+
},
|
|
192
|
+
{
|
|
193
|
+
importName: 'Bitter',
|
|
194
|
+
fontFamily: 'Bitter',
|
|
195
|
+
previewUrl: 'Bitter',
|
|
196
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
197
|
+
},
|
|
198
|
+
{
|
|
199
|
+
importName: 'BlackOpsOne',
|
|
200
|
+
fontFamily: 'Black Ops One',
|
|
201
|
+
previewUrl: 'Black+Ops+One',
|
|
202
|
+
weights: ['400'],
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
importName: 'BodoniModa',
|
|
206
|
+
fontFamily: 'Bodoni Moda',
|
|
207
|
+
previewUrl: 'Bodoni+Moda',
|
|
208
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
209
|
+
},
|
|
210
|
+
{
|
|
211
|
+
importName: 'BreeSerif',
|
|
212
|
+
fontFamily: 'Bree Serif',
|
|
213
|
+
previewUrl: 'Bree+Serif',
|
|
214
|
+
weights: ['400'],
|
|
215
|
+
},
|
|
216
|
+
{
|
|
217
|
+
importName: 'Bungee',
|
|
218
|
+
fontFamily: 'Bungee',
|
|
219
|
+
previewUrl: 'Bungee',
|
|
220
|
+
weights: ['400'],
|
|
221
|
+
},
|
|
222
|
+
{
|
|
223
|
+
importName: 'Cabin',
|
|
224
|
+
fontFamily: 'Cabin',
|
|
225
|
+
previewUrl: 'Cabin',
|
|
226
|
+
weights: ['400', '500', '600', '700'],
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
importName: 'Cairo',
|
|
230
|
+
fontFamily: 'Cairo',
|
|
231
|
+
previewUrl: 'Cairo',
|
|
232
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
233
|
+
},
|
|
234
|
+
{
|
|
235
|
+
importName: 'Cantarell',
|
|
236
|
+
fontFamily: 'Cantarell',
|
|
237
|
+
previewUrl: 'Cantarell',
|
|
238
|
+
weights: ['400', '700'],
|
|
239
|
+
},
|
|
240
|
+
{
|
|
241
|
+
importName: 'Cardo',
|
|
242
|
+
fontFamily: 'Cardo',
|
|
243
|
+
previewUrl: 'Cardo',
|
|
244
|
+
weights: ['400', '700'],
|
|
245
|
+
},
|
|
246
|
+
{
|
|
247
|
+
importName: 'Catamaran',
|
|
248
|
+
fontFamily: 'Catamaran',
|
|
249
|
+
previewUrl: 'Catamaran',
|
|
250
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
importName: 'Caveat',
|
|
254
|
+
fontFamily: 'Caveat',
|
|
255
|
+
previewUrl: 'Caveat',
|
|
256
|
+
weights: ['400', '500', '600', '700'],
|
|
257
|
+
},
|
|
258
|
+
{
|
|
259
|
+
importName: 'ChakraPetch',
|
|
260
|
+
fontFamily: 'Chakra Petch',
|
|
261
|
+
previewUrl: 'Chakra+Petch',
|
|
262
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
263
|
+
},
|
|
264
|
+
{
|
|
265
|
+
importName: 'Changa',
|
|
266
|
+
fontFamily: 'Changa',
|
|
267
|
+
previewUrl: 'Changa',
|
|
268
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
269
|
+
},
|
|
270
|
+
{
|
|
271
|
+
importName: 'Chivo',
|
|
272
|
+
fontFamily: 'Chivo',
|
|
273
|
+
previewUrl: 'Chivo',
|
|
274
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
275
|
+
},
|
|
276
|
+
{
|
|
277
|
+
importName: 'Cinzel',
|
|
278
|
+
fontFamily: 'Cinzel',
|
|
279
|
+
previewUrl: 'Cinzel',
|
|
280
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
281
|
+
},
|
|
282
|
+
{
|
|
283
|
+
importName: 'Comfortaa',
|
|
284
|
+
fontFamily: 'Comfortaa',
|
|
285
|
+
previewUrl: 'Comfortaa',
|
|
286
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
287
|
+
},
|
|
288
|
+
{
|
|
289
|
+
importName: 'Commissioner',
|
|
290
|
+
fontFamily: 'Commissioner',
|
|
291
|
+
previewUrl: 'Commissioner',
|
|
292
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
293
|
+
},
|
|
294
|
+
{
|
|
295
|
+
importName: 'ConcertOne',
|
|
296
|
+
fontFamily: 'Concert One',
|
|
297
|
+
previewUrl: 'Concert+One',
|
|
298
|
+
weights: ['400'],
|
|
299
|
+
},
|
|
300
|
+
{
|
|
301
|
+
importName: 'Cookie',
|
|
302
|
+
fontFamily: 'Cookie',
|
|
303
|
+
previewUrl: 'Cookie',
|
|
304
|
+
weights: ['400'],
|
|
305
|
+
},
|
|
306
|
+
{
|
|
307
|
+
importName: 'Cormorant',
|
|
308
|
+
fontFamily: 'Cormorant',
|
|
309
|
+
previewUrl: 'Cormorant',
|
|
310
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
311
|
+
},
|
|
312
|
+
{
|
|
313
|
+
importName: 'CormorantGaramond',
|
|
314
|
+
fontFamily: 'Cormorant Garamond',
|
|
315
|
+
previewUrl: 'Cormorant+Garamond',
|
|
316
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
317
|
+
},
|
|
318
|
+
{
|
|
319
|
+
importName: 'Courgette',
|
|
320
|
+
fontFamily: 'Courgette',
|
|
321
|
+
previewUrl: 'Courgette',
|
|
322
|
+
weights: ['400'],
|
|
323
|
+
},
|
|
324
|
+
{
|
|
325
|
+
importName: 'CreteRound',
|
|
326
|
+
fontFamily: 'Crete Round',
|
|
327
|
+
previewUrl: 'Crete+Round',
|
|
328
|
+
weights: ['400'],
|
|
329
|
+
},
|
|
330
|
+
{
|
|
331
|
+
importName: 'CrimsonPro',
|
|
332
|
+
fontFamily: 'Crimson Pro',
|
|
333
|
+
previewUrl: 'Crimson+Pro',
|
|
334
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
335
|
+
},
|
|
336
|
+
{
|
|
337
|
+
importName: 'CrimsonText',
|
|
338
|
+
fontFamily: 'Crimson Text',
|
|
339
|
+
previewUrl: 'Crimson+Text',
|
|
340
|
+
weights: ['400', '600', '700'],
|
|
341
|
+
},
|
|
342
|
+
{
|
|
343
|
+
importName: 'Cuprum',
|
|
344
|
+
fontFamily: 'Cuprum',
|
|
345
|
+
previewUrl: 'Cuprum',
|
|
346
|
+
weights: ['400', '500', '600', '700'],
|
|
347
|
+
},
|
|
348
|
+
{
|
|
349
|
+
importName: 'DMSans',
|
|
350
|
+
fontFamily: 'DM Sans',
|
|
351
|
+
previewUrl: 'DM+Sans',
|
|
352
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
353
|
+
},
|
|
354
|
+
{
|
|
355
|
+
importName: 'DMSerifDisplay',
|
|
356
|
+
fontFamily: 'DM Serif Display',
|
|
357
|
+
previewUrl: 'DM+Serif+Display',
|
|
358
|
+
weights: ['400'],
|
|
359
|
+
},
|
|
360
|
+
{
|
|
361
|
+
importName: 'DMSerifText',
|
|
362
|
+
fontFamily: 'DM Serif Text',
|
|
363
|
+
previewUrl: 'DM+Serif+Text',
|
|
364
|
+
weights: ['400'],
|
|
365
|
+
},
|
|
366
|
+
{
|
|
367
|
+
importName: 'DancingScript',
|
|
368
|
+
fontFamily: 'Dancing Script',
|
|
369
|
+
previewUrl: 'Dancing+Script',
|
|
370
|
+
weights: ['400', '500', '600', '700'],
|
|
371
|
+
},
|
|
372
|
+
{
|
|
373
|
+
importName: 'DidactGothic',
|
|
374
|
+
fontFamily: 'Didact Gothic',
|
|
375
|
+
previewUrl: 'Didact+Gothic',
|
|
376
|
+
weights: ['400'],
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
importName: 'Domine',
|
|
380
|
+
fontFamily: 'Domine',
|
|
381
|
+
previewUrl: 'Domine',
|
|
382
|
+
weights: ['400', '500', '600', '700'],
|
|
383
|
+
},
|
|
384
|
+
{
|
|
385
|
+
importName: 'Dosis',
|
|
386
|
+
fontFamily: 'Dosis',
|
|
387
|
+
previewUrl: 'Dosis',
|
|
388
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
389
|
+
},
|
|
390
|
+
{
|
|
391
|
+
importName: 'EBGaramond',
|
|
392
|
+
fontFamily: 'EB Garamond',
|
|
393
|
+
previewUrl: 'EB+Garamond',
|
|
394
|
+
weights: ['400', '500', '600', '700', '800'],
|
|
395
|
+
},
|
|
396
|
+
{
|
|
397
|
+
importName: 'Eczar',
|
|
398
|
+
fontFamily: 'Eczar',
|
|
399
|
+
previewUrl: 'Eczar',
|
|
400
|
+
weights: ['400', '500', '600', '700', '800'],
|
|
401
|
+
},
|
|
402
|
+
{
|
|
403
|
+
importName: 'ElMessiri',
|
|
404
|
+
fontFamily: 'El Messiri',
|
|
405
|
+
previewUrl: 'El+Messiri',
|
|
406
|
+
weights: ['400', '500', '600', '700'],
|
|
407
|
+
},
|
|
408
|
+
{
|
|
409
|
+
importName: 'Electrolize',
|
|
410
|
+
fontFamily: 'Electrolize',
|
|
411
|
+
previewUrl: 'Electrolize',
|
|
412
|
+
weights: ['400'],
|
|
413
|
+
},
|
|
414
|
+
{
|
|
415
|
+
importName: 'EncodeSans',
|
|
416
|
+
fontFamily: 'Encode Sans',
|
|
417
|
+
previewUrl: 'Encode+Sans',
|
|
418
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
419
|
+
},
|
|
420
|
+
{
|
|
421
|
+
importName: 'EncodeSansCondensed',
|
|
422
|
+
fontFamily: 'Encode Sans Condensed',
|
|
423
|
+
previewUrl: 'Encode+Sans+Condensed',
|
|
424
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
425
|
+
},
|
|
426
|
+
{
|
|
427
|
+
importName: 'Exo',
|
|
428
|
+
fontFamily: 'Exo',
|
|
429
|
+
previewUrl: 'Exo',
|
|
430
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
431
|
+
},
|
|
432
|
+
{
|
|
433
|
+
importName: 'Exo2',
|
|
434
|
+
fontFamily: 'Exo Two',
|
|
435
|
+
previewUrl: 'Exo+2',
|
|
436
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
437
|
+
},
|
|
438
|
+
{
|
|
439
|
+
importName: 'Figtree',
|
|
440
|
+
fontFamily: 'Figtree',
|
|
441
|
+
previewUrl: 'Figtree',
|
|
442
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
443
|
+
},
|
|
444
|
+
{
|
|
445
|
+
importName: 'FiraSans',
|
|
446
|
+
fontFamily: 'Fira Sans',
|
|
447
|
+
previewUrl: 'Fira+Sans',
|
|
448
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
449
|
+
},
|
|
450
|
+
{
|
|
451
|
+
importName: 'FiraSansCondensed',
|
|
452
|
+
fontFamily: 'Fira Sans Condensed',
|
|
453
|
+
previewUrl: 'Fira+Sans+Condensed',
|
|
454
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
455
|
+
},
|
|
456
|
+
{
|
|
457
|
+
importName: 'FjallaOne',
|
|
458
|
+
fontFamily: 'Fjalla One',
|
|
459
|
+
previewUrl: 'Fjalla+One',
|
|
460
|
+
weights: ['400'],
|
|
461
|
+
},
|
|
462
|
+
{
|
|
463
|
+
importName: 'FrancoisOne',
|
|
464
|
+
fontFamily: 'Francois One',
|
|
465
|
+
previewUrl: 'Francois+One',
|
|
466
|
+
weights: ['400'],
|
|
467
|
+
},
|
|
468
|
+
{
|
|
469
|
+
importName: 'FrankRuhlLibre',
|
|
470
|
+
fontFamily: 'Frank Ruhl Libre',
|
|
471
|
+
previewUrl: 'Frank+Ruhl+Libre',
|
|
472
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
473
|
+
},
|
|
474
|
+
{
|
|
475
|
+
importName: 'Fraunces',
|
|
476
|
+
fontFamily: 'Fraunces',
|
|
477
|
+
previewUrl: 'Fraunces',
|
|
478
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
479
|
+
},
|
|
480
|
+
{
|
|
481
|
+
importName: 'Gelasio',
|
|
482
|
+
fontFamily: 'Gelasio',
|
|
483
|
+
previewUrl: 'Gelasio',
|
|
484
|
+
weights: ['400', '500', '600', '700'],
|
|
485
|
+
},
|
|
486
|
+
{
|
|
487
|
+
importName: 'GloriaHallelujah',
|
|
488
|
+
fontFamily: 'Gloria Hallelujah',
|
|
489
|
+
previewUrl: 'Gloria+Hallelujah',
|
|
490
|
+
weights: ['400'],
|
|
491
|
+
},
|
|
492
|
+
{
|
|
493
|
+
importName: 'GothicA1',
|
|
494
|
+
fontFamily: 'Gothic AOne',
|
|
495
|
+
previewUrl: 'Gothic+A1',
|
|
496
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
497
|
+
},
|
|
498
|
+
{
|
|
499
|
+
importName: 'GreatVibes',
|
|
500
|
+
fontFamily: 'Great Vibes',
|
|
501
|
+
previewUrl: 'Great+Vibes',
|
|
502
|
+
weights: ['400'],
|
|
503
|
+
},
|
|
504
|
+
{
|
|
505
|
+
importName: 'Gruppo',
|
|
506
|
+
fontFamily: 'Gruppo',
|
|
507
|
+
previewUrl: 'Gruppo',
|
|
508
|
+
weights: ['400'],
|
|
509
|
+
},
|
|
510
|
+
{
|
|
511
|
+
importName: 'Heebo',
|
|
512
|
+
fontFamily: 'Heebo',
|
|
513
|
+
previewUrl: 'Heebo',
|
|
514
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
515
|
+
},
|
|
516
|
+
{
|
|
517
|
+
importName: 'Hind',
|
|
518
|
+
fontFamily: 'Hind',
|
|
519
|
+
previewUrl: 'Hind',
|
|
520
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
521
|
+
},
|
|
522
|
+
{
|
|
523
|
+
importName: 'HindMadurai',
|
|
524
|
+
fontFamily: 'Hind Madurai',
|
|
525
|
+
previewUrl: 'Hind+Madurai',
|
|
526
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
527
|
+
},
|
|
528
|
+
{
|
|
529
|
+
importName: 'HindSiliguri',
|
|
530
|
+
fontFamily: 'Hind Siliguri',
|
|
531
|
+
previewUrl: 'Hind+Siliguri',
|
|
532
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
533
|
+
},
|
|
534
|
+
{
|
|
535
|
+
importName: 'IBMPlexMono',
|
|
536
|
+
fontFamily: 'IBM Plex Mono',
|
|
537
|
+
previewUrl: 'IBM+Plex+Mono',
|
|
538
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
539
|
+
},
|
|
540
|
+
{
|
|
541
|
+
importName: 'IBMPlexSans',
|
|
542
|
+
fontFamily: 'IBM Plex Sans',
|
|
543
|
+
previewUrl: 'IBM+Plex+Sans',
|
|
544
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
545
|
+
},
|
|
546
|
+
{
|
|
547
|
+
importName: 'IBMPlexSansArabic',
|
|
548
|
+
fontFamily: 'IBM Plex Sans Arabic',
|
|
549
|
+
previewUrl: 'IBM+Plex+Sans+Arabic',
|
|
550
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
551
|
+
},
|
|
552
|
+
{
|
|
553
|
+
importName: 'IBMPlexSansCondensed',
|
|
554
|
+
fontFamily: 'IBM Plex Sans Condensed',
|
|
555
|
+
previewUrl: 'IBM+Plex+Sans+Condensed',
|
|
556
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
importName: 'IBMPlexSerif',
|
|
560
|
+
fontFamily: 'IBM Plex Serif',
|
|
561
|
+
previewUrl: 'IBM+Plex+Serif',
|
|
562
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
563
|
+
},
|
|
564
|
+
{
|
|
565
|
+
importName: 'Inconsolata',
|
|
566
|
+
fontFamily: 'Inconsolata',
|
|
567
|
+
previewUrl: 'Inconsolata',
|
|
568
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
569
|
+
},
|
|
570
|
+
{
|
|
571
|
+
importName: 'IndieFlower',
|
|
572
|
+
fontFamily: 'Indie Flower',
|
|
573
|
+
previewUrl: 'Indie+Flower',
|
|
574
|
+
weights: ['400'],
|
|
575
|
+
},
|
|
576
|
+
{
|
|
577
|
+
importName: 'Inter',
|
|
578
|
+
fontFamily: 'Inter',
|
|
579
|
+
previewUrl: 'Inter',
|
|
580
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
581
|
+
},
|
|
582
|
+
{
|
|
583
|
+
importName: 'InterTight',
|
|
584
|
+
fontFamily: 'Inter Tight',
|
|
585
|
+
previewUrl: 'Inter+Tight',
|
|
586
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
587
|
+
},
|
|
588
|
+
{
|
|
589
|
+
importName: 'JosefinSans',
|
|
590
|
+
fontFamily: 'Josefin Sans',
|
|
591
|
+
previewUrl: 'Josefin+Sans',
|
|
592
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
593
|
+
},
|
|
594
|
+
{
|
|
595
|
+
importName: 'JosefinSlab',
|
|
596
|
+
fontFamily: 'Josefin Slab',
|
|
597
|
+
previewUrl: 'Josefin+Slab',
|
|
598
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
599
|
+
},
|
|
600
|
+
{
|
|
601
|
+
importName: 'Jost',
|
|
602
|
+
fontFamily: 'Jost',
|
|
603
|
+
previewUrl: 'Jost',
|
|
604
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
605
|
+
},
|
|
606
|
+
{
|
|
607
|
+
importName: 'Kalam',
|
|
608
|
+
fontFamily: 'Kalam',
|
|
609
|
+
previewUrl: 'Kalam',
|
|
610
|
+
weights: ['300', '400', '700'],
|
|
611
|
+
},
|
|
612
|
+
{
|
|
613
|
+
importName: 'Kanit',
|
|
614
|
+
fontFamily: 'Kanit',
|
|
615
|
+
previewUrl: 'Kanit',
|
|
616
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
617
|
+
},
|
|
618
|
+
{
|
|
619
|
+
importName: 'Karla',
|
|
620
|
+
fontFamily: 'Karla',
|
|
621
|
+
previewUrl: 'Karla',
|
|
622
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
623
|
+
},
|
|
624
|
+
{
|
|
625
|
+
importName: 'KaushanScript',
|
|
626
|
+
fontFamily: 'Kaushan Script',
|
|
627
|
+
previewUrl: 'Kaushan+Script',
|
|
628
|
+
weights: ['400'],
|
|
629
|
+
},
|
|
630
|
+
{
|
|
631
|
+
importName: 'Khand',
|
|
632
|
+
fontFamily: 'Khand',
|
|
633
|
+
previewUrl: 'Khand',
|
|
634
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
635
|
+
},
|
|
636
|
+
{
|
|
637
|
+
importName: 'Lato',
|
|
638
|
+
fontFamily: 'Lato',
|
|
639
|
+
previewUrl: 'Lato',
|
|
640
|
+
weights: ['100', '300', '400', '700', '900'],
|
|
641
|
+
},
|
|
642
|
+
{
|
|
643
|
+
importName: 'LeagueSpartan',
|
|
644
|
+
fontFamily: 'League Spartan',
|
|
645
|
+
previewUrl: 'League+Spartan',
|
|
646
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
647
|
+
},
|
|
648
|
+
{
|
|
649
|
+
importName: 'Lexend',
|
|
650
|
+
fontFamily: 'Lexend',
|
|
651
|
+
previewUrl: 'Lexend',
|
|
652
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
653
|
+
},
|
|
654
|
+
{
|
|
655
|
+
importName: 'LexendDeca',
|
|
656
|
+
fontFamily: 'Lexend Deca',
|
|
657
|
+
previewUrl: 'Lexend+Deca',
|
|
658
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
659
|
+
},
|
|
660
|
+
{
|
|
661
|
+
importName: 'LibreBarcode39',
|
|
662
|
+
fontFamily: 'Libre Barcode ThreeNine',
|
|
663
|
+
previewUrl: 'Libre+Barcode+39',
|
|
664
|
+
weights: ['400'],
|
|
665
|
+
},
|
|
666
|
+
{
|
|
667
|
+
importName: 'LibreBaskerville',
|
|
668
|
+
fontFamily: 'Libre Baskerville',
|
|
669
|
+
previewUrl: 'Libre+Baskerville',
|
|
670
|
+
weights: ['400', '500', '600', '700'],
|
|
671
|
+
},
|
|
672
|
+
{
|
|
673
|
+
importName: 'LibreCaslonText',
|
|
674
|
+
fontFamily: 'Libre Caslon Text',
|
|
675
|
+
previewUrl: 'Libre+Caslon+Text',
|
|
676
|
+
weights: ['400', '700'],
|
|
677
|
+
},
|
|
678
|
+
{
|
|
679
|
+
importName: 'LibreFranklin',
|
|
680
|
+
fontFamily: 'Libre Franklin',
|
|
681
|
+
previewUrl: 'Libre+Franklin',
|
|
682
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
683
|
+
},
|
|
684
|
+
{
|
|
685
|
+
importName: 'LilitaOne',
|
|
686
|
+
fontFamily: 'Lilita One',
|
|
687
|
+
previewUrl: 'Lilita+One',
|
|
688
|
+
weights: ['400'],
|
|
689
|
+
},
|
|
690
|
+
{
|
|
691
|
+
importName: 'Lobster',
|
|
692
|
+
fontFamily: 'Lobster',
|
|
693
|
+
previewUrl: 'Lobster',
|
|
694
|
+
weights: ['400'],
|
|
695
|
+
},
|
|
696
|
+
{
|
|
697
|
+
importName: 'LobsterTwo',
|
|
698
|
+
fontFamily: 'Lobster Two',
|
|
699
|
+
previewUrl: 'Lobster+Two',
|
|
700
|
+
weights: ['400', '700'],
|
|
701
|
+
},
|
|
702
|
+
{
|
|
703
|
+
importName: 'Lora',
|
|
704
|
+
fontFamily: 'Lora',
|
|
705
|
+
previewUrl: 'Lora',
|
|
706
|
+
weights: ['400', '500', '600', '700'],
|
|
707
|
+
},
|
|
708
|
+
{
|
|
709
|
+
importName: 'LuckiestGuy',
|
|
710
|
+
fontFamily: 'Luckiest Guy',
|
|
711
|
+
previewUrl: 'Luckiest+Guy',
|
|
712
|
+
weights: ['400'],
|
|
713
|
+
},
|
|
714
|
+
{
|
|
715
|
+
importName: 'MPLUS1p',
|
|
716
|
+
fontFamily: 'M PLUS Onep',
|
|
717
|
+
previewUrl: 'M+PLUS+1p',
|
|
718
|
+
weights: ['100', '300', '400', '500', '700', '800', '900'],
|
|
719
|
+
},
|
|
720
|
+
{
|
|
721
|
+
importName: 'MPLUSRounded1c',
|
|
722
|
+
fontFamily: 'M PLUS Rounded Onec',
|
|
723
|
+
previewUrl: 'M+PLUS+Rounded+1c',
|
|
724
|
+
weights: ['100', '300', '400', '500', '700', '800', '900'],
|
|
725
|
+
},
|
|
726
|
+
{
|
|
727
|
+
importName: 'Macondo',
|
|
728
|
+
fontFamily: 'Macondo',
|
|
729
|
+
previewUrl: 'Macondo',
|
|
730
|
+
weights: ['400'],
|
|
731
|
+
},
|
|
732
|
+
{
|
|
733
|
+
importName: 'Manrope',
|
|
734
|
+
fontFamily: 'Manrope',
|
|
735
|
+
previewUrl: 'Manrope',
|
|
736
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
737
|
+
},
|
|
738
|
+
{
|
|
739
|
+
importName: 'Marcellus',
|
|
740
|
+
fontFamily: 'Marcellus',
|
|
741
|
+
previewUrl: 'Marcellus',
|
|
742
|
+
weights: ['400'],
|
|
743
|
+
},
|
|
744
|
+
{
|
|
745
|
+
importName: 'Martel',
|
|
746
|
+
fontFamily: 'Martel',
|
|
747
|
+
previewUrl: 'Martel',
|
|
748
|
+
weights: ['200', '300', '400', '600', '700', '800', '900'],
|
|
749
|
+
},
|
|
750
|
+
{
|
|
751
|
+
importName: 'Mate',
|
|
752
|
+
fontFamily: 'Mate',
|
|
753
|
+
previewUrl: 'Mate',
|
|
754
|
+
weights: ['400'],
|
|
755
|
+
},
|
|
756
|
+
{
|
|
757
|
+
importName: 'MateSC',
|
|
758
|
+
fontFamily: 'Mate SC',
|
|
759
|
+
previewUrl: 'Mate+SC',
|
|
760
|
+
weights: ['400'],
|
|
761
|
+
},
|
|
762
|
+
{
|
|
763
|
+
importName: 'MavenPro',
|
|
764
|
+
fontFamily: 'Maven Pro',
|
|
765
|
+
previewUrl: 'Maven+Pro',
|
|
766
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
767
|
+
},
|
|
768
|
+
{
|
|
769
|
+
importName: 'Merienda',
|
|
770
|
+
fontFamily: 'Merienda',
|
|
771
|
+
previewUrl: 'Merienda',
|
|
772
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
773
|
+
},
|
|
774
|
+
{
|
|
775
|
+
importName: 'Merriweather',
|
|
776
|
+
fontFamily: 'Merriweather',
|
|
777
|
+
previewUrl: 'Merriweather',
|
|
778
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
779
|
+
},
|
|
780
|
+
{
|
|
781
|
+
importName: 'MerriweatherSans',
|
|
782
|
+
fontFamily: 'Merriweather Sans',
|
|
783
|
+
previewUrl: 'Merriweather+Sans',
|
|
784
|
+
weights: ['300', '400', '500', '600', '700', '800'],
|
|
785
|
+
},
|
|
786
|
+
{
|
|
787
|
+
importName: 'Montserrat',
|
|
788
|
+
fontFamily: 'Montserrat',
|
|
789
|
+
previewUrl: 'Montserrat',
|
|
790
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
791
|
+
},
|
|
792
|
+
{
|
|
793
|
+
importName: 'MontserratAlternates',
|
|
794
|
+
fontFamily: 'Montserrat Alternates',
|
|
795
|
+
previewUrl: 'Montserrat+Alternates',
|
|
796
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
797
|
+
},
|
|
798
|
+
{
|
|
799
|
+
importName: 'Mukta',
|
|
800
|
+
fontFamily: 'Mukta',
|
|
801
|
+
previewUrl: 'Mukta',
|
|
802
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
803
|
+
},
|
|
804
|
+
{
|
|
805
|
+
importName: 'Mulish',
|
|
806
|
+
fontFamily: 'Mulish',
|
|
807
|
+
previewUrl: 'Mulish',
|
|
808
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
809
|
+
},
|
|
810
|
+
{
|
|
811
|
+
importName: 'NanumGothic',
|
|
812
|
+
fontFamily: 'Nanum Gothic',
|
|
813
|
+
previewUrl: 'Nanum+Gothic',
|
|
814
|
+
weights: ['400', '700', '800'],
|
|
815
|
+
},
|
|
816
|
+
{
|
|
817
|
+
importName: 'NanumGothicCoding',
|
|
818
|
+
fontFamily: 'Nanum Gothic Coding',
|
|
819
|
+
previewUrl: 'Nanum+Gothic+Coding',
|
|
820
|
+
weights: ['400', '700'],
|
|
821
|
+
},
|
|
822
|
+
{
|
|
823
|
+
importName: 'NanumMyeongjo',
|
|
824
|
+
fontFamily: 'Nanum Myeongjo',
|
|
825
|
+
previewUrl: 'Nanum+Myeongjo',
|
|
826
|
+
weights: ['400', '700', '800'],
|
|
827
|
+
},
|
|
828
|
+
{
|
|
829
|
+
importName: 'Neuton',
|
|
830
|
+
fontFamily: 'Neuton',
|
|
831
|
+
previewUrl: 'Neuton',
|
|
832
|
+
weights: ['200', '300', '400', '700', '800'],
|
|
833
|
+
},
|
|
834
|
+
{
|
|
835
|
+
importName: 'NoticiaText',
|
|
836
|
+
fontFamily: 'Noticia Text',
|
|
837
|
+
previewUrl: 'Noticia+Text',
|
|
838
|
+
weights: ['400', '700'],
|
|
839
|
+
},
|
|
840
|
+
{
|
|
841
|
+
importName: 'NotoColorEmoji',
|
|
842
|
+
fontFamily: 'Noto Color Emoji',
|
|
843
|
+
previewUrl: 'Noto+Color+Emoji',
|
|
844
|
+
weights: ['400'],
|
|
845
|
+
},
|
|
846
|
+
{
|
|
847
|
+
importName: 'NotoKufiArabic',
|
|
848
|
+
fontFamily: 'Noto Kufi Arabic',
|
|
849
|
+
previewUrl: 'Noto+Kufi+Arabic',
|
|
850
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
851
|
+
},
|
|
852
|
+
{
|
|
853
|
+
importName: 'NotoNaskhArabic',
|
|
854
|
+
fontFamily: 'Noto Naskh Arabic',
|
|
855
|
+
previewUrl: 'Noto+Naskh+Arabic',
|
|
856
|
+
weights: ['400', '500', '600', '700'],
|
|
857
|
+
},
|
|
858
|
+
{
|
|
859
|
+
importName: 'NotoSans',
|
|
860
|
+
fontFamily: 'Noto Sans',
|
|
861
|
+
previewUrl: 'Noto+Sans',
|
|
862
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
863
|
+
},
|
|
864
|
+
{
|
|
865
|
+
importName: 'NotoSansArabic',
|
|
866
|
+
fontFamily: 'Noto Sans Arabic',
|
|
867
|
+
previewUrl: 'Noto+Sans+Arabic',
|
|
868
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
869
|
+
},
|
|
870
|
+
{
|
|
871
|
+
importName: 'NotoSansBengali',
|
|
872
|
+
fontFamily: 'Noto Sans Bengali',
|
|
873
|
+
previewUrl: 'Noto+Sans+Bengali',
|
|
874
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
875
|
+
},
|
|
876
|
+
{
|
|
877
|
+
importName: 'NotoSansDisplay',
|
|
878
|
+
fontFamily: 'Noto Sans Display',
|
|
879
|
+
previewUrl: 'Noto+Sans+Display',
|
|
880
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
881
|
+
},
|
|
882
|
+
{
|
|
883
|
+
importName: 'NotoSansHK',
|
|
884
|
+
fontFamily: 'Noto Sans HK',
|
|
885
|
+
previewUrl: 'Noto+Sans+HK',
|
|
886
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
887
|
+
},
|
|
888
|
+
{
|
|
889
|
+
importName: 'NotoSansJP',
|
|
890
|
+
fontFamily: 'Noto Sans JP',
|
|
891
|
+
previewUrl: 'Noto+Sans+JP',
|
|
892
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
893
|
+
},
|
|
894
|
+
{
|
|
895
|
+
importName: 'NotoSansKR',
|
|
896
|
+
fontFamily: 'Noto Sans KR',
|
|
897
|
+
previewUrl: 'Noto+Sans+KR',
|
|
898
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
899
|
+
},
|
|
900
|
+
{
|
|
901
|
+
importName: 'NotoSansMono',
|
|
902
|
+
fontFamily: 'Noto Sans Mono',
|
|
903
|
+
previewUrl: 'Noto+Sans+Mono',
|
|
904
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
905
|
+
},
|
|
906
|
+
{
|
|
907
|
+
importName: 'NotoSansSC',
|
|
908
|
+
fontFamily: 'Noto Sans SC',
|
|
909
|
+
previewUrl: 'Noto+Sans+SC',
|
|
910
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
911
|
+
},
|
|
912
|
+
{
|
|
913
|
+
importName: 'NotoSansTC',
|
|
914
|
+
fontFamily: 'Noto Sans TC',
|
|
915
|
+
previewUrl: 'Noto+Sans+TC',
|
|
916
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
917
|
+
},
|
|
918
|
+
{
|
|
919
|
+
importName: 'NotoSansThai',
|
|
920
|
+
fontFamily: 'Noto Sans Thai',
|
|
921
|
+
previewUrl: 'Noto+Sans+Thai',
|
|
922
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
923
|
+
},
|
|
924
|
+
{
|
|
925
|
+
importName: 'NotoSerif',
|
|
926
|
+
fontFamily: 'Noto Serif',
|
|
927
|
+
previewUrl: 'Noto+Serif',
|
|
928
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
929
|
+
},
|
|
930
|
+
{
|
|
931
|
+
importName: 'NotoSerifJP',
|
|
932
|
+
fontFamily: 'Noto Serif JP',
|
|
933
|
+
previewUrl: 'Noto+Serif+JP',
|
|
934
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
935
|
+
},
|
|
936
|
+
{
|
|
937
|
+
importName: 'NotoSerifKR',
|
|
938
|
+
fontFamily: 'Noto Serif KR',
|
|
939
|
+
previewUrl: 'Noto+Serif+KR',
|
|
940
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
941
|
+
},
|
|
942
|
+
{
|
|
943
|
+
importName: 'NotoSerifTC',
|
|
944
|
+
fontFamily: 'Noto Serif TC',
|
|
945
|
+
previewUrl: 'Noto+Serif+TC',
|
|
946
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
947
|
+
},
|
|
948
|
+
{
|
|
949
|
+
importName: 'Nunito',
|
|
950
|
+
fontFamily: 'Nunito',
|
|
951
|
+
previewUrl: 'Nunito',
|
|
952
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
953
|
+
},
|
|
954
|
+
{
|
|
955
|
+
importName: 'NunitoSans',
|
|
956
|
+
fontFamily: 'Nunito Sans',
|
|
957
|
+
previewUrl: 'Nunito+Sans',
|
|
958
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
959
|
+
},
|
|
960
|
+
{
|
|
961
|
+
importName: 'OldStandardTT',
|
|
962
|
+
fontFamily: 'Old Standard TT',
|
|
963
|
+
previewUrl: 'Old+Standard+TT',
|
|
964
|
+
weights: ['400', '700'],
|
|
965
|
+
},
|
|
966
|
+
{
|
|
967
|
+
importName: 'OleoScript',
|
|
968
|
+
fontFamily: 'Oleo Script',
|
|
969
|
+
previewUrl: 'Oleo+Script',
|
|
970
|
+
weights: ['400', '700'],
|
|
971
|
+
},
|
|
972
|
+
{
|
|
973
|
+
importName: 'OpenSans',
|
|
974
|
+
fontFamily: 'Open Sans',
|
|
975
|
+
previewUrl: 'Open+Sans',
|
|
976
|
+
weights: ['300', '400', '500', '600', '700', '800'],
|
|
977
|
+
},
|
|
978
|
+
{
|
|
979
|
+
importName: 'Orbitron',
|
|
980
|
+
fontFamily: 'Orbitron',
|
|
981
|
+
previewUrl: 'Orbitron',
|
|
982
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
983
|
+
},
|
|
984
|
+
{
|
|
985
|
+
importName: 'Oswald',
|
|
986
|
+
fontFamily: 'Oswald',
|
|
987
|
+
previewUrl: 'Oswald',
|
|
988
|
+
weights: ['200', '300', '400', '500', '600', '700'],
|
|
989
|
+
},
|
|
990
|
+
{
|
|
991
|
+
importName: 'Outfit',
|
|
992
|
+
fontFamily: 'Outfit',
|
|
993
|
+
previewUrl: 'Outfit',
|
|
994
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
995
|
+
},
|
|
996
|
+
{
|
|
997
|
+
importName: 'Overpass',
|
|
998
|
+
fontFamily: 'Overpass',
|
|
999
|
+
previewUrl: 'Overpass',
|
|
1000
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1001
|
+
},
|
|
1002
|
+
{
|
|
1003
|
+
importName: 'Oxygen',
|
|
1004
|
+
fontFamily: 'Oxygen',
|
|
1005
|
+
previewUrl: 'Oxygen',
|
|
1006
|
+
weights: ['300', '400', '700'],
|
|
1007
|
+
},
|
|
1008
|
+
{
|
|
1009
|
+
importName: 'PTSans',
|
|
1010
|
+
fontFamily: 'PT Sans',
|
|
1011
|
+
previewUrl: 'PT+Sans',
|
|
1012
|
+
weights: ['400', '700'],
|
|
1013
|
+
},
|
|
1014
|
+
{
|
|
1015
|
+
importName: 'PTSansCaption',
|
|
1016
|
+
fontFamily: 'PT Sans Caption',
|
|
1017
|
+
previewUrl: 'PT+Sans+Caption',
|
|
1018
|
+
weights: ['400', '700'],
|
|
1019
|
+
},
|
|
1020
|
+
{
|
|
1021
|
+
importName: 'PTSansNarrow',
|
|
1022
|
+
fontFamily: 'PT Sans Narrow',
|
|
1023
|
+
previewUrl: 'PT+Sans+Narrow',
|
|
1024
|
+
weights: ['400', '700'],
|
|
1025
|
+
},
|
|
1026
|
+
{
|
|
1027
|
+
importName: 'PTSerif',
|
|
1028
|
+
fontFamily: 'PT Serif',
|
|
1029
|
+
previewUrl: 'PT+Serif',
|
|
1030
|
+
weights: ['400', '700'],
|
|
1031
|
+
},
|
|
1032
|
+
{
|
|
1033
|
+
importName: 'Pacifico',
|
|
1034
|
+
fontFamily: 'Pacifico',
|
|
1035
|
+
previewUrl: 'Pacifico',
|
|
1036
|
+
weights: ['400'],
|
|
1037
|
+
},
|
|
1038
|
+
{
|
|
1039
|
+
importName: 'PassionOne',
|
|
1040
|
+
fontFamily: 'Passion One',
|
|
1041
|
+
previewUrl: 'Passion+One',
|
|
1042
|
+
weights: ['400', '700', '900'],
|
|
1043
|
+
},
|
|
1044
|
+
{
|
|
1045
|
+
importName: 'PathwayGothicOne',
|
|
1046
|
+
fontFamily: 'Pathway Gothic One',
|
|
1047
|
+
previewUrl: 'Pathway+Gothic+One',
|
|
1048
|
+
weights: ['400'],
|
|
1049
|
+
},
|
|
1050
|
+
{
|
|
1051
|
+
importName: 'PatuaOne',
|
|
1052
|
+
fontFamily: 'Patua One',
|
|
1053
|
+
previewUrl: 'Patua+One',
|
|
1054
|
+
weights: ['400'],
|
|
1055
|
+
},
|
|
1056
|
+
{
|
|
1057
|
+
importName: 'PaytoneOne',
|
|
1058
|
+
fontFamily: 'Paytone One',
|
|
1059
|
+
previewUrl: 'Paytone+One',
|
|
1060
|
+
weights: ['400'],
|
|
1061
|
+
},
|
|
1062
|
+
{
|
|
1063
|
+
importName: 'PermanentMarker',
|
|
1064
|
+
fontFamily: 'Permanent Marker',
|
|
1065
|
+
previewUrl: 'Permanent+Marker',
|
|
1066
|
+
weights: ['400'],
|
|
1067
|
+
},
|
|
1068
|
+
{
|
|
1069
|
+
importName: 'Philosopher',
|
|
1070
|
+
fontFamily: 'Philosopher',
|
|
1071
|
+
previewUrl: 'Philosopher',
|
|
1072
|
+
weights: ['400', '700'],
|
|
1073
|
+
},
|
|
1074
|
+
{
|
|
1075
|
+
importName: 'Play',
|
|
1076
|
+
fontFamily: 'Play',
|
|
1077
|
+
previewUrl: 'Play',
|
|
1078
|
+
weights: ['400', '700'],
|
|
1079
|
+
},
|
|
1080
|
+
{
|
|
1081
|
+
importName: 'PlayfairDisplay',
|
|
1082
|
+
fontFamily: 'Playfair Display',
|
|
1083
|
+
previewUrl: 'Playfair+Display',
|
|
1084
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
1085
|
+
},
|
|
1086
|
+
{
|
|
1087
|
+
importName: 'PlusJakartaSans',
|
|
1088
|
+
fontFamily: 'Plus Jakarta Sans',
|
|
1089
|
+
previewUrl: 'Plus+Jakarta+Sans',
|
|
1090
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
1091
|
+
},
|
|
1092
|
+
{
|
|
1093
|
+
importName: 'Poppins',
|
|
1094
|
+
fontFamily: 'Poppins',
|
|
1095
|
+
previewUrl: 'Poppins',
|
|
1096
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1097
|
+
},
|
|
1098
|
+
{
|
|
1099
|
+
importName: 'Prata',
|
|
1100
|
+
fontFamily: 'Prata',
|
|
1101
|
+
previewUrl: 'Prata',
|
|
1102
|
+
weights: ['400'],
|
|
1103
|
+
},
|
|
1104
|
+
{
|
|
1105
|
+
importName: 'Prompt',
|
|
1106
|
+
fontFamily: 'Prompt',
|
|
1107
|
+
previewUrl: 'Prompt',
|
|
1108
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1109
|
+
},
|
|
1110
|
+
{
|
|
1111
|
+
importName: 'PublicSans',
|
|
1112
|
+
fontFamily: 'Public Sans',
|
|
1113
|
+
previewUrl: 'Public+Sans',
|
|
1114
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1115
|
+
},
|
|
1116
|
+
{
|
|
1117
|
+
importName: 'Quattrocento',
|
|
1118
|
+
fontFamily: 'Quattrocento',
|
|
1119
|
+
previewUrl: 'Quattrocento',
|
|
1120
|
+
weights: ['400', '700'],
|
|
1121
|
+
},
|
|
1122
|
+
{
|
|
1123
|
+
importName: 'QuattrocentoSans',
|
|
1124
|
+
fontFamily: 'Quattrocento Sans',
|
|
1125
|
+
previewUrl: 'Quattrocento+Sans',
|
|
1126
|
+
weights: ['400', '700'],
|
|
1127
|
+
},
|
|
1128
|
+
{
|
|
1129
|
+
importName: 'Questrial',
|
|
1130
|
+
fontFamily: 'Questrial',
|
|
1131
|
+
previewUrl: 'Questrial',
|
|
1132
|
+
weights: ['400'],
|
|
1133
|
+
},
|
|
1134
|
+
{
|
|
1135
|
+
importName: 'Quicksand',
|
|
1136
|
+
fontFamily: 'Quicksand',
|
|
1137
|
+
previewUrl: 'Quicksand',
|
|
1138
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1139
|
+
},
|
|
1140
|
+
{
|
|
1141
|
+
importName: 'Rajdhani',
|
|
1142
|
+
fontFamily: 'Rajdhani',
|
|
1143
|
+
previewUrl: 'Rajdhani',
|
|
1144
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1145
|
+
},
|
|
1146
|
+
{
|
|
1147
|
+
importName: 'Raleway',
|
|
1148
|
+
fontFamily: 'Raleway',
|
|
1149
|
+
previewUrl: 'Raleway',
|
|
1150
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1151
|
+
},
|
|
1152
|
+
{
|
|
1153
|
+
importName: 'ReadexPro',
|
|
1154
|
+
fontFamily: 'Readex Pro',
|
|
1155
|
+
previewUrl: 'Readex+Pro',
|
|
1156
|
+
weights: ['200', '300', '400', '500', '600', '700'],
|
|
1157
|
+
},
|
|
1158
|
+
{
|
|
1159
|
+
importName: 'RedHatDisplay',
|
|
1160
|
+
fontFamily: 'Red Hat Display',
|
|
1161
|
+
previewUrl: 'Red+Hat+Display',
|
|
1162
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
1163
|
+
},
|
|
1164
|
+
{
|
|
1165
|
+
importName: 'Righteous',
|
|
1166
|
+
fontFamily: 'Righteous',
|
|
1167
|
+
previewUrl: 'Righteous',
|
|
1168
|
+
weights: ['400'],
|
|
1169
|
+
},
|
|
1170
|
+
{
|
|
1171
|
+
importName: 'Roboto',
|
|
1172
|
+
fontFamily: 'Roboto',
|
|
1173
|
+
previewUrl: 'Roboto',
|
|
1174
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1175
|
+
},
|
|
1176
|
+
{
|
|
1177
|
+
importName: 'RobotoCondensed',
|
|
1178
|
+
fontFamily: 'Roboto Condensed',
|
|
1179
|
+
previewUrl: 'Roboto+Condensed',
|
|
1180
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1181
|
+
},
|
|
1182
|
+
{
|
|
1183
|
+
importName: 'RobotoFlex',
|
|
1184
|
+
fontFamily: 'Roboto Flex',
|
|
1185
|
+
previewUrl: 'Roboto+Flex',
|
|
1186
|
+
weights: ['400'],
|
|
1187
|
+
},
|
|
1188
|
+
{
|
|
1189
|
+
importName: 'RobotoMono',
|
|
1190
|
+
fontFamily: 'Roboto Mono',
|
|
1191
|
+
previewUrl: 'Roboto+Mono',
|
|
1192
|
+
weights: ['100', '200', '300', '400', '500', '600', '700'],
|
|
1193
|
+
},
|
|
1194
|
+
{
|
|
1195
|
+
importName: 'RobotoSerif',
|
|
1196
|
+
fontFamily: 'Roboto Serif',
|
|
1197
|
+
previewUrl: 'Roboto+Serif',
|
|
1198
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1199
|
+
},
|
|
1200
|
+
{
|
|
1201
|
+
importName: 'RobotoSlab',
|
|
1202
|
+
fontFamily: 'Roboto Slab',
|
|
1203
|
+
previewUrl: 'Roboto+Slab',
|
|
1204
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1205
|
+
},
|
|
1206
|
+
{
|
|
1207
|
+
importName: 'Rokkitt',
|
|
1208
|
+
fontFamily: 'Rokkitt',
|
|
1209
|
+
previewUrl: 'Rokkitt',
|
|
1210
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1211
|
+
},
|
|
1212
|
+
{
|
|
1213
|
+
importName: 'Rowdies',
|
|
1214
|
+
fontFamily: 'Rowdies',
|
|
1215
|
+
previewUrl: 'Rowdies',
|
|
1216
|
+
weights: ['300', '400', '700'],
|
|
1217
|
+
},
|
|
1218
|
+
{
|
|
1219
|
+
importName: 'Rubik',
|
|
1220
|
+
fontFamily: 'Rubik',
|
|
1221
|
+
previewUrl: 'Rubik',
|
|
1222
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
1223
|
+
},
|
|
1224
|
+
{
|
|
1225
|
+
importName: 'RubikBubbles',
|
|
1226
|
+
fontFamily: 'Rubik Bubbles',
|
|
1227
|
+
previewUrl: 'Rubik+Bubbles',
|
|
1228
|
+
weights: ['400'],
|
|
1229
|
+
},
|
|
1230
|
+
{
|
|
1231
|
+
importName: 'RubikMonoOne',
|
|
1232
|
+
fontFamily: 'Rubik Mono One',
|
|
1233
|
+
previewUrl: 'Rubik+Mono+One',
|
|
1234
|
+
weights: ['400'],
|
|
1235
|
+
},
|
|
1236
|
+
{
|
|
1237
|
+
importName: 'RussoOne',
|
|
1238
|
+
fontFamily: 'Russo One',
|
|
1239
|
+
previewUrl: 'Russo+One',
|
|
1240
|
+
weights: ['400'],
|
|
1241
|
+
},
|
|
1242
|
+
{
|
|
1243
|
+
importName: 'Sacramento',
|
|
1244
|
+
fontFamily: 'Sacramento',
|
|
1245
|
+
previewUrl: 'Sacramento',
|
|
1246
|
+
weights: ['400'],
|
|
1247
|
+
},
|
|
1248
|
+
{
|
|
1249
|
+
importName: 'Saira',
|
|
1250
|
+
fontFamily: 'Saira',
|
|
1251
|
+
previewUrl: 'Saira',
|
|
1252
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1253
|
+
},
|
|
1254
|
+
{
|
|
1255
|
+
importName: 'SairaCondensed',
|
|
1256
|
+
fontFamily: 'Saira Condensed',
|
|
1257
|
+
previewUrl: 'Saira+Condensed',
|
|
1258
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1259
|
+
},
|
|
1260
|
+
{
|
|
1261
|
+
importName: 'Sarabun',
|
|
1262
|
+
fontFamily: 'Sarabun',
|
|
1263
|
+
previewUrl: 'Sarabun',
|
|
1264
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800'],
|
|
1265
|
+
},
|
|
1266
|
+
{
|
|
1267
|
+
importName: 'Satisfy',
|
|
1268
|
+
fontFamily: 'Satisfy',
|
|
1269
|
+
previewUrl: 'Satisfy',
|
|
1270
|
+
weights: ['400'],
|
|
1271
|
+
},
|
|
1272
|
+
{
|
|
1273
|
+
importName: 'SawarabiGothic',
|
|
1274
|
+
fontFamily: 'Sawarabi Gothic',
|
|
1275
|
+
previewUrl: 'Sawarabi+Gothic',
|
|
1276
|
+
weights: ['400'],
|
|
1277
|
+
},
|
|
1278
|
+
{
|
|
1279
|
+
importName: 'SawarabiMincho',
|
|
1280
|
+
fontFamily: 'Sawarabi Mincho',
|
|
1281
|
+
previewUrl: 'Sawarabi+Mincho',
|
|
1282
|
+
weights: ['400'],
|
|
1283
|
+
},
|
|
1284
|
+
{
|
|
1285
|
+
importName: 'Sen',
|
|
1286
|
+
fontFamily: 'Sen',
|
|
1287
|
+
previewUrl: 'Sen',
|
|
1288
|
+
weights: ['400', '500', '600', '700', '800'],
|
|
1289
|
+
},
|
|
1290
|
+
{
|
|
1291
|
+
importName: 'ShadowsIntoLight',
|
|
1292
|
+
fontFamily: 'Shadows Into Light',
|
|
1293
|
+
previewUrl: 'Shadows+Into+Light',
|
|
1294
|
+
weights: ['400'],
|
|
1295
|
+
},
|
|
1296
|
+
{
|
|
1297
|
+
importName: 'Signika',
|
|
1298
|
+
fontFamily: 'Signika',
|
|
1299
|
+
previewUrl: 'Signika',
|
|
1300
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1301
|
+
},
|
|
1302
|
+
{
|
|
1303
|
+
importName: 'SignikaNegative',
|
|
1304
|
+
fontFamily: 'Signika Negative',
|
|
1305
|
+
previewUrl: 'Signika+Negative',
|
|
1306
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1307
|
+
},
|
|
1308
|
+
{
|
|
1309
|
+
importName: 'Silkscreen',
|
|
1310
|
+
fontFamily: 'Silkscreen',
|
|
1311
|
+
previewUrl: 'Silkscreen',
|
|
1312
|
+
weights: ['400', '700'],
|
|
1313
|
+
},
|
|
1314
|
+
{
|
|
1315
|
+
importName: 'SixCaps',
|
|
1316
|
+
fontFamily: 'Six Caps',
|
|
1317
|
+
previewUrl: 'Six+Caps',
|
|
1318
|
+
weights: ['400'],
|
|
1319
|
+
},
|
|
1320
|
+
{
|
|
1321
|
+
importName: 'Slabo27px',
|
|
1322
|
+
fontFamily: 'Slabo TwoSevenpx',
|
|
1323
|
+
previewUrl: 'Slabo+27px',
|
|
1324
|
+
weights: ['400'],
|
|
1325
|
+
},
|
|
1326
|
+
{
|
|
1327
|
+
importName: 'Sora',
|
|
1328
|
+
fontFamily: 'Sora',
|
|
1329
|
+
previewUrl: 'Sora',
|
|
1330
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800'],
|
|
1331
|
+
},
|
|
1332
|
+
{
|
|
1333
|
+
importName: 'SourceCodePro',
|
|
1334
|
+
fontFamily: 'Source Code Pro',
|
|
1335
|
+
previewUrl: 'Source+Code+Pro',
|
|
1336
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1337
|
+
},
|
|
1338
|
+
{
|
|
1339
|
+
importName: 'SourceSans3',
|
|
1340
|
+
fontFamily: 'Source Sans Three',
|
|
1341
|
+
previewUrl: 'Source+Sans+3',
|
|
1342
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1343
|
+
},
|
|
1344
|
+
{
|
|
1345
|
+
importName: 'SourceSerif4',
|
|
1346
|
+
fontFamily: 'Source Serif Four',
|
|
1347
|
+
previewUrl: 'Source+Serif+4',
|
|
1348
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1349
|
+
},
|
|
1350
|
+
{
|
|
1351
|
+
importName: 'SpaceGrotesk',
|
|
1352
|
+
fontFamily: 'Space Grotesk',
|
|
1353
|
+
previewUrl: 'Space+Grotesk',
|
|
1354
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1355
|
+
},
|
|
1356
|
+
{
|
|
1357
|
+
importName: 'SpaceMono',
|
|
1358
|
+
fontFamily: 'Space Mono',
|
|
1359
|
+
previewUrl: 'Space+Mono',
|
|
1360
|
+
weights: ['400', '700'],
|
|
1361
|
+
},
|
|
1362
|
+
{
|
|
1363
|
+
importName: 'SpecialElite',
|
|
1364
|
+
fontFamily: 'Special Elite',
|
|
1365
|
+
previewUrl: 'Special+Elite',
|
|
1366
|
+
weights: ['400'],
|
|
1367
|
+
},
|
|
1368
|
+
{
|
|
1369
|
+
importName: 'Spectral',
|
|
1370
|
+
fontFamily: 'Spectral',
|
|
1371
|
+
previewUrl: 'Spectral',
|
|
1372
|
+
weights: ['200', '300', '400', '500', '600', '700', '800'],
|
|
1373
|
+
},
|
|
1374
|
+
{
|
|
1375
|
+
importName: 'Tajawal',
|
|
1376
|
+
fontFamily: 'Tajawal',
|
|
1377
|
+
previewUrl: 'Tajawal',
|
|
1378
|
+
weights: ['200', '300', '400', '500', '700', '800', '900'],
|
|
1379
|
+
},
|
|
1380
|
+
{
|
|
1381
|
+
importName: 'Tangerine',
|
|
1382
|
+
fontFamily: 'Tangerine',
|
|
1383
|
+
previewUrl: 'Tangerine',
|
|
1384
|
+
weights: ['400', '700'],
|
|
1385
|
+
},
|
|
1386
|
+
{
|
|
1387
|
+
importName: 'Teko',
|
|
1388
|
+
fontFamily: 'Teko',
|
|
1389
|
+
previewUrl: 'Teko',
|
|
1390
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1391
|
+
},
|
|
1392
|
+
{
|
|
1393
|
+
importName: 'Tinos',
|
|
1394
|
+
fontFamily: 'Tinos',
|
|
1395
|
+
previewUrl: 'Tinos',
|
|
1396
|
+
weights: ['400', '700'],
|
|
1397
|
+
},
|
|
1398
|
+
{
|
|
1399
|
+
importName: 'TitanOne',
|
|
1400
|
+
fontFamily: 'Titan One',
|
|
1401
|
+
previewUrl: 'Titan+One',
|
|
1402
|
+
weights: ['400'],
|
|
1403
|
+
},
|
|
1404
|
+
{
|
|
1405
|
+
importName: 'TitilliumWeb',
|
|
1406
|
+
fontFamily: 'Titillium Web',
|
|
1407
|
+
previewUrl: 'Titillium+Web',
|
|
1408
|
+
weights: ['200', '300', '400', '600', '700', '900'],
|
|
1409
|
+
},
|
|
1410
|
+
{
|
|
1411
|
+
importName: 'Ubuntu',
|
|
1412
|
+
fontFamily: 'Ubuntu',
|
|
1413
|
+
previewUrl: 'Ubuntu',
|
|
1414
|
+
weights: ['300', '400', '500', '700'],
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
importName: 'UbuntuCondensed',
|
|
1418
|
+
fontFamily: 'Ubuntu Condensed',
|
|
1419
|
+
previewUrl: 'Ubuntu+Condensed',
|
|
1420
|
+
weights: ['400'],
|
|
1421
|
+
},
|
|
1422
|
+
{
|
|
1423
|
+
importName: 'UbuntuMono',
|
|
1424
|
+
fontFamily: 'Ubuntu Mono',
|
|
1425
|
+
previewUrl: 'Ubuntu+Mono',
|
|
1426
|
+
weights: ['400', '700'],
|
|
1427
|
+
},
|
|
1428
|
+
{
|
|
1429
|
+
importName: 'Unbounded',
|
|
1430
|
+
fontFamily: 'Unbounded',
|
|
1431
|
+
previewUrl: 'Unbounded',
|
|
1432
|
+
weights: ['200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1433
|
+
},
|
|
1434
|
+
{
|
|
1435
|
+
importName: 'Unna',
|
|
1436
|
+
fontFamily: 'Unna',
|
|
1437
|
+
previewUrl: 'Unna',
|
|
1438
|
+
weights: ['400', '700'],
|
|
1439
|
+
},
|
|
1440
|
+
{
|
|
1441
|
+
importName: 'Urbanist',
|
|
1442
|
+
fontFamily: 'Urbanist',
|
|
1443
|
+
previewUrl: 'Urbanist',
|
|
1444
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1445
|
+
},
|
|
1446
|
+
{
|
|
1447
|
+
importName: 'VarelaRound',
|
|
1448
|
+
fontFamily: 'Varela Round',
|
|
1449
|
+
previewUrl: 'Varela+Round',
|
|
1450
|
+
weights: ['400'],
|
|
1451
|
+
},
|
|
1452
|
+
{
|
|
1453
|
+
importName: 'Vollkorn',
|
|
1454
|
+
fontFamily: 'Vollkorn',
|
|
1455
|
+
previewUrl: 'Vollkorn',
|
|
1456
|
+
weights: ['400', '500', '600', '700', '800', '900'],
|
|
1457
|
+
},
|
|
1458
|
+
{
|
|
1459
|
+
importName: 'WorkSans',
|
|
1460
|
+
fontFamily: 'Work Sans',
|
|
1461
|
+
previewUrl: 'Work+Sans',
|
|
1462
|
+
weights: ['100', '200', '300', '400', '500', '600', '700', '800', '900'],
|
|
1463
|
+
},
|
|
1464
|
+
{
|
|
1465
|
+
importName: 'YanoneKaffeesatz',
|
|
1466
|
+
fontFamily: 'Yanone Kaffeesatz',
|
|
1467
|
+
previewUrl: 'Yanone+Kaffeesatz',
|
|
1468
|
+
weights: ['200', '300', '400', '500', '600', '700'],
|
|
1469
|
+
},
|
|
1470
|
+
{
|
|
1471
|
+
importName: 'Yantramanav',
|
|
1472
|
+
fontFamily: 'Yantramanav',
|
|
1473
|
+
previewUrl: 'Yantramanav',
|
|
1474
|
+
weights: ['100', '300', '400', '500', '700', '900'],
|
|
1475
|
+
},
|
|
1476
|
+
{
|
|
1477
|
+
importName: 'Yellowtail',
|
|
1478
|
+
fontFamily: 'Yellowtail',
|
|
1479
|
+
previewUrl: 'Yellowtail',
|
|
1480
|
+
weights: ['400'],
|
|
1481
|
+
},
|
|
1482
|
+
{
|
|
1483
|
+
importName: 'YesevaOne',
|
|
1484
|
+
fontFamily: 'Yeseva One',
|
|
1485
|
+
previewUrl: 'Yeseva+One',
|
|
1486
|
+
weights: ['400'],
|
|
1487
|
+
},
|
|
1488
|
+
{
|
|
1489
|
+
importName: 'ZenKakuGothicNew',
|
|
1490
|
+
fontFamily: 'Zen Kaku Gothic New',
|
|
1491
|
+
previewUrl: 'Zen+Kaku+Gothic+New',
|
|
1492
|
+
weights: ['300', '400', '500', '700', '900'],
|
|
1493
|
+
},
|
|
1494
|
+
{
|
|
1495
|
+
importName: 'Zeyada',
|
|
1496
|
+
fontFamily: 'Zeyada',
|
|
1497
|
+
previewUrl: 'Zeyada',
|
|
1498
|
+
weights: ['400'],
|
|
1499
|
+
},
|
|
1500
|
+
{
|
|
1501
|
+
importName: 'ZillaSlab',
|
|
1502
|
+
fontFamily: 'Zilla Slab',
|
|
1503
|
+
previewUrl: 'Zilla+Slab',
|
|
1504
|
+
weights: ['300', '400', '500', '600', '700'],
|
|
1505
|
+
},
|
|
1506
|
+
{
|
|
1507
|
+
importName: 'TikTokSans',
|
|
1508
|
+
fontFamily: 'TikTok Sans',
|
|
1509
|
+
previewUrl: 'TikTok+Sans',
|
|
1510
|
+
weights: ['300', '400', '500', '600', '700', '800', '900'],
|
|
1511
|
+
},
|
|
1512
|
+
];
|