Version Description
- 2019-10-10 =
- Fixed: Dynamic content form templates
- Fixed: Data migration script
Download this release
Release Info
Developer | themefusecom |
Plugin | Brizy – Page Builder |
Version | 1.0.97 |
Comparing to | |
See all releases |
Code changes from version 1.0.96 to 1.0.97
- README.md +5 -1
- admin/migrations/fix-globals-to-data-migration.php +55 -0
- admin/templates.php +5 -5
- brizy.php +2 -2
- editor.php +23 -21
- readme.txt +5 -1
- vendor/autoload.php +1 -1
- vendor/bagrinsergiu/brizy-migration-utils/src/Brizy/FixDataToProjectTransformer.php +100 -0
- vendor/bagrinsergiu/brizy-migration-utils/tests/FixDataToProjectTransformerTest.php +6747 -0
- vendor/composer/autoload_real.php +7 -7
- vendor/composer/autoload_static.php +4 -4
- vendor/composer/installed.json +7 -7
README.md
CHANGED
@@ -3,7 +3,7 @@ Contributors: themefuse<br>
|
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.2.3<br>
|
5 |
Requires PHP: 5.6<br>
|
6 |
-
Stable tag: 1.0.
|
7 |
License: GPLv3<br>
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
@@ -118,6 +118,10 @@ $bodyHtml = apply_filters( 'brizy_content', $html->get_body(), Brizy_Editor_Proj
|
|
118 |
|
119 |
## Changelog
|
120 |
|
|
|
|
|
|
|
|
|
121 |
### 1.0.96 - 2019-10-09 ###
|
122 |
* Fixed: Brizy content filter
|
123 |
* Fixed: Data migration bug
|
3 |
Requires at least: 4.5<br>
|
4 |
Tested up to: 5.2.3<br>
|
5 |
Requires PHP: 5.6<br>
|
6 |
+
Stable tag: 1.0.97<br>
|
7 |
License: GPLv3<br>
|
8 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
9 |
|
118 |
|
119 |
## Changelog
|
120 |
|
121 |
+
### 1.0.97 - 2019-10-10 ###
|
122 |
+
* Fixed: Dynamic content form templates
|
123 |
+
* Fixed: Data migration script
|
124 |
+
|
125 |
### 1.0.96 - 2019-10-09 ###
|
126 |
* Fixed: Brizy content filter
|
127 |
* Fixed: Data migration bug
|
admin/migrations/fix-globals-to-data-migration.php
ADDED
@@ -0,0 +1,55 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
class Brizy_Admin_Migrations_FixGlobalsToDataMigration implements Brizy_Admin_Migrations_MigrationInterface {
|
4 |
+
|
5 |
+
use Brizy_Admin_Migrations_PostsTrait;
|
6 |
+
|
7 |
+
/**
|
8 |
+
* Return the version
|
9 |
+
*
|
10 |
+
* @return mixed
|
11 |
+
*/
|
12 |
+
public function getVersion() {
|
13 |
+
return '1.0.97';
|
14 |
+
}
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @return mixed|void
|
18 |
+
* @throws Exception
|
19 |
+
*/
|
20 |
+
public function execute() {
|
21 |
+
|
22 |
+
try {
|
23 |
+
$projectPost = $this->getProjectPost();
|
24 |
+
|
25 |
+
if ( ! $projectPost ) {
|
26 |
+
Brizy_Logger::instance()->critical( 'Filed migration Brizy_Admin_Migrations_GlobalsToDataMigration. We did not found any projects.', [] );
|
27 |
+
return;
|
28 |
+
}
|
29 |
+
|
30 |
+
$storage = Brizy_Editor_Storage_Project::instance( $projectPost->ID );
|
31 |
+
|
32 |
+
if ( $data = $storage->get( 'data', false ) ) {
|
33 |
+
update_post_meta( $projectPost->ID, 'brizy-bk-' . get_class( $this ) . '-' . $this->getVersion(), $storage->get_storage() );
|
34 |
+
|
35 |
+
$beforeMergeGlobals = json_decode( base64_decode( $data ) );
|
36 |
+
$editorBuildPath = BRIZY_PLUGIN_PATH .
|
37 |
+
DIRECTORY_SEPARATOR . "public" .
|
38 |
+
DIRECTORY_SEPARATOR . "editor-build";
|
39 |
+
|
40 |
+
$context = new \Brizy\DataToProjectContext( $beforeMergeGlobals, $editorBuildPath );
|
41 |
+
$projectMigration = new \Brizy\FixDataToProjectTransformer();
|
42 |
+
$mergedGlobals = $projectMigration->execute( $context );
|
43 |
+
$storage->set( 'data', base64_encode( json_encode( $mergedGlobals ) ) );
|
44 |
+
}
|
45 |
+
|
46 |
+
} catch ( Exception $e ) {
|
47 |
+
Brizy_Logger::instance()->critical( 'Filed migration Brizy_Admin_Migrations_GlobalsToDataMigration', [ $e ] );
|
48 |
+
throw $e;
|
49 |
+
}
|
50 |
+
}
|
51 |
+
|
52 |
+
public function getPriority() {
|
53 |
+
return 0;
|
54 |
+
}
|
55 |
+
}
|
admin/templates.php
CHANGED
@@ -470,8 +470,8 @@ class Brizy_Admin_Templates {
|
|
470 |
// insert the compiled head and content
|
471 |
add_filter( 'body_class', array( $this, 'bodyClassFrontend' ) );
|
472 |
add_action( 'wp_head', array( $this, 'insertPageHead' ) );
|
473 |
-
add_action( 'brizy_template_content', array( $this, 'insertPageContent' ), -
|
474 |
-
add_filter( 'the_content', array( $this, 'filterPageContent' ), -
|
475 |
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_preview_assets' ), 9999 );
|
476 |
}
|
477 |
|
@@ -543,7 +543,7 @@ class Brizy_Admin_Templates {
|
|
543 |
// $head = $mainProcessor->process( $compiled_page->get_head() );
|
544 |
|
545 |
|
546 |
-
$head = apply_filters( 'brizy_content', $compiled_page->get_head(), Brizy_Editor_Project::get(), $post
|
547 |
?>
|
548 |
<!-- BRIZY HEAD -->
|
549 |
<?php echo $head; ?>
|
@@ -576,7 +576,7 @@ class Brizy_Admin_Templates {
|
|
576 |
|
577 |
$compiled_page = $this->template->get_compiled_page();
|
578 |
|
579 |
-
$content = apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $post
|
580 |
|
581 |
echo do_shortcode( $content );
|
582 |
}
|
@@ -596,7 +596,7 @@ class Brizy_Admin_Templates {
|
|
596 |
$brizyPost = get_post( $pid );
|
597 |
$compiled_page = $this->template->get_compiled_page();
|
598 |
|
599 |
-
return apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $brizyPost
|
600 |
}
|
601 |
|
602 |
/**
|
470 |
// insert the compiled head and content
|
471 |
add_filter( 'body_class', array( $this, 'bodyClassFrontend' ) );
|
472 |
add_action( 'wp_head', array( $this, 'insertPageHead' ) );
|
473 |
+
add_action( 'brizy_template_content', array( $this, 'insertPageContent' ), - 12000 );
|
474 |
+
add_filter( 'the_content', array( $this, 'filterPageContent' ), - 12000 );
|
475 |
add_action( 'wp_enqueue_scripts', array( $this, 'enqueue_preview_assets' ), 9999 );
|
476 |
}
|
477 |
|
543 |
// $head = $mainProcessor->process( $compiled_page->get_head() );
|
544 |
|
545 |
|
546 |
+
$head = apply_filters( 'brizy_content', $compiled_page->get_head(), Brizy_Editor_Project::get(), $post );
|
547 |
?>
|
548 |
<!-- BRIZY HEAD -->
|
549 |
<?php echo $head; ?>
|
576 |
|
577 |
$compiled_page = $this->template->get_compiled_page();
|
578 |
|
579 |
+
$content = apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $post );
|
580 |
|
581 |
echo do_shortcode( $content );
|
582 |
}
|
596 |
$brizyPost = get_post( $pid );
|
597 |
$compiled_page = $this->template->get_compiled_page();
|
598 |
|
599 |
+
return apply_filters( 'brizy_content', $compiled_page->get_body(), Brizy_Editor_Project::get(), $brizyPost );
|
600 |
}
|
601 |
|
602 |
/**
|
brizy.php
CHANGED
@@ -5,7 +5,7 @@
|
|
5 |
* Plugin URI: https://brizy.io/
|
6 |
* Author: Brizy.io
|
7 |
* Author URI: https://brizy.io/
|
8 |
-
* Version: 1.0.
|
9 |
* Text Domain: brizy
|
10 |
* License: GPLv3
|
11 |
* Domain Path: /languages
|
@@ -19,7 +19,7 @@ if ( isset( $_SERVER['HTTP_X_FORWARDED_PROTO'] ) && stripos( $_SERVER['HTTP_X_FO
|
|
19 |
|
20 |
define( 'BRIZY_DEVELOPMENT', false );
|
21 |
define( 'BRIZY_LOG', false );
|
22 |
-
define( 'BRIZY_VERSION', '1.0.
|
23 |
define( 'BRIZY_EDITOR_VERSION', '116' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
5 |
* Plugin URI: https://brizy.io/
|
6 |
* Author: Brizy.io
|
7 |
* Author URI: https://brizy.io/
|
8 |
+
* Version: 1.0.97
|
9 |
* Text Domain: brizy
|
10 |
* License: GPLv3
|
11 |
* Domain Path: /languages
|
19 |
|
20 |
define( 'BRIZY_DEVELOPMENT', false );
|
21 |
define( 'BRIZY_LOG', false );
|
22 |
+
define( 'BRIZY_VERSION', '1.0.97' );
|
23 |
define( 'BRIZY_EDITOR_VERSION', '116' );
|
24 |
define( 'BRIZY_FILE', __FILE__ );
|
25 |
define( 'BRIZY_PLUGIN_BASE', plugin_basename( BRIZY_FILE ) );
|
editor.php
CHANGED
@@ -126,6 +126,29 @@ class Brizy_Editor {
|
|
126 |
}
|
127 |
|
128 |
add_action( 'wp_dashboard_setup', 'brizy_add_dashboard_widgets' );
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
129 |
}
|
130 |
|
131 |
public function revisionsToKeep( $num, $post ) {
|
@@ -276,27 +299,6 @@ class Brizy_Editor {
|
|
276 |
}
|
277 |
}
|
278 |
|
279 |
-
public function wordpressObjectCreated() {
|
280 |
-
$pid = Brizy_Editor::get()->currentPostId();
|
281 |
-
$post = null;
|
282 |
-
try {
|
283 |
-
// do not delete this line
|
284 |
-
$user = Brizy_Editor_User::get();
|
285 |
-
|
286 |
-
if ( $pid ) {
|
287 |
-
$post = Brizy_Editor_Post::get( $pid );
|
288 |
-
}
|
289 |
-
} catch ( Exception $e ) {
|
290 |
-
return;
|
291 |
-
}
|
292 |
-
|
293 |
-
if ( $post && $post->uses_editor() ) {
|
294 |
-
$this->handleFrontEndEditor( $post );
|
295 |
-
}
|
296 |
-
|
297 |
-
add_filter( 'brizy_content', array( $this, 'brizy_content' ), 10, 3 );
|
298 |
-
}
|
299 |
-
|
300 |
public function brizy_content( $content, $project, $wpPost, $contentType = 'document' ) {
|
301 |
|
302 |
$context = Brizy_Content_ContextFactory::createContext( $project, null, $wpPost, null );
|
126 |
}
|
127 |
|
128 |
add_action( 'wp_dashboard_setup', 'brizy_add_dashboard_widgets' );
|
129 |
+
add_filter( 'brizy_content', array( $this, 'brizy_content' ), 10, 3 );
|
130 |
+
}
|
131 |
+
|
132 |
+
|
133 |
+
public function wordpressObjectCreated() {
|
134 |
+
$pid = Brizy_Editor::get()->currentPostId();
|
135 |
+
$post = null;
|
136 |
+
try {
|
137 |
+
// do not delete this line
|
138 |
+
$user = Brizy_Editor_User::get();
|
139 |
+
|
140 |
+
if ( $pid ) {
|
141 |
+
$post = Brizy_Editor_Post::get( $pid );
|
142 |
+
}
|
143 |
+
} catch ( Exception $e ) {
|
144 |
+
return;
|
145 |
+
}
|
146 |
+
|
147 |
+
if ( $post && $post->uses_editor() ) {
|
148 |
+
$this->handleFrontEndEditor( $post );
|
149 |
+
}
|
150 |
+
|
151 |
+
|
152 |
}
|
153 |
|
154 |
public function revisionsToKeep( $num, $post ) {
|
299 |
}
|
300 |
}
|
301 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
302 |
public function brizy_content( $content, $project, $wpPost, $contentType = 'document' ) {
|
303 |
|
304 |
$context = Brizy_Content_ContextFactory::createContext( $project, null, $wpPost, null );
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Tags: brizy, page builder, editor, visual editor, unyson, wysiwyg, landing page,
|
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.2.3
|
6 |
Requires PHP: 5.6
|
7 |
-
Stable tag: 1.0.
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
@@ -139,6 +139,10 @@ The progress you're making while building your page is always backed up in the c
|
|
139 |
|
140 |
== Changelog ==
|
141 |
|
|
|
|
|
|
|
|
|
142 |
= 1.0.96 - 2019-10-09 =
|
143 |
* Fixed: Brizy content filter
|
144 |
* Fixed: Data migration bug
|
4 |
Requires at least: 4.5
|
5 |
Tested up to: 5.2.3
|
6 |
Requires PHP: 5.6
|
7 |
+
Stable tag: 1.0.97
|
8 |
License: GPLv3
|
9 |
License URI: https://www.gnu.org/licenses/gpl-3.0.html
|
10 |
|
139 |
|
140 |
== Changelog ==
|
141 |
|
142 |
+
= 1.0.97 - 2019-10-10 =
|
143 |
+
* Fixed: Dynamic content form templates
|
144 |
+
* Fixed: Data migration script
|
145 |
+
|
146 |
= 1.0.96 - 2019-10-09 =
|
147 |
* Fixed: Brizy content filter
|
148 |
* Fixed: Data migration bug
|
vendor/autoload.php
CHANGED
@@ -4,4 +4,4 @@
|
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
-
return
|
4 |
|
5 |
require_once __DIR__ . '/composer/autoload_real.php';
|
6 |
|
7 |
+
return ComposerAutoloaderInitc8fdf561a12247167c5b8e6286092b12::getLoader();
|
vendor/bagrinsergiu/brizy-migration-utils/src/Brizy/FixDataToProjectTransformer.php
ADDED
@@ -0,0 +1,100 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Brizy;
|
4 |
+
|
5 |
+
|
6 |
+
use Brizy\Utils\UUId;
|
7 |
+
|
8 |
+
/**
|
9 |
+
* Class DataToProjectTransformer
|
10 |
+
* @package Brizy
|
11 |
+
*/
|
12 |
+
class FixDataToProjectTransformer implements DataTransformerInterface
|
13 |
+
{
|
14 |
+
/**
|
15 |
+
* @param ContextInterface $context
|
16 |
+
*
|
17 |
+
* @return mixed
|
18 |
+
* @throws \Exception
|
19 |
+
*/
|
20 |
+
public function execute(ContextInterface $context)
|
21 |
+
{
|
22 |
+
$defaults = $this->getDefaults($context->getBuildPath());
|
23 |
+
|
24 |
+
return $this->merge($context->getData(), $defaults);
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* @param $buildPath
|
29 |
+
*
|
30 |
+
* @return mixed
|
31 |
+
*/
|
32 |
+
private function getDefaults($buildPath)
|
33 |
+
{
|
34 |
+
return json_decode(
|
35 |
+
file_get_contents(
|
36 |
+
$buildPath .
|
37 |
+
DIRECTORY_SEPARATOR . "defaults.json"
|
38 |
+
)
|
39 |
+
);
|
40 |
+
}
|
41 |
+
|
42 |
+
/**
|
43 |
+
* @param $globals
|
44 |
+
* @param $default
|
45 |
+
*
|
46 |
+
* @return mixed
|
47 |
+
* @throws \Exception
|
48 |
+
*/
|
49 |
+
private function merge($globals, $default)
|
50 |
+
{
|
51 |
+
// Check if globals is object
|
52 |
+
if (!is_object($globals)) {
|
53 |
+
throw new \Exception();
|
54 |
+
}
|
55 |
+
|
56 |
+
$project = clone $globals;
|
57 |
+
|
58 |
+
if (isset($project->styles) && isset($project->selectedStyle)) {
|
59 |
+
$styles = $project->styles;
|
60 |
+
$selectedStyle = $project->selectedStyle;
|
61 |
+
$existed = false;
|
62 |
+
|
63 |
+
foreach ($styles as $style) {
|
64 |
+
if ($style->id === $selectedStyle) {
|
65 |
+
$existed = true;
|
66 |
+
}
|
67 |
+
}
|
68 |
+
|
69 |
+
if (!$existed) {
|
70 |
+
$overpass = clone $styles[0];
|
71 |
+
$defaultStyle = $this->getStyle($default->styles, $selectedStyle);
|
72 |
+
|
73 |
+
if ($defaultStyle) {
|
74 |
+
// copy project colorPalette and fontStyles to defaultStyles
|
75 |
+
$defaultStyle->id = $selectedStyle;
|
76 |
+
$defaultStyle->colorPalette = $overpass->colorPalette;
|
77 |
+
$defaultStyle->fontStyles = $overpass->fontStyles;
|
78 |
+
$project->styles[0] = $defaultStyle;
|
79 |
+
|
80 |
+
$defaultOverpass = $this->getStyle($default->styles, $overpass->id);
|
81 |
+
array_splice($project->styles, 1, 0, array($defaultOverpass));
|
82 |
+
}
|
83 |
+
}
|
84 |
+
}
|
85 |
+
|
86 |
+
return $project;
|
87 |
+
}
|
88 |
+
|
89 |
+
private function getStyle($styles, $selectedStyle)
|
90 |
+
{
|
91 |
+
|
92 |
+
foreach ($styles as $style) {
|
93 |
+
if ($style->id === $selectedStyle) {
|
94 |
+
return $style;
|
95 |
+
}
|
96 |
+
}
|
97 |
+
|
98 |
+
return null;
|
99 |
+
}
|
100 |
+
}
|
vendor/bagrinsergiu/brizy-migration-utils/tests/FixDataToProjectTransformerTest.php
ADDED
@@ -0,0 +1,6747 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
namespace Brizy;
|
4 |
+
|
5 |
+
use PHPUnit\Framework\TestCase;
|
6 |
+
|
7 |
+
class FixDataToProjectTransformerTest extends TestCase
|
8 |
+
{
|
9 |
+
public function oldDataProvider()
|
10 |
+
{
|
11 |
+
return [
|
12 |
+
['{}'],
|
13 |
+
['{
|
14 |
+
"extraFonts": [
|
15 |
+
"fanwood_text"
|
16 |
+
]
|
17 |
+
}'],
|
18 |
+
['{
|
19 |
+
"extraFonts": [
|
20 |
+
"fanwood_text"
|
21 |
+
],
|
22 |
+
"styles": {
|
23 |
+
"_selected": "default",
|
24 |
+
"_extraFontStyles": [
|
25 |
+
{
|
26 |
+
"deletable": "on",
|
27 |
+
"id": "hcfdicvfev",
|
28 |
+
"title": "New Style #10",
|
29 |
+
"fontFamily": "noto_serif",
|
30 |
+
"fontSize": 16,
|
31 |
+
"fontWeight": 300,
|
32 |
+
"lineHeight": 1.7,
|
33 |
+
"letterSpacing": 0,
|
34 |
+
"tabletFontSize": 15,
|
35 |
+
"tabletFontWeight": 300,
|
36 |
+
"tabletLineHeight": 1.6,
|
37 |
+
"tabletLetterSpacing": 0,
|
38 |
+
"mobileFontSize": 15,
|
39 |
+
"mobileFontWeight": 300,
|
40 |
+
"mobileLineHeight": 1.6,
|
41 |
+
"mobileLetterSpacing": 0
|
42 |
+
}
|
43 |
+
],
|
44 |
+
"default": {
|
45 |
+
"colorPalette": [
|
46 |
+
{
|
47 |
+
"id": "color1",
|
48 |
+
"hex": "#191b21"
|
49 |
+
},
|
50 |
+
{
|
51 |
+
"id": "color2",
|
52 |
+
"hex": "#142850"
|
53 |
+
},
|
54 |
+
{
|
55 |
+
"id": "color3",
|
56 |
+
"hex": "#239ddb"
|
57 |
+
},
|
58 |
+
{
|
59 |
+
"id": "color4",
|
60 |
+
"hex": "#66738d"
|
61 |
+
},
|
62 |
+
{
|
63 |
+
"id": "color5",
|
64 |
+
"hex": "#bde1f4"
|
65 |
+
},
|
66 |
+
{
|
67 |
+
"id": "color6",
|
68 |
+
"hex": "#eef0f2"
|
69 |
+
},
|
70 |
+
{
|
71 |
+
"id": "color7",
|
72 |
+
"hex": "#73777f"
|
73 |
+
},
|
74 |
+
{
|
75 |
+
"id": "color8",
|
76 |
+
"hex": "#ffffff"
|
77 |
+
}
|
78 |
+
],
|
79 |
+
"fontStyles": [
|
80 |
+
{
|
81 |
+
"deletable": "off",
|
82 |
+
"id": "paragraph",
|
83 |
+
"title": "Paragraph",
|
84 |
+
"fontFamily": "noto_serif",
|
85 |
+
"fontSize": 16,
|
86 |
+
"fontWeight": 300,
|
87 |
+
"lineHeight": 1.7,
|
88 |
+
"letterSpacing": 0,
|
89 |
+
"tabletFontSize": 15,
|
90 |
+
"tabletFontWeight": 300,
|
91 |
+
"tabletLineHeight": 1.6,
|
92 |
+
"tabletLetterSpacing": 0,
|
93 |
+
"mobileFontSize": 15,
|
94 |
+
"mobileFontWeight": 300,
|
95 |
+
"mobileLineHeight": 1.6,
|
96 |
+
"mobileLetterSpacing": 0
|
97 |
+
},
|
98 |
+
{
|
99 |
+
"deletable": "off",
|
100 |
+
"id": "subtitle",
|
101 |
+
"title": "Subtitle",
|
102 |
+
"fontFamily": "noto_serif",
|
103 |
+
"fontSize": 18,
|
104 |
+
"fontWeight": 300,
|
105 |
+
"lineHeight": 1.5,
|
106 |
+
"letterSpacing": 0,
|
107 |
+
"tabletFontSize": 17,
|
108 |
+
"tabletFontWeight": 300,
|
109 |
+
"tabletLineHeight": 1.5,
|
110 |
+
"tabletLetterSpacing": 0,
|
111 |
+
"mobileFontSize": 17,
|
112 |
+
"mobileFontWeight": 300,
|
113 |
+
"mobileLineHeight": 1.5,
|
114 |
+
"mobileLetterSpacing": 0
|
115 |
+
},
|
116 |
+
{
|
117 |
+
"deletable": "off",
|
118 |
+
"id": "abovetitle",
|
119 |
+
"title": "Above Title",
|
120 |
+
"fontFamily": "montserrat",
|
121 |
+
"fontSize": 16,
|
122 |
+
"fontWeight": 400,
|
123 |
+
"lineHeight": 1.7,
|
124 |
+
"letterSpacing": 2,
|
125 |
+
"tabletFontSize": 15,
|
126 |
+
"tabletFontWeight": 400,
|
127 |
+
"tabletLineHeight": 1.7,
|
128 |
+
"tabletLetterSpacing": 2,
|
129 |
+
"mobileFontSize": 13,
|
130 |
+
"mobileFontWeight": 400,
|
131 |
+
"mobileLineHeight": 1.7,
|
132 |
+
"mobileLetterSpacing": 2
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"deletable": "off",
|
136 |
+
"id": "heading1",
|
137 |
+
"title": "Heading 1",
|
138 |
+
"fontFamily": "montserrat",
|
139 |
+
"fontSize": 56,
|
140 |
+
"fontWeight": 200,
|
141 |
+
"lineHeight": 1.3,
|
142 |
+
"letterSpacing": -1.5,
|
143 |
+
"tabletFontSize": 40,
|
144 |
+
"tabletFontWeight": 200,
|
145 |
+
"tabletLineHeight": 1.3,
|
146 |
+
"tabletLetterSpacing": -1,
|
147 |
+
"mobileFontSize": 34,
|
148 |
+
"mobileFontWeight": 200,
|
149 |
+
"mobileLineHeight": 1.3,
|
150 |
+
"mobileLetterSpacing": -1
|
151 |
+
},
|
152 |
+
{
|
153 |
+
"deletable": "off",
|
154 |
+
"id": "heading2",
|
155 |
+
"title": "Heading 2",
|
156 |
+
"fontFamily": "montserrat",
|
157 |
+
"fontSize": 42,
|
158 |
+
"fontWeight": 700,
|
159 |
+
"lineHeight": 1.3,
|
160 |
+
"letterSpacing": -1.5,
|
161 |
+
"tabletFontSize": 35,
|
162 |
+
"tabletFontWeight": 700,
|
163 |
+
"tabletLineHeight": 1.3,
|
164 |
+
"tabletLetterSpacing": -0.5,
|
165 |
+
"mobileFontSize": 29,
|
166 |
+
"mobileFontWeight": 700,
|
167 |
+
"mobileLineHeight": 1.3,
|
168 |
+
"mobileLetterSpacing": -0.5
|
169 |
+
},
|
170 |
+
{
|
171 |
+
"deletable": "off",
|
172 |
+
"id": "heading3",
|
173 |
+
"title": "Heading 3",
|
174 |
+
"fontFamily": "montserrat",
|
175 |
+
"fontSize": 32,
|
176 |
+
"fontWeight": 600,
|
177 |
+
"lineHeight": 1.3,
|
178 |
+
"letterSpacing": -1,
|
179 |
+
"tabletFontSize": 27,
|
180 |
+
"tabletFontWeight": 600,
|
181 |
+
"tabletLineHeight": 1.3,
|
182 |
+
"tabletLetterSpacing": 0,
|
183 |
+
"mobileFontSize": 22,
|
184 |
+
"mobileFontWeight": 600,
|
185 |
+
"mobileLineHeight": 1.3,
|
186 |
+
"mobileLetterSpacing": 0
|
187 |
+
},
|
188 |
+
{
|
189 |
+
"deletable": "off",
|
190 |
+
"id": "heading4",
|
191 |
+
"title": "Heading 4",
|
192 |
+
"fontFamily": "montserrat",
|
193 |
+
"fontSize": 26,
|
194 |
+
"fontWeight": 500,
|
195 |
+
"lineHeight": 1.4,
|
196 |
+
"letterSpacing": -1,
|
197 |
+
"tabletFontSize": 24,
|
198 |
+
"tabletFontWeight": 500,
|
199 |
+
"tabletLineHeight": 1.4,
|
200 |
+
"tabletLetterSpacing": 0,
|
201 |
+
"mobileFontSize": 21,
|
202 |
+
"mobileFontWeight": 500,
|
203 |
+
"mobileLineHeight": 1.4,
|
204 |
+
"mobileLetterSpacing": 0
|
205 |
+
},
|
206 |
+
{
|
207 |
+
"deletable": "off",
|
208 |
+
"id": "heading5",
|
209 |
+
"title": "Heading 5",
|
210 |
+
"fontFamily": "montserrat",
|
211 |
+
"fontSize": 20,
|
212 |
+
"fontWeight": 500,
|
213 |
+
"lineHeight": 1.5,
|
214 |
+
"letterSpacing": 0,
|
215 |
+
"tabletFontSize": 19,
|
216 |
+
"tabletFontWeight": 500,
|
217 |
+
"tabletLineHeight": 1.4,
|
218 |
+
"tabletLetterSpacing": 0,
|
219 |
+
"mobileFontSize": 18,
|
220 |
+
"mobileFontWeight": 500,
|
221 |
+
"mobileLineHeight": 1.4,
|
222 |
+
"mobileLetterSpacing": 0
|
223 |
+
},
|
224 |
+
{
|
225 |
+
"deletable": "off",
|
226 |
+
"id": "heading6",
|
227 |
+
"title": "Heading 6",
|
228 |
+
"fontFamily": "montserrat",
|
229 |
+
"fontSize": 17,
|
230 |
+
"fontWeight": 500,
|
231 |
+
"lineHeight": 1.5,
|
232 |
+
"letterSpacing": 0,
|
233 |
+
"tabletFontSize": 16,
|
234 |
+
"tabletFontWeight": 500,
|
235 |
+
"tabletLineHeight": 1.4,
|
236 |
+
"tabletLetterSpacing": 0,
|
237 |
+
"mobileFontSize": 16,
|
238 |
+
"mobileFontWeight": 500,
|
239 |
+
"mobileLineHeight": 1.4,
|
240 |
+
"mobileLetterSpacing": 0
|
241 |
+
},
|
242 |
+
{
|
243 |
+
"deletable": "off",
|
244 |
+
"id": "button",
|
245 |
+
"title": "Button",
|
246 |
+
"fontFamily": "montserrat",
|
247 |
+
"fontSize": 12,
|
248 |
+
"fontWeight": 600,
|
249 |
+
"lineHeight": 1.8,
|
250 |
+
"letterSpacing": 3,
|
251 |
+
"tabletFontSize": 12,
|
252 |
+
"tabletFontWeight": 600,
|
253 |
+
"tabletLineHeight": 1.8,
|
254 |
+
"tabletLetterSpacing": 3,
|
255 |
+
"mobileFontSize": 12,
|
256 |
+
"mobileFontWeight": 600,
|
257 |
+
"mobileLineHeight": 1.8,
|
258 |
+
"mobileLetterSpacing": 3
|
259 |
+
}
|
260 |
+
]
|
261 |
+
}
|
262 |
+
}
|
263 |
+
}'],
|
264 |
+
['{
|
265 |
+
"styles": {
|
266 |
+
"_selected": "AlpineLodge"
|
267 |
+
}
|
268 |
+
}'],
|
269 |
+
['{
|
270 |
+
"styles": {
|
271 |
+
"_selected": "AlpineLodge"
|
272 |
+
},
|
273 |
+
"extraFonts": [
|
274 |
+
"fanwood_text"
|
275 |
+
]
|
276 |
+
}'],
|
277 |
+
['{
|
278 |
+
"styles": {
|
279 |
+
"_selected": "default"
|
280 |
+
},
|
281 |
+
"extraFonts": [
|
282 |
+
"fanwood_text"
|
283 |
+
]
|
284 |
+
}'],
|
285 |
+
['{
|
286 |
+
"styles": {
|
287 |
+
"_selected": "Yoga",
|
288 |
+
"_extraFontStyles": [
|
289 |
+
{
|
290 |
+
"deletable": "on",
|
291 |
+
"id": "cldnfsvvgz",
|
292 |
+
"title": "New Style #10",
|
293 |
+
"fontFamily": "muli",
|
294 |
+
"fontSize": 16,
|
295 |
+
"fontWeight": 600,
|
296 |
+
"lineHeight": 1.6,
|
297 |
+
"letterSpacing": 0,
|
298 |
+
"mobileFontSize": 15,
|
299 |
+
"mobileFontWeight": 400,
|
300 |
+
"mobileLineHeight": 1.6,
|
301 |
+
"mobileLetterSpacing": 0
|
302 |
+
}
|
303 |
+
],
|
304 |
+
"Yoga": {
|
305 |
+
"colorPalette": [
|
306 |
+
{
|
307 |
+
"id": "color1",
|
308 |
+
"hex": "#1d0f23"
|
309 |
+
},
|
310 |
+
{
|
311 |
+
"id": "color2",
|
312 |
+
"hex": "#442153"
|
313 |
+
},
|
314 |
+
{
|
315 |
+
"id": "color3",
|
316 |
+
"hex": "#51d0d3"
|
317 |
+
},
|
318 |
+
{
|
319 |
+
"id": "color4",
|
320 |
+
"hex": "#9d41c8"
|
321 |
+
},
|
322 |
+
{
|
323 |
+
"id": "color5",
|
324 |
+
"hex": "#bde1f4"
|
325 |
+
},
|
326 |
+
{
|
327 |
+
"id": "color6",
|
328 |
+
"hex": "#f2fafa"
|
329 |
+
},
|
330 |
+
{
|
331 |
+
"id": "color7",
|
332 |
+
"hex": "#968fa0"
|
333 |
+
},
|
334 |
+
{
|
335 |
+
"id": "color8",
|
336 |
+
"hex": "#ffffff"
|
337 |
+
}
|
338 |
+
],
|
339 |
+
"fontStyles": [
|
340 |
+
{
|
341 |
+
"deletable": "off",
|
342 |
+
"id": "paragraph",
|
343 |
+
"title": "Paragraph",
|
344 |
+
"fontFamily": "muli",
|
345 |
+
"fontSize": 16,
|
346 |
+
"fontWeight": 600,
|
347 |
+
"lineHeight": 1.6,
|
348 |
+
"letterSpacing": 0,
|
349 |
+
"mobileFontSize": 15,
|
350 |
+
"mobileFontWeight": 400,
|
351 |
+
"mobileLineHeight": 1.6,
|
352 |
+
"mobileLetterSpacing": 0
|
353 |
+
},
|
354 |
+
{
|
355 |
+
"deletable": "off",
|
356 |
+
"id": "subtitle",
|
357 |
+
"title": "Subtitle",
|
358 |
+
"fontFamily": "muli",
|
359 |
+
"fontSize": 20,
|
360 |
+
"fontWeight": 600,
|
361 |
+
"lineHeight": 1.5,
|
362 |
+
"letterSpacing": 0,
|
363 |
+
"mobileFontSize": 17,
|
364 |
+
"mobileFontWeight": 600,
|
365 |
+
"mobileLineHeight": 1.5,
|
366 |
+
"mobileLetterSpacing": 0
|
367 |
+
},
|
368 |
+
{
|
369 |
+
"deletable": "off",
|
370 |
+
"id": "abovetitle",
|
371 |
+
"title": "Above Title",
|
372 |
+
"fontFamily": "muli",
|
373 |
+
"fontSize": 14,
|
374 |
+
"fontWeight": 700,
|
375 |
+
"lineHeight": 1.7,
|
376 |
+
"letterSpacing": 2.5,
|
377 |
+
"mobileFontSize": 13,
|
378 |
+
"mobileFontWeight": 400,
|
379 |
+
"mobileLineHeight": 1.7,
|
380 |
+
"mobileLetterSpacing": 2
|
381 |
+
},
|
382 |
+
{
|
383 |
+
"deletable": "off",
|
384 |
+
"id": "heading1",
|
385 |
+
"title": "Heading 1",
|
386 |
+
"fontFamily": "muli",
|
387 |
+
"fontSize": 60,
|
388 |
+
"fontWeight": 300,
|
389 |
+
"lineHeight": 1.2,
|
390 |
+
"letterSpacing": -1,
|
391 |
+
"mobileFontSize": 34,
|
392 |
+
"mobileFontWeight": 200,
|
393 |
+
"mobileLineHeight": 1.3,
|
394 |
+
"mobileLetterSpacing": -1
|
395 |
+
},
|
396 |
+
{
|
397 |
+
"deletable": "off",
|
398 |
+
"id": "heading2",
|
399 |
+
"title": "Heading 2",
|
400 |
+
"fontFamily": "yesteryear",
|
401 |
+
"fontSize": 58,
|
402 |
+
"fontWeight": 700,
|
403 |
+
"lineHeight": 1.4,
|
404 |
+
"letterSpacing": -1,
|
405 |
+
"mobileFontSize": 40,
|
406 |
+
"mobileFontWeight": 700,
|
407 |
+
"mobileLineHeight": 1.3,
|
408 |
+
"mobileLetterSpacing": -0.5
|
409 |
+
},
|
410 |
+
{
|
411 |
+
"deletable": "off",
|
412 |
+
"id": "heading3",
|
413 |
+
"title": "Heading 3",
|
414 |
+
"fontFamily": "muli",
|
415 |
+
"fontSize": 40,
|
416 |
+
"fontWeight": 600,
|
417 |
+
"lineHeight": 1.3,
|
418 |
+
"letterSpacing": 0,
|
419 |
+
"mobileFontSize": 24,
|
420 |
+
"mobileFontWeight": 600,
|
421 |
+
"mobileLineHeight": 1.3,
|
422 |
+
"mobileLetterSpacing": 0
|
423 |
+
},
|
424 |
+
{
|
425 |
+
"deletable": "off",
|
426 |
+
"id": "heading4",
|
427 |
+
"title": "Heading 4",
|
428 |
+
"fontFamily": "yesteryear",
|
429 |
+
"fontSize": 26,
|
430 |
+
"fontWeight": 500,
|
431 |
+
"lineHeight": 1.4,
|
432 |
+
"letterSpacing": -1,
|
433 |
+
"mobileFontSize": 21,
|
434 |
+
"mobileFontWeight": 500,
|
435 |
+
"mobileLineHeight": 1.4,
|
436 |
+
"mobileLetterSpacing": 0
|
437 |
+
},
|
438 |
+
{
|
439 |
+
"deletable": "off",
|
440 |
+
"id": "heading5",
|
441 |
+
"title": "Heading 5",
|
442 |
+
"fontFamily": "muli",
|
443 |
+
"fontSize": 22,
|
444 |
+
"fontWeight": 700,
|
445 |
+
"lineHeight": 1.5,
|
446 |
+
"letterSpacing": 0,
|
447 |
+
"mobileFontSize": 18,
|
448 |
+
"mobileFontWeight": 500,
|
449 |
+
"mobileLineHeight": 1.4,
|
450 |
+
"mobileLetterSpacing": 0
|
451 |
+
},
|
452 |
+
{
|
453 |
+
"deletable": "off",
|
454 |
+
"id": "heading6",
|
455 |
+
"title": "Heading 6",
|
456 |
+
"fontFamily": "muli",
|
457 |
+
"fontSize": 20,
|
458 |
+
"fontWeight": 400,
|
459 |
+
"lineHeight": 1.5,
|
460 |
+
"letterSpacing": 0,
|
461 |
+
"mobileFontSize": 22,
|
462 |
+
"mobileFontWeight": 800,
|
463 |
+
"mobileLineHeight": 1.4,
|
464 |
+
"mobileLetterSpacing": 0
|
465 |
+
},
|
466 |
+
{
|
467 |
+
"deletable": "off",
|
468 |
+
"id": "button",
|
469 |
+
"title": "Button",
|
470 |
+
"fontFamily": "muli",
|
471 |
+
"fontSize": 13,
|
472 |
+
"fontWeight": 800,
|
473 |
+
"lineHeight": 1.8,
|
474 |
+
"letterSpacing": 1.5,
|
475 |
+
"mobileFontSize": 13,
|
476 |
+
"mobileFontWeight": 800,
|
477 |
+
"mobileLineHeight": 1.8,
|
478 |
+
"mobileLetterSpacing": 3
|
479 |
+
}
|
480 |
+
]
|
481 |
+
}
|
482 |
+
},
|
483 |
+
"extraFonts": [
|
484 |
+
"fanwood_text"
|
485 |
+
]
|
486 |
+
}'],
|
487 |
+
['{
|
488 |
+
"styles": {
|
489 |
+
"_selected": "Architekt",
|
490 |
+
"_extraFontStyles": [
|
491 |
+
{
|
492 |
+
"deletable": "on",
|
493 |
+
"id": "wdzhaqavbn",
|
494 |
+
"title": "New Style #10",
|
495 |
+
"fontFamily": "muli",
|
496 |
+
"fontSize": 18,
|
497 |
+
"fontWeight": 300,
|
498 |
+
"lineHeight": 1.6,
|
499 |
+
"letterSpacing": 0,
|
500 |
+
"mobileFontSize": 15,
|
501 |
+
"mobileFontWeight": 300,
|
502 |
+
"mobileLineHeight": 1.6,
|
503 |
+
"mobileLetterSpacing": 0
|
504 |
+
}
|
505 |
+
],
|
506 |
+
"Swipe": {
|
507 |
+
"colorPalette": [
|
508 |
+
{
|
509 |
+
"id": "color1",
|
510 |
+
"hex": "#111112"
|
511 |
+
},
|
512 |
+
{
|
513 |
+
"id": "color2",
|
514 |
+
"hex": "#111112"
|
515 |
+
},
|
516 |
+
{
|
517 |
+
"id": "color3",
|
518 |
+
"hex": "#ff5833"
|
519 |
+
},
|
520 |
+
{
|
521 |
+
"id": "color4",
|
522 |
+
"hex": "#a7a7a7"
|
523 |
+
},
|
524 |
+
{
|
525 |
+
"id": "color5",
|
526 |
+
"hex": "#20d6eb"
|
527 |
+
},
|
528 |
+
{
|
529 |
+
"id": "color6",
|
530 |
+
"hex": "#ebebeb"
|
531 |
+
},
|
532 |
+
{
|
533 |
+
"id": "color7",
|
534 |
+
"hex": "#757575"
|
535 |
+
},
|
536 |
+
{
|
537 |
+
"id": "color8",
|
538 |
+
"hex": "#ffffff"
|
539 |
+
}
|
540 |
+
],
|
541 |
+
"fontStyles": [
|
542 |
+
{
|
543 |
+
"deletable": "off",
|
544 |
+
"id": "paragraph",
|
545 |
+
"title": "Paragraph",
|
546 |
+
"fontFamily": "cormorant_garamond",
|
547 |
+
"fontSize": 18,
|
548 |
+
"fontWeight": 300,
|
549 |
+
"lineHeight": 1.6,
|
550 |
+
"letterSpacing": 0,
|
551 |
+
"mobileFontSize": 15,
|
552 |
+
"mobileFontWeight": 300,
|
553 |
+
"mobileLineHeight": 1.6,
|
554 |
+
"mobileLetterSpacing": 0
|
555 |
+
},
|
556 |
+
{
|
557 |
+
"deletable": "off",
|
558 |
+
"id": "subtitle",
|
559 |
+
"title": "Subtitle",
|
560 |
+
"fontFamily": "prata",
|
561 |
+
"fontSize": 25,
|
562 |
+
"fontWeight": 300,
|
563 |
+
"lineHeight": 1.8,
|
564 |
+
"letterSpacing": 0,
|
565 |
+
"mobileFontSize": 17,
|
566 |
+
"mobileFontWeight": 300,
|
567 |
+
"mobileLineHeight": 1.5,
|
568 |
+
"mobileLetterSpacing": 0
|
569 |
+
},
|
570 |
+
{
|
571 |
+
"deletable": "off",
|
572 |
+
"id": "abovetitle",
|
573 |
+
"title": "Above Title",
|
574 |
+
"fontFamily": "crimson_text",
|
575 |
+
"fontSize": 25,
|
576 |
+
"fontWeight": 400,
|
577 |
+
"lineHeight": 1.8,
|
578 |
+
"letterSpacing": 0,
|
579 |
+
"mobileFontSize": 13,
|
580 |
+
"mobileFontWeight": 400,
|
581 |
+
"mobileLineHeight": 1.7,
|
582 |
+
"mobileLetterSpacing": 2
|
583 |
+
},
|
584 |
+
{
|
585 |
+
"deletable": "off",
|
586 |
+
"id": "heading1",
|
587 |
+
"title": "Heading 1",
|
588 |
+
"fontFamily": "crimson_text",
|
589 |
+
"fontSize": 45,
|
590 |
+
"fontWeight": 200,
|
591 |
+
"lineHeight": 1.7,
|
592 |
+
"letterSpacing": 0,
|
593 |
+
"mobileFontSize": 34,
|
594 |
+
"mobileFontWeight": 200,
|
595 |
+
"mobileLineHeight": 1.3,
|
596 |
+
"mobileLetterSpacing": -1
|
597 |
+
},
|
598 |
+
{
|
599 |
+
"deletable": "off",
|
600 |
+
"id": "heading2",
|
601 |
+
"title": "Heading 2",
|
602 |
+
"fontFamily": "montserrat",
|
603 |
+
"fontSize": 32,
|
604 |
+
"fontWeight": 400,
|
605 |
+
"lineHeight": 1.5,
|
606 |
+
"letterSpacing": 0,
|
607 |
+
"mobileFontSize": 29,
|
608 |
+
"mobileFontWeight": 700,
|
609 |
+
"mobileLineHeight": 1.3,
|
610 |
+
"mobileLetterSpacing": -0.5
|
611 |
+
},
|
612 |
+
{
|
613 |
+
"deletable": "off",
|
614 |
+
"id": "heading3",
|
615 |
+
"title": "Heading 3",
|
616 |
+
"fontFamily": "crimson_text",
|
617 |
+
"fontSize": 34,
|
618 |
+
"fontWeight": 400,
|
619 |
+
"lineHeight": 1.5,
|
620 |
+
"letterSpacing": 0,
|
621 |
+
"mobileFontSize": 22,
|
622 |
+
"mobileFontWeight": 600,
|
623 |
+
"mobileLineHeight": 1.3,
|
624 |
+
"mobileLetterSpacing": 0
|
625 |
+
},
|
626 |
+
{
|
627 |
+
"deletable": "off",
|
628 |
+
"id": "heading4",
|
629 |
+
"title": "Heading 4",
|
630 |
+
"fontFamily": "montserrat",
|
631 |
+
"fontSize": 30,
|
632 |
+
"fontWeight": 400,
|
633 |
+
"lineHeight": 1.5,
|
634 |
+
"letterSpacing": 0,
|
635 |
+
"mobileFontSize": 21,
|
636 |
+
"mobileFontWeight": 500,
|
637 |
+
"mobileLineHeight": 1.4,
|
638 |
+
"mobileLetterSpacing": 0
|
639 |
+
},
|
640 |
+
{
|
641 |
+
"deletable": "off",
|
642 |
+
"id": "heading5",
|
643 |
+
"title": "Heading 5",
|
644 |
+
"fontFamily": "playfair_display",
|
645 |
+
"fontSize": 22,
|
646 |
+
"fontWeight": 400,
|
647 |
+
"lineHeight": 1.6,
|
648 |
+
"letterSpacing": 0,
|
649 |
+
"mobileFontSize": 18,
|
650 |
+
"mobileFontWeight": 500,
|
651 |
+
"mobileLineHeight": 1.4,
|
652 |
+
"mobileLetterSpacing": 0
|
653 |
+
},
|
654 |
+
{
|
655 |
+
"deletable": "off",
|
656 |
+
"id": "heading6",
|
657 |
+
"title": "Heading 6",
|
658 |
+
"fontFamily": "montserrat",
|
659 |
+
"fontSize": 20,
|
660 |
+
"fontWeight": 400,
|
661 |
+
"lineHeight": 1.5,
|
662 |
+
"letterSpacing": 0,
|
663 |
+
"mobileFontSize": 16,
|
664 |
+
"mobileFontWeight": 500,
|
665 |
+
"mobileLineHeight": 1.4,
|
666 |
+
"mobileLetterSpacing": 0
|
667 |
+
},
|
668 |
+
{
|
669 |
+
"deletable": "off",
|
670 |
+
"id": "button",
|
671 |
+
"title": "Button",
|
672 |
+
"fontFamily": "montserrat",
|
673 |
+
"fontSize": 13,
|
674 |
+
"fontWeight": 400,
|
675 |
+
"lineHeight": 1.8,
|
676 |
+
"letterSpacing": 0,
|
677 |
+
"mobileFontSize": 12,
|
678 |
+
"mobileFontWeight": 600,
|
679 |
+
"mobileLineHeight": 1.8,
|
680 |
+
"mobileLetterSpacing": 3
|
681 |
+
}
|
682 |
+
]
|
683 |
+
}
|
684 |
+
},
|
685 |
+
"extraFonts": [
|
686 |
+
"the_girl_next_door"
|
687 |
+
]
|
688 |
+
}'],
|
689 |
+
['{
|
690 |
+
"styles": {
|
691 |
+
"_selected": "default",
|
692 |
+
"_extraFontStyles": [
|
693 |
+
{
|
694 |
+
"deletable": "on",
|
695 |
+
"id": "wdzhaqavbn",
|
696 |
+
"title": "New Style #10",
|
697 |
+
"fontFamily": "muli",
|
698 |
+
"fontSize": 18,
|
699 |
+
"fontWeight": 300,
|
700 |
+
"lineHeight": 1.6,
|
701 |
+
"letterSpacing": 0,
|
702 |
+
"mobileFontSize": 15,
|
703 |
+
"mobileFontWeight": 300,
|
704 |
+
"mobileLineHeight": 1.6,
|
705 |
+
"mobileLetterSpacing": 0
|
706 |
+
},
|
707 |
+
{
|
708 |
+
"deletable": "on",
|
709 |
+
"id": "sfcwtcwbex",
|
710 |
+
"title": "New Style #11",
|
711 |
+
"fontFamily": "roboto",
|
712 |
+
"fontSize": 16,
|
713 |
+
"fontWeight": 300,
|
714 |
+
"lineHeight": 1.7,
|
715 |
+
"letterSpacing": 0,
|
716 |
+
"tabletFontSize": 15,
|
717 |
+
"tabletFontWeight": 300,
|
718 |
+
"tabletLineHeight": 1.6,
|
719 |
+
"tabletLetterSpacing": 0,
|
720 |
+
"mobileFontSize": 15,
|
721 |
+
"mobileFontWeight": 300,
|
722 |
+
"mobileLineHeight": 1.6,
|
723 |
+
"mobileLetterSpacing": 0
|
724 |
+
}
|
725 |
+
],
|
726 |
+
"Swipe": {
|
727 |
+
"colorPalette": [
|
728 |
+
{
|
729 |
+
"id": "color1",
|
730 |
+
"hex": "#111112"
|
731 |
+
},
|
732 |
+
{
|
733 |
+
"id": "color2",
|
734 |
+
"hex": "#111112"
|
735 |
+
},
|
736 |
+
{
|
737 |
+
"id": "color3",
|
738 |
+
"hex": "#ff5833"
|
739 |
+
},
|
740 |
+
{
|
741 |
+
"id": "color4",
|
742 |
+
"hex": "#a7a7a7"
|
743 |
+
},
|
744 |
+
{
|
745 |
+
"id": "color5",
|
746 |
+
"hex": "#20d6eb"
|
747 |
+
},
|
748 |
+
{
|
749 |
+
"id": "color6",
|
750 |
+
"hex": "#ebebeb"
|
751 |
+
},
|
752 |
+
{
|
753 |
+
"id": "color7",
|
754 |
+
"hex": "#757575"
|
755 |
+
},
|
756 |
+
{
|
757 |
+
"id": "color8",
|
758 |
+
"hex": "#ffffff"
|
759 |
+
}
|
760 |
+
],
|
761 |
+
"fontStyles": [
|
762 |
+
{
|
763 |
+
"deletable": "off",
|
764 |
+
"id": "paragraph",
|
765 |
+
"title": "Paragraph",
|
766 |
+
"fontFamily": "cormorant_garamond",
|
767 |
+
"fontSize": 18,
|
768 |
+
"fontWeight": 300,
|
769 |
+
"lineHeight": 1.6,
|
770 |
+
"letterSpacing": 0,
|
771 |
+
"mobileFontSize": 15,
|
772 |
+
"mobileFontWeight": 300,
|
773 |
+
"mobileLineHeight": 1.6,
|
774 |
+
"mobileLetterSpacing": 0
|
775 |
+
},
|
776 |
+
{
|
777 |
+
"deletable": "off",
|
778 |
+
"id": "subtitle",
|
779 |
+
"title": "Subtitle",
|
780 |
+
"fontFamily": "prata",
|
781 |
+
"fontSize": 25,
|
782 |
+
"fontWeight": 300,
|
783 |
+
"lineHeight": 1.8,
|
784 |
+
"letterSpacing": 0,
|
785 |
+
"mobileFontSize": 17,
|
786 |
+
"mobileFontWeight": 300,
|
787 |
+
"mobileLineHeight": 1.5,
|
788 |
+
"mobileLetterSpacing": 0
|
789 |
+
},
|
790 |
+
{
|
791 |
+
"deletable": "off",
|
792 |
+
"id": "abovetitle",
|
793 |
+
"title": "Above Title",
|
794 |
+
"fontFamily": "crimson_text",
|
795 |
+
"fontSize": 25,
|
796 |
+
"fontWeight": 400,
|
797 |
+
"lineHeight": 1.8,
|
798 |
+
"letterSpacing": 0,
|
799 |
+
"mobileFontSize": 13,
|
800 |
+
"mobileFontWeight": 400,
|
801 |
+
"mobileLineHeight": 1.7,
|
802 |
+
"mobileLetterSpacing": 2
|
803 |
+
},
|
804 |
+
{
|
805 |
+
"deletable": "off",
|
806 |
+
"id": "heading1",
|
807 |
+
"title": "Heading 1",
|
808 |
+
"fontFamily": "crimson_text",
|
809 |
+
"fontSize": 45,
|
810 |
+
"fontWeight": 200,
|
811 |
+
"lineHeight": 1.7,
|
812 |
+
"letterSpacing": 0,
|
813 |
+
"mobileFontSize": 34,
|
814 |
+
"mobileFontWeight": 200,
|
815 |
+
"mobileLineHeight": 1.3,
|
816 |
+
"mobileLetterSpacing": -1
|
817 |
+
},
|
818 |
+
{
|
819 |
+
"deletable": "off",
|
820 |
+
"id": "heading2",
|
821 |
+
"title": "Heading 2",
|
822 |
+
"fontFamily": "montserrat",
|
823 |
+
"fontSize": 32,
|
824 |
+
"fontWeight": 400,
|
825 |
+
"lineHeight": 1.5,
|
826 |
+
"letterSpacing": 0,
|
827 |
+
"mobileFontSize": 29,
|
828 |
+
"mobileFontWeight": 700,
|
829 |
+
"mobileLineHeight": 1.3,
|
830 |
+
"mobileLetterSpacing": -0.5
|
831 |
+
},
|
832 |
+
{
|
833 |
+
"deletable": "off",
|
834 |
+
"id": "heading3",
|
835 |
+
"title": "Heading 3",
|
836 |
+
"fontFamily": "crimson_text",
|
837 |
+
"fontSize": 34,
|
838 |
+
"fontWeight": 400,
|
839 |
+
"lineHeight": 1.5,
|
840 |
+
"letterSpacing": 0,
|
841 |
+
"mobileFontSize": 22,
|
842 |
+
"mobileFontWeight": 600,
|
843 |
+
"mobileLineHeight": 1.3,
|
844 |
+
"mobileLetterSpacing": 0
|
845 |
+
},
|
846 |
+
{
|
847 |
+
"deletable": "off",
|
848 |
+
"id": "heading4",
|
849 |
+
"title": "Heading 4",
|
850 |
+
"fontFamily": "montserrat",
|
851 |
+
"fontSize": 30,
|
852 |
+
"fontWeight": 400,
|
853 |
+
"lineHeight": 1.5,
|
854 |
+
"letterSpacing": 0,
|
855 |
+
"mobileFontSize": 21,
|
856 |
+
"mobileFontWeight": 500,
|
857 |
+
"mobileLineHeight": 1.4,
|
858 |
+
"mobileLetterSpacing": 0
|
859 |
+
},
|
860 |
+
{
|
861 |
+
"deletable": "off",
|
862 |
+
"id": "heading5",
|
863 |
+
"title": "Heading 5",
|
864 |
+
"fontFamily": "playfair_display",
|
865 |
+
"fontSize": 22,
|
866 |
+
"fontWeight": 400,
|
867 |
+
"lineHeight": 1.6,
|
868 |
+
"letterSpacing": 0,
|
869 |
+
"mobileFontSize": 18,
|
870 |
+
"mobileFontWeight": 500,
|
871 |
+
"mobileLineHeight": 1.4,
|
872 |
+
"mobileLetterSpacing": 0
|
873 |
+
},
|
874 |
+
{
|
875 |
+
"deletable": "off",
|
876 |
+
"id": "heading6",
|
877 |
+
"title": "Heading 6",
|
878 |
+
"fontFamily": "montserrat",
|
879 |
+
"fontSize": 20,
|
880 |
+
"fontWeight": 400,
|
881 |
+
"lineHeight": 1.5,
|
882 |
+
"letterSpacing": 0,
|
883 |
+
"mobileFontSize": 16,
|
884 |
+
"mobileFontWeight": 500,
|
885 |
+
"mobileLineHeight": 1.4,
|
886 |
+
"mobileLetterSpacing": 0
|
887 |
+
},
|
888 |
+
{
|
889 |
+
"deletable": "off",
|
890 |
+
"id": "button",
|
891 |
+
"title": "Button",
|
892 |
+
"fontFamily": "montserrat",
|
893 |
+
"fontSize": 13,
|
894 |
+
"fontWeight": 400,
|
895 |
+
"lineHeight": 1.8,
|
896 |
+
"letterSpacing": 0,
|
897 |
+
"mobileFontSize": 12,
|
898 |
+
"mobileFontWeight": 600,
|
899 |
+
"mobileLineHeight": 1.8,
|
900 |
+
"mobileLetterSpacing": 3
|
901 |
+
}
|
902 |
+
]
|
903 |
+
},
|
904 |
+
"default": {
|
905 |
+
"colorPalette": [
|
906 |
+
{
|
907 |
+
"id": "color1",
|
908 |
+
"hex": "#191b21"
|
909 |
+
},
|
910 |
+
{
|
911 |
+
"id": "color2",
|
912 |
+
"hex": "#142850"
|
913 |
+
},
|
914 |
+
{
|
915 |
+
"id": "color3",
|
916 |
+
"hex": "#239ddb"
|
917 |
+
},
|
918 |
+
{
|
919 |
+
"id": "color4",
|
920 |
+
"hex": "#d70e8c"
|
921 |
+
},
|
922 |
+
{
|
923 |
+
"id": "color5",
|
924 |
+
"hex": "#bde1f4"
|
925 |
+
},
|
926 |
+
{
|
927 |
+
"id": "color6",
|
928 |
+
"hex": "#eef0f2"
|
929 |
+
},
|
930 |
+
{
|
931 |
+
"id": "color7",
|
932 |
+
"hex": "#73777f"
|
933 |
+
},
|
934 |
+
{
|
935 |
+
"id": "color8",
|
936 |
+
"hex": "#ffffff"
|
937 |
+
}
|
938 |
+
],
|
939 |
+
"fontStyles": [
|
940 |
+
{
|
941 |
+
"deletable": "off",
|
942 |
+
"id": "paragraph",
|
943 |
+
"title": "Paragraph",
|
944 |
+
"fontFamily": "noto_serif",
|
945 |
+
"fontSize": 16,
|
946 |
+
"fontWeight": 300,
|
947 |
+
"lineHeight": 1.7,
|
948 |
+
"letterSpacing": 0,
|
949 |
+
"tabletFontSize": 15,
|
950 |
+
"tabletFontWeight": 300,
|
951 |
+
"tabletLineHeight": 1.6,
|
952 |
+
"tabletLetterSpacing": 0,
|
953 |
+
"mobileFontSize": 15,
|
954 |
+
"mobileFontWeight": 300,
|
955 |
+
"mobileLineHeight": 1.6,
|
956 |
+
"mobileLetterSpacing": 0
|
957 |
+
},
|
958 |
+
{
|
959 |
+
"deletable": "off",
|
960 |
+
"id": "subtitle",
|
961 |
+
"title": "Subtitle",
|
962 |
+
"fontFamily": "noto_serif",
|
963 |
+
"fontSize": 18,
|
964 |
+
"fontWeight": 300,
|
965 |
+
"lineHeight": 1.5,
|
966 |
+
"letterSpacing": 0,
|
967 |
+
"tabletFontSize": 17,
|
968 |
+
"tabletFontWeight": 300,
|
969 |
+
"tabletLineHeight": 1.5,
|
970 |
+
"tabletLetterSpacing": 0,
|
971 |
+
"mobileFontSize": 17,
|
972 |
+
"mobileFontWeight": 300,
|
973 |
+
"mobileLineHeight": 1.5,
|
974 |
+
"mobileLetterSpacing": 0
|
975 |
+
},
|
976 |
+
{
|
977 |
+
"deletable": "off",
|
978 |
+
"id": "abovetitle",
|
979 |
+
"title": "Above Title",
|
980 |
+
"fontFamily": "montserrat",
|
981 |
+
"fontSize": 16,
|
982 |
+
"fontWeight": 400,
|
983 |
+
"lineHeight": 1.7,
|
984 |
+
"letterSpacing": 2,
|
985 |
+
"tabletFontSize": 15,
|
986 |
+
"tabletFontWeight": 400,
|
987 |
+
"tabletLineHeight": 1.7,
|
988 |
+
"tabletLetterSpacing": 2,
|
989 |
+
"mobileFontSize": 13,
|
990 |
+
"mobileFontWeight": 400,
|
991 |
+
"mobileLineHeight": 1.7,
|
992 |
+
"mobileLetterSpacing": 2
|
993 |
+
},
|
994 |
+
{
|
995 |
+
"deletable": "off",
|
996 |
+
"id": "heading1",
|
997 |
+
"title": "Heading 1",
|
998 |
+
"fontFamily": "montserrat",
|
999 |
+
"fontSize": 56,
|
1000 |
+
"fontWeight": 200,
|
1001 |
+
"lineHeight": 1.3,
|
1002 |
+
"letterSpacing": -1.5,
|
1003 |
+
"tabletFontSize": 40,
|
1004 |
+
"tabletFontWeight": 200,
|
1005 |
+
"tabletLineHeight": 1.3,
|
1006 |
+
"tabletLetterSpacing": -1,
|
1007 |
+
"mobileFontSize": 34,
|
1008 |
+
"mobileFontWeight": 200,
|
1009 |
+
"mobileLineHeight": 1.3,
|
1010 |
+
"mobileLetterSpacing": -1
|
1011 |
+
},
|
1012 |
+
{
|
1013 |
+
"deletable": "off",
|
1014 |
+
"id": "heading2",
|
1015 |
+
"title": "Heading 2",
|
1016 |
+
"fontFamily": "montserrat",
|
1017 |
+
"fontSize": 42,
|
1018 |
+
"fontWeight": 700,
|
1019 |
+
"lineHeight": 1.3,
|
1020 |
+
"letterSpacing": -1.5,
|
1021 |
+
"tabletFontSize": 35,
|
1022 |
+
"tabletFontWeight": 700,
|
1023 |
+
"tabletLineHeight": 1.3,
|
1024 |
+
"tabletLetterSpacing": -0.5,
|
1025 |
+
"mobileFontSize": 29,
|
1026 |
+
"mobileFontWeight": 700,
|
1027 |
+
"mobileLineHeight": 1.3,
|
1028 |
+
"mobileLetterSpacing": -0.5
|
1029 |
+
},
|
1030 |
+
{
|
1031 |
+
"deletable": "off",
|
1032 |
+
"id": "heading3",
|
1033 |
+
"title": "Heading 3",
|
1034 |
+
"fontFamily": "montserrat",
|
1035 |
+
"fontSize": 32,
|
1036 |
+
"fontWeight": 600,
|
1037 |
+
"lineHeight": 1.3,
|
1038 |
+
"letterSpacing": -1,
|
1039 |
+
"tabletFontSize": 27,
|
1040 |
+
"tabletFontWeight": 600,
|
1041 |
+
"tabletLineHeight": 1.3,
|
1042 |
+
"tabletLetterSpacing": 0,
|
1043 |
+
"mobileFontSize": 22,
|
1044 |
+
"mobileFontWeight": 600,
|
1045 |
+
"mobileLineHeight": 1.3,
|
1046 |
+
"mobileLetterSpacing": 0
|
1047 |
+
},
|
1048 |
+
{
|
1049 |
+
"deletable": "off",
|
1050 |
+
"id": "heading4",
|
1051 |
+
"title": "Heading 4",
|
1052 |
+
"fontFamily": "montserrat",
|
1053 |
+
"fontSize": 26,
|
1054 |
+
"fontWeight": 500,
|
1055 |
+
"lineHeight": 1.4,
|
1056 |
+
"letterSpacing": -1,
|
1057 |
+
"tabletFontSize": 24,
|
1058 |
+
"tabletFontWeight": 500,
|
1059 |
+
"tabletLineHeight": 1.4,
|
1060 |
+
"tabletLetterSpacing": 0,
|
1061 |
+
"mobileFontSize": 21,
|
1062 |
+
"mobileFontWeight": 500,
|
1063 |
+
"mobileLineHeight": 1.4,
|
1064 |
+
"mobileLetterSpacing": 0
|
1065 |
+
},
|
1066 |
+
{
|
1067 |
+
"deletable": "off",
|
1068 |
+
"id": "heading5",
|
1069 |
+
"title": "Heading 5",
|
1070 |
+
"fontFamily": "montserrat",
|
1071 |
+
"fontSize": 20,
|
1072 |
+
"fontWeight": 500,
|
1073 |
+
"lineHeight": 1.5,
|
1074 |
+
"letterSpacing": 0,
|
1075 |
+
"tabletFontSize": 19,
|
1076 |
+
"tabletFontWeight": 500,
|
1077 |
+
"tabletLineHeight": 1.4,
|
1078 |
+
"tabletLetterSpacing": 0,
|
1079 |
+
"mobileFontSize": 18,
|
1080 |
+
"mobileFontWeight": 500,
|
1081 |
+
"mobileLineHeight": 1.4,
|
1082 |
+
"mobileLetterSpacing": 0
|
1083 |
+
},
|
1084 |
+
{
|
1085 |
+
"deletable": "off",
|
1086 |
+
"id": "heading6",
|
1087 |
+
"title": "Heading 6",
|
1088 |
+
"fontFamily": "montserrat",
|
1089 |
+
"fontSize": 17,
|
1090 |
+
"fontWeight": 500,
|
1091 |
+
"lineHeight": 1.5,
|
1092 |
+
"letterSpacing": 0,
|
1093 |
+
"tabletFontSize": 16,
|
1094 |
+
"tabletFontWeight": 500,
|
1095 |
+
"tabletLineHeight": 1.4,
|
1096 |
+
"tabletLetterSpacing": 0,
|
1097 |
+
"mobileFontSize": 16,
|
1098 |
+
"mobileFontWeight": 500,
|
1099 |
+
"mobileLineHeight": 1.4,
|
1100 |
+
"mobileLetterSpacing": 0
|
1101 |
+
},
|
1102 |
+
{
|
1103 |
+
"deletable": "off",
|
1104 |
+
"id": "button",
|
1105 |
+
"title": "Button",
|
1106 |
+
"fontFamily": "montserrat",
|
1107 |
+
"fontSize": 12,
|
1108 |
+
"fontWeight": 600,
|
1109 |
+
"lineHeight": 1.8,
|
1110 |
+
"letterSpacing": 3,
|
1111 |
+
"tabletFontSize": 12,
|
1112 |
+
"tabletFontWeight": 600,
|
1113 |
+
"tabletLineHeight": 1.8,
|
1114 |
+
"tabletLetterSpacing": 3,
|
1115 |
+
"mobileFontSize": 12,
|
1116 |
+
"mobileFontWeight": 600,
|
1117 |
+
"mobileLineHeight": 1.8,
|
1118 |
+
"mobileLetterSpacing": 3
|
1119 |
+
}
|
1120 |
+
]
|
1121 |
+
}
|
1122 |
+
},
|
1123 |
+
"extraFonts": [
|
1124 |
+
"the_girl_next_door",
|
1125 |
+
"farsan"
|
1126 |
+
]
|
1127 |
+
}'],
|
1128 |
+
['{
|
1129 |
+
"styles": {
|
1130 |
+
"_selected": "InShape",
|
1131 |
+
"_extraFontStyles": [
|
1132 |
+
{
|
1133 |
+
"deletable": "on",
|
1134 |
+
"id": "wdzhaqavbn",
|
1135 |
+
"title": "New Style #10",
|
1136 |
+
"fontFamily": "muli",
|
1137 |
+
"fontSize": 18,
|
1138 |
+
"fontWeight": 300,
|
1139 |
+
"lineHeight": 1.6,
|
1140 |
+
"letterSpacing": 0,
|
1141 |
+
"mobileFontSize": 15,
|
1142 |
+
"mobileFontWeight": 300,
|
1143 |
+
"mobileLineHeight": 1.6,
|
1144 |
+
"mobileLetterSpacing": 0
|
1145 |
+
},
|
1146 |
+
{
|
1147 |
+
"deletable": "on",
|
1148 |
+
"id": "sfcwtcwbex",
|
1149 |
+
"title": "New Style #11",
|
1150 |
+
"fontFamily": "roboto",
|
1151 |
+
"fontSize": 16,
|
1152 |
+
"fontWeight": 300,
|
1153 |
+
"lineHeight": 1.7,
|
1154 |
+
"letterSpacing": 0,
|
1155 |
+
"tabletFontSize": 15,
|
1156 |
+
"tabletFontWeight": 300,
|
1157 |
+
"tabletLineHeight": 1.6,
|
1158 |
+
"tabletLetterSpacing": 0,
|
1159 |
+
"mobileFontSize": 15,
|
1160 |
+
"mobileFontWeight": 300,
|
1161 |
+
"mobileLineHeight": 1.6,
|
1162 |
+
"mobileLetterSpacing": 0
|
1163 |
+
}
|
1164 |
+
],
|
1165 |
+
"Swipe": {
|
1166 |
+
"colorPalette": [
|
1167 |
+
{
|
1168 |
+
"id": "color1",
|
1169 |
+
"hex": "#111112"
|
1170 |
+
},
|
1171 |
+
{
|
1172 |
+
"id": "color2",
|
1173 |
+
"hex": "#111112"
|
1174 |
+
},
|
1175 |
+
{
|
1176 |
+
"id": "color3",
|
1177 |
+
"hex": "#ff5833"
|
1178 |
+
},
|
1179 |
+
{
|
1180 |
+
"id": "color4",
|
1181 |
+
"hex": "#a7a7a7"
|
1182 |
+
},
|
1183 |
+
{
|
1184 |
+
"id": "color5",
|
1185 |
+
"hex": "#20d6eb"
|
1186 |
+
},
|
1187 |
+
{
|
1188 |
+
"id": "color6",
|
1189 |
+
"hex": "#ebebeb"
|
1190 |
+
},
|
1191 |
+
{
|
1192 |
+
"id": "color7",
|
1193 |
+
"hex": "#757575"
|
1194 |
+
},
|
1195 |
+
{
|
1196 |
+
"id": "color8",
|
1197 |
+
"hex": "#ffffff"
|
1198 |
+
}
|
1199 |
+
],
|
1200 |
+
"fontStyles": [
|
1201 |
+
{
|
1202 |
+
"deletable": "off",
|
1203 |
+
"id": "paragraph",
|
1204 |
+
"title": "Paragraph",
|
1205 |
+
"fontFamily": "cormorant_garamond",
|
1206 |
+
"fontSize": 18,
|
1207 |
+
"fontWeight": 300,
|
1208 |
+
"lineHeight": 1.6,
|
1209 |
+
"letterSpacing": 0,
|
1210 |
+
"mobileFontSize": 15,
|
1211 |
+
"mobileFontWeight": 300,
|
1212 |
+
"mobileLineHeight": 1.6,
|
1213 |
+
"mobileLetterSpacing": 0
|
1214 |
+
},
|
1215 |
+
{
|
1216 |
+
"deletable": "off",
|
1217 |
+
"id": "subtitle",
|
1218 |
+
"title": "Subtitle",
|
1219 |
+
"fontFamily": "prata",
|
1220 |
+
"fontSize": 25,
|
1221 |
+
"fontWeight": 300,
|
1222 |
+
"lineHeight": 1.8,
|
1223 |
+
"letterSpacing": 0,
|
1224 |
+
"mobileFontSize": 17,
|
1225 |
+
"mobileFontWeight": 300,
|
1226 |
+
"mobileLineHeight": 1.5,
|
1227 |
+
"mobileLetterSpacing": 0
|
1228 |
+
},
|
1229 |
+
{
|
1230 |
+
"deletable": "off",
|
1231 |
+
"id": "abovetitle",
|
1232 |
+
"title": "Above Title",
|
1233 |
+
"fontFamily": "crimson_text",
|
1234 |
+
"fontSize": 25,
|
1235 |
+
"fontWeight": 400,
|
1236 |
+
"lineHeight": 1.8,
|
1237 |
+
"letterSpacing": 0,
|
1238 |
+
"mobileFontSize": 13,
|
1239 |
+
"mobileFontWeight": 400,
|
1240 |
+
"mobileLineHeight": 1.7,
|
1241 |
+
"mobileLetterSpacing": 2
|
1242 |
+
},
|
1243 |
+
{
|
1244 |
+
"deletable": "off",
|
1245 |
+
"id": "heading1",
|
1246 |
+
"title": "Heading 1",
|
1247 |
+
"fontFamily": "crimson_text",
|
1248 |
+
"fontSize": 45,
|
1249 |
+
"fontWeight": 200,
|
1250 |
+
"lineHeight": 1.7,
|
1251 |
+
"letterSpacing": 0,
|
1252 |
+
"mobileFontSize": 34,
|
1253 |
+
"mobileFontWeight": 200,
|
1254 |
+
"mobileLineHeight": 1.3,
|
1255 |
+
"mobileLetterSpacing": -1
|
1256 |
+
},
|
1257 |
+
{
|
1258 |
+
"deletable": "off",
|
1259 |
+
"id": "heading2",
|
1260 |
+
"title": "Heading 2",
|
1261 |
+
"fontFamily": "montserrat",
|
1262 |
+
"fontSize": 32,
|
1263 |
+
"fontWeight": 400,
|
1264 |
+
"lineHeight": 1.5,
|
1265 |
+
"letterSpacing": 0,
|
1266 |
+
"mobileFontSize": 29,
|
1267 |
+
"mobileFontWeight": 700,
|
1268 |
+
"mobileLineHeight": 1.3,
|
1269 |
+
"mobileLetterSpacing": -0.5
|
1270 |
+
},
|
1271 |
+
{
|
1272 |
+
"deletable": "off",
|
1273 |
+
"id": "heading3",
|
1274 |
+
"title": "Heading 3",
|
1275 |
+
"fontFamily": "crimson_text",
|
1276 |
+
"fontSize": 34,
|
1277 |
+
"fontWeight": 400,
|
1278 |
+
"lineHeight": 1.5,
|
1279 |
+
"letterSpacing": 0,
|
1280 |
+
"mobileFontSize": 22,
|
1281 |
+
"mobileFontWeight": 600,
|
1282 |
+
"mobileLineHeight": 1.3,
|
1283 |
+
"mobileLetterSpacing": 0
|
1284 |
+
},
|
1285 |
+
{
|
1286 |
+
"deletable": "off",
|
1287 |
+
"id": "heading4",
|
1288 |
+
"title": "Heading 4",
|
1289 |
+
"fontFamily": "montserrat",
|
1290 |
+
"fontSize": 30,
|
1291 |
+
"fontWeight": 400,
|
1292 |
+
"lineHeight": 1.5,
|
1293 |
+
"letterSpacing": 0,
|
1294 |
+
"mobileFontSize": 21,
|
1295 |
+
"mobileFontWeight": 500,
|
1296 |
+
"mobileLineHeight": 1.4,
|
1297 |
+
"mobileLetterSpacing": 0
|
1298 |
+
},
|
1299 |
+
{
|
1300 |
+
"deletable": "off",
|
1301 |
+
"id": "heading5",
|
1302 |
+
"title": "Heading 5",
|
1303 |
+
"fontFamily": "playfair_display",
|
1304 |
+
"fontSize": 22,
|
1305 |
+
"fontWeight": 400,
|
1306 |
+
"lineHeight": 1.6,
|
1307 |
+
"letterSpacing": 0,
|
1308 |
+
"mobileFontSize": 18,
|
1309 |
+
"mobileFontWeight": 500,
|
1310 |
+
"mobileLineHeight": 1.4,
|
1311 |
+
"mobileLetterSpacing": 0
|
1312 |
+
},
|
1313 |
+
{
|
1314 |
+
"deletable": "off",
|
1315 |
+
"id": "heading6",
|
1316 |
+
"title": "Heading 6",
|
1317 |
+
"fontFamily": "montserrat",
|
1318 |
+
"fontSize": 20,
|
1319 |
+
"fontWeight": 400,
|
1320 |
+
"lineHeight": 1.5,
|
1321 |
+
"letterSpacing": 0,
|
1322 |
+
"mobileFontSize": 16,
|
1323 |
+
"mobileFontWeight": 500,
|
1324 |
+
"mobileLineHeight": 1.4,
|
1325 |
+
"mobileLetterSpacing": 0
|
1326 |
+
},
|
1327 |
+
{
|
1328 |
+
"deletable": "off",
|
1329 |
+
"id": "button",
|
1330 |
+
"title": "Button",
|
1331 |
+
"fontFamily": "montserrat",
|
1332 |
+
"fontSize": 13,
|
1333 |
+
"fontWeight": 400,
|
1334 |
+
"lineHeight": 1.8,
|
1335 |
+
"letterSpacing": 0,
|
1336 |
+
"mobileFontSize": 12,
|
1337 |
+
"mobileFontWeight": 600,
|
1338 |
+
"mobileLineHeight": 1.8,
|
1339 |
+
"mobileLetterSpacing": 3
|
1340 |
+
}
|
1341 |
+
]
|
1342 |
+
},
|
1343 |
+
"default": {
|
1344 |
+
"colorPalette": [
|
1345 |
+
{
|
1346 |
+
"id": "color1",
|
1347 |
+
"hex": "#191b21"
|
1348 |
+
},
|
1349 |
+
{
|
1350 |
+
"id": "color2",
|
1351 |
+
"hex": "#142850"
|
1352 |
+
},
|
1353 |
+
{
|
1354 |
+
"id": "color3",
|
1355 |
+
"hex": "#239ddb"
|
1356 |
+
},
|
1357 |
+
{
|
1358 |
+
"id": "color4",
|
1359 |
+
"hex": "#d70e8c"
|
1360 |
+
},
|
1361 |
+
{
|
1362 |
+
"id": "color5",
|
1363 |
+
"hex": "#bde1f4"
|
1364 |
+
},
|
1365 |
+
{
|
1366 |
+
"id": "color6",
|
1367 |
+
"hex": "#eef0f2"
|
1368 |
+
},
|
1369 |
+
{
|
1370 |
+
"id": "color7",
|
1371 |
+
"hex": "#73777f"
|
1372 |
+
},
|
1373 |
+
{
|
1374 |
+
"id": "color8",
|
1375 |
+
"hex": "#ffffff"
|
1376 |
+
}
|
1377 |
+
],
|
1378 |
+
"fontStyles": [
|
1379 |
+
{
|
1380 |
+
"deletable": "off",
|
1381 |
+
"id": "paragraph",
|
1382 |
+
"title": "Paragraph",
|
1383 |
+
"fontFamily": "noto_serif",
|
1384 |
+
"fontSize": 16,
|
1385 |
+
"fontWeight": 300,
|
1386 |
+
"lineHeight": 1.7,
|
1387 |
+
"letterSpacing": 0,
|
1388 |
+
"tabletFontSize": 15,
|
1389 |
+
"tabletFontWeight": 300,
|
1390 |
+
"tabletLineHeight": 1.6,
|
1391 |
+
"tabletLetterSpacing": 0,
|
1392 |
+
"mobileFontSize": 15,
|
1393 |
+
"mobileFontWeight": 300,
|
1394 |
+
"mobileLineHeight": 1.6,
|
1395 |
+
"mobileLetterSpacing": 0
|
1396 |
+
},
|
1397 |
+
{
|
1398 |
+
"deletable": "off",
|
1399 |
+
"id": "subtitle",
|
1400 |
+
"title": "Subtitle",
|
1401 |
+
"fontFamily": "noto_serif",
|
1402 |
+
"fontSize": 18,
|
1403 |
+
"fontWeight": 300,
|
1404 |
+
"lineHeight": 1.5,
|
1405 |
+
"letterSpacing": 0,
|
1406 |
+
"tabletFontSize": 17,
|
1407 |
+
"tabletFontWeight": 300,
|
1408 |
+
"tabletLineHeight": 1.5,
|
1409 |
+
"tabletLetterSpacing": 0,
|
1410 |
+
"mobileFontSize": 17,
|
1411 |
+
"mobileFontWeight": 300,
|
1412 |
+
"mobileLineHeight": 1.5,
|
1413 |
+
"mobileLetterSpacing": 0
|
1414 |
+
},
|
1415 |
+
{
|
1416 |
+
"deletable": "off",
|
1417 |
+
"id": "abovetitle",
|
1418 |
+
"title": "Above Title",
|
1419 |
+
"fontFamily": "montserrat",
|
1420 |
+
"fontSize": 16,
|
1421 |
+
"fontWeight": 400,
|
1422 |
+
"lineHeight": 1.7,
|
1423 |
+
"letterSpacing": 2,
|
1424 |
+
"tabletFontSize": 15,
|
1425 |
+
"tabletFontWeight": 400,
|
1426 |
+
"tabletLineHeight": 1.7,
|
1427 |
+
"tabletLetterSpacing": 2,
|
1428 |
+
"mobileFontSize": 13,
|
1429 |
+
"mobileFontWeight": 400,
|
1430 |
+
"mobileLineHeight": 1.7,
|
1431 |
+
"mobileLetterSpacing": 2
|
1432 |
+
},
|
1433 |
+
{
|
1434 |
+
"deletable": "off",
|
1435 |
+
"id": "heading1",
|
1436 |
+
"title": "Heading 1",
|
1437 |
+
"fontFamily": "montserrat",
|
1438 |
+
"fontSize": 56,
|
1439 |
+
"fontWeight": 200,
|
1440 |
+
"lineHeight": 1.3,
|
1441 |
+
"letterSpacing": -1.5,
|
1442 |
+
"tabletFontSize": 40,
|
1443 |
+
"tabletFontWeight": 200,
|
1444 |
+
"tabletLineHeight": 1.3,
|
1445 |
+
"tabletLetterSpacing": -1,
|
1446 |
+
"mobileFontSize": 34,
|
1447 |
+
"mobileFontWeight": 200,
|
1448 |
+
"mobileLineHeight": 1.3,
|
1449 |
+
"mobileLetterSpacing": -1
|
1450 |
+
},
|
1451 |
+
{
|
1452 |
+
"deletable": "off",
|
1453 |
+
"id": "heading2",
|
1454 |
+
"title": "Heading 2",
|
1455 |
+
"fontFamily": "montserrat",
|
1456 |
+
"fontSize": 42,
|
1457 |
+
"fontWeight": 700,
|
1458 |
+
"lineHeight": 1.3,
|
1459 |
+
"letterSpacing": -1.5,
|
1460 |
+
"tabletFontSize": 35,
|
1461 |
+
"tabletFontWeight": 700,
|
1462 |
+
"tabletLineHeight": 1.3,
|
1463 |
+
"tabletLetterSpacing": -0.5,
|
1464 |
+
"mobileFontSize": 29,
|
1465 |
+
"mobileFontWeight": 700,
|
1466 |
+
"mobileLineHeight": 1.3,
|
1467 |
+
"mobileLetterSpacing": -0.5
|
1468 |
+
},
|
1469 |
+
{
|
1470 |
+
"deletable": "off",
|
1471 |
+
"id": "heading3",
|
1472 |
+
"title": "Heading 3",
|
1473 |
+
"fontFamily": "montserrat",
|
1474 |
+
"fontSize": 32,
|
1475 |
+
"fontWeight": 600,
|
1476 |
+
"lineHeight": 1.3,
|
1477 |
+
"letterSpacing": -1,
|
1478 |
+
"tabletFontSize": 27,
|
1479 |
+
"tabletFontWeight": 600,
|
1480 |
+
"tabletLineHeight": 1.3,
|
1481 |
+
"tabletLetterSpacing": 0,
|
1482 |
+
"mobileFontSize": 22,
|
1483 |
+
"mobileFontWeight": 600,
|
1484 |
+
"mobileLineHeight": 1.3,
|
1485 |
+
"mobileLetterSpacing": 0
|
1486 |
+
},
|
1487 |
+
{
|
1488 |
+
"deletable": "off",
|
1489 |
+
"id": "heading4",
|
1490 |
+
"title": "Heading 4",
|
1491 |
+
"fontFamily": "montserrat",
|
1492 |
+
"fontSize": 26,
|
1493 |
+
"fontWeight": 500,
|
1494 |
+
"lineHeight": 1.4,
|
1495 |
+
"letterSpacing": -1,
|
1496 |
+
"tabletFontSize": 24,
|
1497 |
+
"tabletFontWeight": 500,
|
1498 |
+
"tabletLineHeight": 1.4,
|
1499 |
+
"tabletLetterSpacing": 0,
|
1500 |
+
"mobileFontSize": 21,
|
1501 |
+
"mobileFontWeight": 500,
|
1502 |
+
"mobileLineHeight": 1.4,
|
1503 |
+
"mobileLetterSpacing": 0
|
1504 |
+
},
|
1505 |
+
{
|
1506 |
+
"deletable": "off",
|
1507 |
+
"id": "heading5",
|
1508 |
+
"title": "Heading 5",
|
1509 |
+
"fontFamily": "montserrat",
|
1510 |
+
"fontSize": 20,
|
1511 |
+
"fontWeight": 500,
|
1512 |
+
"lineHeight": 1.5,
|
1513 |
+
"letterSpacing": 0,
|
1514 |
+
"tabletFontSize": 19,
|
1515 |
+
"tabletFontWeight": 500,
|
1516 |
+
"tabletLineHeight": 1.4,
|
1517 |
+
"tabletLetterSpacing": 0,
|
1518 |
+
"mobileFontSize": 18,
|
1519 |
+
"mobileFontWeight": 500,
|
1520 |
+
"mobileLineHeight": 1.4,
|
1521 |
+
"mobileLetterSpacing": 0
|
1522 |
+
},
|
1523 |
+
{
|
1524 |
+
"deletable": "off",
|
1525 |
+
"id": "heading6",
|
1526 |
+
"title": "Heading 6",
|
1527 |
+
"fontFamily": "montserrat",
|
1528 |
+
"fontSize": 17,
|
1529 |
+
"fontWeight": 500,
|
1530 |
+
"lineHeight": 1.5,
|
1531 |
+
"letterSpacing": 0,
|
1532 |
+
"tabletFontSize": 16,
|
1533 |
+
"tabletFontWeight": 500,
|
1534 |
+
"tabletLineHeight": 1.4,
|
1535 |
+
"tabletLetterSpacing": 0,
|
1536 |
+
"mobileFontSize": 16,
|
1537 |
+
"mobileFontWeight": 500,
|
1538 |
+
"mobileLineHeight": 1.4,
|
1539 |
+
"mobileLetterSpacing": 0
|
1540 |
+
},
|
1541 |
+
{
|
1542 |
+
"deletable": "off",
|
1543 |
+
"id": "button",
|
1544 |
+
"title": "Button",
|
1545 |
+
"fontFamily": "montserrat",
|
1546 |
+
"fontSize": 12,
|
1547 |
+
"fontWeight": 600,
|
1548 |
+
"lineHeight": 1.8,
|
1549 |
+
"letterSpacing": 3,
|
1550 |
+
"tabletFontSize": 12,
|
1551 |
+
"tabletFontWeight": 600,
|
1552 |
+
"tabletLineHeight": 1.8,
|
1553 |
+
"tabletLetterSpacing": 3,
|
1554 |
+
"mobileFontSize": 12,
|
1555 |
+
"mobileFontWeight": 600,
|
1556 |
+
"mobileLineHeight": 1.8,
|
1557 |
+
"mobileLetterSpacing": 3
|
1558 |
+
}
|
1559 |
+
]
|
1560 |
+
}
|
1561 |
+
},
|
1562 |
+
"extraFonts": [
|
1563 |
+
"the_girl_next_door",
|
1564 |
+
"farsan"
|
1565 |
+
]
|
1566 |
+
}']
|
1567 |
+
];
|
1568 |
+
}
|
1569 |
+
|
1570 |
+
public function brokenDataProvider()
|
1571 |
+
{
|
1572 |
+
return [
|
1573 |
+
['{
|
1574 |
+
"selectedKit": "vnexmlshkihvcgsxmozgxzzdwsyvolvmhtne",
|
1575 |
+
"selectedStyle": "kldugntsakdckzxhreidncqvgunudghrcuzv",
|
1576 |
+
"styles": [
|
1577 |
+
{
|
1578 |
+
"id": "bahcadtpvdhdphmhymrsgrwobyzhxcdzytyx",
|
1579 |
+
"title": "Overpass",
|
1580 |
+
"colorPalette": [
|
1581 |
+
{ "id": "color1", "hex": "#333333" },
|
1582 |
+
{ "id": "color2", "hex": "#333333" },
|
1583 |
+
{ "id": "color3", "hex": "#00b6ef" },
|
1584 |
+
{ "id": "color4", "hex": "#333333" },
|
1585 |
+
{ "id": "color5", "hex": "#bde1f4" },
|
1586 |
+
{ "id": "color6", "hex": "#ffbc39" },
|
1587 |
+
{ "id": "color7", "hex": "#333333" },
|
1588 |
+
{ "id": "color8", "hex": "#ffffff" }
|
1589 |
+
],
|
1590 |
+
"fontStyles": [
|
1591 |
+
{
|
1592 |
+
"deletable": "off",
|
1593 |
+
"id": "paragraph",
|
1594 |
+
"title": "Paragraph",
|
1595 |
+
"fontFamily": "noto_serif",
|
1596 |
+
"fontSize": 16,
|
1597 |
+
"fontWeight": 300,
|
1598 |
+
"lineHeight": 1.7,
|
1599 |
+
"letterSpacing": 0,
|
1600 |
+
"tabletFontSize": 15,
|
1601 |
+
"tabletFontWeight": 300,
|
1602 |
+
"tabletLineHeight": 1.6000000000000001,
|
1603 |
+
"tabletLetterSpacing": 0,
|
1604 |
+
"mobileFontSize": 15,
|
1605 |
+
"mobileFontWeight": 300,
|
1606 |
+
"mobileLineHeight": 1.6000000000000001,
|
1607 |
+
"mobileLetterSpacing": 0,
|
1608 |
+
"fontFamilyType": "google"
|
1609 |
+
},
|
1610 |
+
{
|
1611 |
+
"deletable": "off",
|
1612 |
+
"id": "subtitle",
|
1613 |
+
"title": "Subtitle",
|
1614 |
+
"fontFamily": "noto_serif",
|
1615 |
+
"fontSize": 18,
|
1616 |
+
"fontWeight": 300,
|
1617 |
+
"lineHeight": 1.5,
|
1618 |
+
"letterSpacing": 0,
|
1619 |
+
"tabletFontSize": 17,
|
1620 |
+
"tabletFontWeight": 300,
|
1621 |
+
"tabletLineHeight": 1.5,
|
1622 |
+
"tabletLetterSpacing": 0,
|
1623 |
+
"mobileFontSize": 17,
|
1624 |
+
"mobileFontWeight": 300,
|
1625 |
+
"mobileLineHeight": 1.5,
|
1626 |
+
"mobileLetterSpacing": 0,
|
1627 |
+
"fontFamilyType": "google"
|
1628 |
+
},
|
1629 |
+
{
|
1630 |
+
"deletable": "off",
|
1631 |
+
"id": "abovetitle",
|
1632 |
+
"title": "Above Title",
|
1633 |
+
"fontFamily": "montserrat",
|
1634 |
+
"fontSize": 16,
|
1635 |
+
"fontWeight": 400,
|
1636 |
+
"lineHeight": 1.7,
|
1637 |
+
"letterSpacing": 2,
|
1638 |
+
"tabletFontSize": 15,
|
1639 |
+
"tabletFontWeight": 400,
|
1640 |
+
"tabletLineHeight": 1.7,
|
1641 |
+
"tabletLetterSpacing": 2,
|
1642 |
+
"mobileFontSize": 13,
|
1643 |
+
"mobileFontWeight": 400,
|
1644 |
+
"mobileLineHeight": 1.7,
|
1645 |
+
"mobileLetterSpacing": 2,
|
1646 |
+
"fontFamilyType": "google"
|
1647 |
+
},
|
1648 |
+
{
|
1649 |
+
"deletable": "off",
|
1650 |
+
"id": "heading1",
|
1651 |
+
"title": "Heading 1",
|
1652 |
+
"fontFamily": "montserrat",
|
1653 |
+
"fontSize": 56,
|
1654 |
+
"fontWeight": 200,
|
1655 |
+
"lineHeight": 1.3,
|
1656 |
+
"letterSpacing": -1.5,
|
1657 |
+
"tabletFontSize": 40,
|
1658 |
+
"tabletFontWeight": 200,
|
1659 |
+
"tabletLineHeight": 1.3,
|
1660 |
+
"tabletLetterSpacing": -1,
|
1661 |
+
"mobileFontSize": 34,
|
1662 |
+
"mobileFontWeight": 200,
|
1663 |
+
"mobileLineHeight": 1.3,
|
1664 |
+
"mobileLetterSpacing": -1,
|
1665 |
+
"fontFamilyType": "google"
|
1666 |
+
},
|
1667 |
+
{
|
1668 |
+
"deletable": "off",
|
1669 |
+
"id": "heading2",
|
1670 |
+
"title": "Heading 2",
|
1671 |
+
"fontFamily": "montserrat",
|
1672 |
+
"fontSize": 42,
|
1673 |
+
"fontWeight": 700,
|
1674 |
+
"lineHeight": 1.3,
|
1675 |
+
"letterSpacing": -1.5,
|
1676 |
+
"tabletFontSize": 35,
|
1677 |
+
"tabletFontWeight": 700,
|
1678 |
+
"tabletLineHeight": 1.3,
|
1679 |
+
"tabletLetterSpacing": -0.5,
|
1680 |
+
"mobileFontSize": 29,
|
1681 |
+
"mobileFontWeight": 700,
|
1682 |
+
"mobileLineHeight": 1.3,
|
1683 |
+
"mobileLetterSpacing": -0.5,
|
1684 |
+
"fontFamilyType": "google"
|
1685 |
+
},
|
1686 |
+
{
|
1687 |
+
"deletable": "off",
|
1688 |
+
"id": "heading3",
|
1689 |
+
"title": "Heading 3",
|
1690 |
+
"fontFamily": "montserrat",
|
1691 |
+
"fontSize": 32,
|
1692 |
+
"fontWeight": 600,
|
1693 |
+
"lineHeight": 1.3,
|
1694 |
+
"letterSpacing": -1,
|
1695 |
+
"tabletFontSize": 27,
|
1696 |
+
"tabletFontWeight": 600,
|
1697 |
+
"tabletLineHeight": 1.3,
|
1698 |
+
"tabletLetterSpacing": 0,
|
1699 |
+
"mobileFontSize": 22,
|
1700 |
+
"mobileFontWeight": 600,
|
1701 |
+
"mobileLineHeight": 1.3,
|
1702 |
+
"mobileLetterSpacing": 0,
|
1703 |
+
"fontFamilyType": "google"
|
1704 |
+
},
|
1705 |
+
{
|
1706 |
+
"deletable": "off",
|
1707 |
+
"id": "heading4",
|
1708 |
+
"title": "Heading 4",
|
1709 |
+
"fontFamily": "montserrat",
|
1710 |
+
"fontSize": 26,
|
1711 |
+
"fontWeight": 500,
|
1712 |
+
"lineHeight": 1.3999999999999999,
|
1713 |
+
"letterSpacing": -1,
|
1714 |
+
"tabletFontSize": 24,
|
1715 |
+
"tabletFontWeight": 500,
|
1716 |
+
"tabletLineHeight": 1.3999999999999999,
|
1717 |
+
"tabletLetterSpacing": 0,
|
1718 |
+
"mobileFontSize": 21,
|
1719 |
+
"mobileFontWeight": 500,
|
1720 |
+
"mobileLineHeight": 1.3999999999999999,
|
1721 |
+
"mobileLetterSpacing": 0,
|
1722 |
+
"fontFamilyType": "google"
|
1723 |
+
},
|
1724 |
+
{
|
1725 |
+
"deletable": "off",
|
1726 |
+
"id": "heading5",
|
1727 |
+
"title": "Heading 5",
|
1728 |
+
"fontFamily": "montserrat",
|
1729 |
+
"fontSize": 20,
|
1730 |
+
"fontWeight": 500,
|
1731 |
+
"lineHeight": 1.5,
|
1732 |
+
"letterSpacing": 0,
|
1733 |
+
"tabletFontSize": 19,
|
1734 |
+
"tabletFontWeight": 500,
|
1735 |
+
"tabletLineHeight": 1.3999999999999999,
|
1736 |
+
"tabletLetterSpacing": 0,
|
1737 |
+
"mobileFontSize": 18,
|
1738 |
+
"mobileFontWeight": 500,
|
1739 |
+
"mobileLineHeight": 1.3999999999999999,
|
1740 |
+
"mobileLetterSpacing": 0,
|
1741 |
+
"fontFamilyType": "google"
|
1742 |
+
},
|
1743 |
+
{
|
1744 |
+
"deletable": "off",
|
1745 |
+
"id": "heading6",
|
1746 |
+
"title": "Heading 6",
|
1747 |
+
"fontFamily": "montserrat",
|
1748 |
+
"fontSize": 17,
|
1749 |
+
"fontWeight": 500,
|
1750 |
+
"lineHeight": 1.5,
|
1751 |
+
"letterSpacing": 0,
|
1752 |
+
"tabletFontSize": 16,
|
1753 |
+
"tabletFontWeight": 500,
|
1754 |
+
"tabletLineHeight": 1.3999999999999999,
|
1755 |
+
"tabletLetterSpacing": 0,
|
1756 |
+
"mobileFontSize": 16,
|
1757 |
+
"mobileFontWeight": 500,
|
1758 |
+
"mobileLineHeight": 1.3999999999999999,
|
1759 |
+
"mobileLetterSpacing": 0,
|
1760 |
+
"fontFamilyType": "google"
|
1761 |
+
},
|
1762 |
+
{
|
1763 |
+
"deletable": "off",
|
1764 |
+
"id": "button",
|
1765 |
+
"title": "Button",
|
1766 |
+
"fontFamily": "montserrat",
|
1767 |
+
"fontSize": 12,
|
1768 |
+
"fontWeight": 600,
|
1769 |
+
"lineHeight": 1.8,
|
1770 |
+
"letterSpacing": 3,
|
1771 |
+
"tabletFontSize": 12,
|
1772 |
+
"tabletFontWeight": 600,
|
1773 |
+
"tabletLineHeight": 1.8,
|
1774 |
+
"tabletLetterSpacing": 3,
|
1775 |
+
"mobileFontSize": 12,
|
1776 |
+
"mobileFontWeight": 600,
|
1777 |
+
"mobileLineHeight": 1.8,
|
1778 |
+
"mobileLetterSpacing": 3,
|
1779 |
+
"fontFamilyType": "google"
|
1780 |
+
}
|
1781 |
+
]
|
1782 |
+
},
|
1783 |
+
{
|
1784 |
+
"id": "oilxrtjxgdgosmgudtgrezwpzxjlfumgppro",
|
1785 |
+
"title": "Magazine",
|
1786 |
+
"colorPalette": [
|
1787 |
+
{
|
1788 |
+
"id": "color1",
|
1789 |
+
"hex": "#182E43"
|
1790 |
+
},
|
1791 |
+
{
|
1792 |
+
"id": "color2",
|
1793 |
+
"hex": "#061726"
|
1794 |
+
},
|
1795 |
+
{
|
1796 |
+
"id": "color3",
|
1797 |
+
"hex": "#1176C1"
|
1798 |
+
},
|
1799 |
+
{
|
1800 |
+
"id": "color4",
|
1801 |
+
"hex": "#EDB2CB"
|
1802 |
+
},
|
1803 |
+
{
|
1804 |
+
"id": "color5",
|
1805 |
+
"hex": "#B5D1E6"
|
1806 |
+
},
|
1807 |
+
{
|
1808 |
+
"id": "color6",
|
1809 |
+
"hex": "#FBF1FA"
|
1810 |
+
},
|
1811 |
+
{
|
1812 |
+
"id": "color7",
|
1813 |
+
"hex": "#5B6067"
|
1814 |
+
},
|
1815 |
+
{
|
1816 |
+
"id": "color8",
|
1817 |
+
"hex": "#FFFFFF"
|
1818 |
+
}
|
1819 |
+
],
|
1820 |
+
"fontStyles": [
|
1821 |
+
{
|
1822 |
+
"deletable": "off",
|
1823 |
+
"id": "paragraph",
|
1824 |
+
"title": "Paragraph",
|
1825 |
+
"fontFamily": "red_hat_text",
|
1826 |
+
"fontFamilyType": "google",
|
1827 |
+
"fontSize": 16,
|
1828 |
+
"fontWeight": 400,
|
1829 |
+
"lineHeight": 1.8999999999999999,
|
1830 |
+
"letterSpacing": 0,
|
1831 |
+
"tabletFontSize": 16,
|
1832 |
+
"tabletFontWeight": 400,
|
1833 |
+
"tabletLineHeight": 1.6000000000000001,
|
1834 |
+
"tabletLetterSpacing": 0,
|
1835 |
+
"mobileFontSize": 16,
|
1836 |
+
"mobileFontWeight": 500,
|
1837 |
+
"mobileLineHeight": 1.6000000000000001,
|
1838 |
+
"mobileLetterSpacing": 0
|
1839 |
+
},
|
1840 |
+
{
|
1841 |
+
"deletable": "off",
|
1842 |
+
"id": "subtitle",
|
1843 |
+
"title": "Subtitle",
|
1844 |
+
"fontFamily": "red_hat_text",
|
1845 |
+
"fontFamilyType": "google",
|
1846 |
+
"fontSize": 17,
|
1847 |
+
"fontWeight": 400,
|
1848 |
+
"lineHeight": 1.8,
|
1849 |
+
"letterSpacing": 0,
|
1850 |
+
"tabletFontSize": 17,
|
1851 |
+
"tabletFontWeight": 400,
|
1852 |
+
"tabletLineHeight": 1.5,
|
1853 |
+
"tabletLetterSpacing": 0,
|
1854 |
+
"mobileFontSize": 18,
|
1855 |
+
"mobileFontWeight": 400,
|
1856 |
+
"mobileLineHeight": 1.6000000000000001,
|
1857 |
+
"mobileLetterSpacing": 0
|
1858 |
+
},
|
1859 |
+
{
|
1860 |
+
"deletable": "off",
|
1861 |
+
"id": "abovetitle",
|
1862 |
+
"title": "Above Title",
|
1863 |
+
"fontFamily": "red_hat_text",
|
1864 |
+
"fontFamilyType": "google",
|
1865 |
+
"fontSize": 13,
|
1866 |
+
"fontWeight": 600,
|
1867 |
+
"lineHeight": 1.5,
|
1868 |
+
"letterSpacing": 1.1000000000000001,
|
1869 |
+
"tabletFontSize": 13,
|
1870 |
+
"tabletFontWeight": 600,
|
1871 |
+
"tabletLineHeight": 1.5,
|
1872 |
+
"tabletLetterSpacing": 1,
|
1873 |
+
"mobileFontSize": 13,
|
1874 |
+
"mobileFontWeight": 600,
|
1875 |
+
"mobileLineHeight": 1.5,
|
1876 |
+
"mobileLetterSpacing": 1
|
1877 |
+
},
|
1878 |
+
{
|
1879 |
+
"deletable": "off",
|
1880 |
+
"id": "heading1",
|
1881 |
+
"title": "Heading 1",
|
1882 |
+
"fontFamily": "dm_serif_text",
|
1883 |
+
"fontFamilyType": "google",
|
1884 |
+
"fontSize": 46,
|
1885 |
+
"fontWeight": 400,
|
1886 |
+
"lineHeight": 1.3,
|
1887 |
+
"letterSpacing": -1.5,
|
1888 |
+
"tabletFontSize": 40,
|
1889 |
+
"tabletFontWeight": 600,
|
1890 |
+
"tabletLineHeight": 1.3,
|
1891 |
+
"tabletLetterSpacing": -1.5,
|
1892 |
+
"mobileFontSize": 36,
|
1893 |
+
"mobileFontWeight": 600,
|
1894 |
+
"mobileLineHeight": 1.3,
|
1895 |
+
"mobileLetterSpacing": -1.5
|
1896 |
+
},
|
1897 |
+
{
|
1898 |
+
"deletable": "off",
|
1899 |
+
"id": "heading2",
|
1900 |
+
"title": "Heading 2",
|
1901 |
+
"fontFamily": "dm_serif_text",
|
1902 |
+
"fontFamilyType": "google",
|
1903 |
+
"fontSize": 36,
|
1904 |
+
"fontWeight": 400,
|
1905 |
+
"lineHeight": 1.3999999999999999,
|
1906 |
+
"letterSpacing": -1,
|
1907 |
+
"tabletFontSize": 35,
|
1908 |
+
"tabletFontWeight": 400,
|
1909 |
+
"tabletLineHeight": 1.2,
|
1910 |
+
"tabletLetterSpacing": -1,
|
1911 |
+
"mobileFontSize": 29,
|
1912 |
+
"mobileFontWeight": 400,
|
1913 |
+
"mobileLineHeight": 1.3,
|
1914 |
+
"mobileLetterSpacing": -0.5
|
1915 |
+
},
|
1916 |
+
{
|
1917 |
+
"deletable": "off",
|
1918 |
+
"id": "heading3",
|
1919 |
+
"title": "Heading 3",
|
1920 |
+
"fontFamily": "dm_serif_text",
|
1921 |
+
"fontFamilyType": "google",
|
1922 |
+
"fontSize": 28,
|
1923 |
+
"fontWeight": 400,
|
1924 |
+
"lineHeight": 1.3999999999999999,
|
1925 |
+
"letterSpacing": -0.5,
|
1926 |
+
"tabletFontSize": 27,
|
1927 |
+
"tabletFontWeight": 400,
|
1928 |
+
"tabletLineHeight": 1.3,
|
1929 |
+
"tabletLetterSpacing": -0.5,
|
1930 |
+
"mobileFontSize": 23,
|
1931 |
+
"mobileFontWeight": 400,
|
1932 |
+
"mobileLineHeight": 1.3,
|
1933 |
+
"mobileLetterSpacing": -0.5
|
1934 |
+
},
|
1935 |
+
{
|
1936 |
+
"deletable": "off",
|
1937 |
+
"id": "heading4",
|
1938 |
+
"title": "Heading 4",
|
1939 |
+
"fontFamily": "red_hat_text",
|
1940 |
+
"fontFamilyType": "google",
|
1941 |
+
"fontSize": 22,
|
1942 |
+
"fontWeight": 500,
|
1943 |
+
"lineHeight": 1.5,
|
1944 |
+
"letterSpacing": -0.5,
|
1945 |
+
"tabletFontSize": 20,
|
1946 |
+
"tabletFontWeight": 500,
|
1947 |
+
"tabletLineHeight": 1.3999999999999999,
|
1948 |
+
"tabletLetterSpacing": -0.5,
|
1949 |
+
"mobileFontSize": 20,
|
1950 |
+
"mobileFontWeight": 500,
|
1951 |
+
"mobileLineHeight": 1.3999999999999999,
|
1952 |
+
"mobileLetterSpacing": -0.5
|
1953 |
+
},
|
1954 |
+
{
|
1955 |
+
"deletable": "off",
|
1956 |
+
"id": "heading5",
|
1957 |
+
"title": "Heading 5",
|
1958 |
+
"fontFamily": "red_hat_text",
|
1959 |
+
"fontFamilyType": "google",
|
1960 |
+
"fontSize": 20,
|
1961 |
+
"fontWeight": 500,
|
1962 |
+
"lineHeight": 1.6000000000000001,
|
1963 |
+
"letterSpacing": 0,
|
1964 |
+
"tabletFontSize": 18,
|
1965 |
+
"tabletFontWeight": 500,
|
1966 |
+
"tabletLineHeight": 1.5,
|
1967 |
+
"tabletLetterSpacing": -0.5,
|
1968 |
+
"mobileFontSize": 18,
|
1969 |
+
"mobileFontWeight": 500,
|
1970 |
+
"mobileLineHeight": 1.5,
|
1971 |
+
"mobileLetterSpacing": -0.5
|
1972 |
+
},
|
1973 |
+
{
|
1974 |
+
"deletable": "off",
|
1975 |
+
"id": "heading6",
|
1976 |
+
"title": "Heading 6",
|
1977 |
+
"fontFamily": "red_hat_text",
|
1978 |
+
"fontFamilyType": "google",
|
1979 |
+
"fontSize": 16,
|
1980 |
+
"fontWeight": 700,
|
1981 |
+
"lineHeight": 1.5,
|
1982 |
+
"letterSpacing": 0,
|
1983 |
+
"tabletFontSize": 16,
|
1984 |
+
"tabletFontWeight": 700,
|
1985 |
+
"tabletLineHeight": 1.5,
|
1986 |
+
"tabletLetterSpacing": -0.5,
|
1987 |
+
"mobileFontSize": 16,
|
1988 |
+
"mobileFontWeight": 700,
|
1989 |
+
"mobileLineHeight": 1.5,
|
1990 |
+
"mobileLetterSpacing": 0
|
1991 |
+
},
|
1992 |
+
{
|
1993 |
+
"deletable": "off",
|
1994 |
+
"id": "button",
|
1995 |
+
"title": "Button",
|
1996 |
+
"fontFamily": "red_hat_text",
|
1997 |
+
"fontFamilyType": "google",
|
1998 |
+
"fontSize": 15,
|
1999 |
+
"fontWeight": 500,
|
2000 |
+
"lineHeight": 1.6000000000000001,
|
2001 |
+
"letterSpacing": 1,
|
2002 |
+
"tabletFontSize": 14,
|
2003 |
+
"tabletFontWeight": 500,
|
2004 |
+
"tabletLineHeight": 1.6000000000000001,
|
2005 |
+
"tabletLetterSpacing": 1,
|
2006 |
+
"mobileFontSize": 14,
|
2007 |
+
"mobileFontWeight": 500,
|
2008 |
+
"mobileLineHeight": 1.6000000000000001,
|
2009 |
+
"mobileLetterSpacing": 1
|
2010 |
+
}
|
2011 |
+
]
|
2012 |
+
},
|
2013 |
+
{
|
2014 |
+
"id": "abzxtmjekuwdhhhchiwlaovkxyvspfffueiy",
|
2015 |
+
"title": "Graceful",
|
2016 |
+
"colorPalette": [
|
2017 |
+
{
|
2018 |
+
"id": "color1",
|
2019 |
+
"hex": "#A276AF"
|
2020 |
+
},
|
2021 |
+
{
|
2022 |
+
"id": "color2",
|
2023 |
+
"hex": "#1E1B2D"
|
2024 |
+
},
|
2025 |
+
{
|
2026 |
+
"id": "color3",
|
2027 |
+
"hex": "#7F69F4"
|
2028 |
+
},
|
2029 |
+
{
|
2030 |
+
"id": "color4",
|
2031 |
+
"hex": "#F7CECA"
|
2032 |
+
},
|
2033 |
+
{
|
2034 |
+
"id": "color5",
|
2035 |
+
"hex": "#C1B8EF"
|
2036 |
+
},
|
2037 |
+
{
|
2038 |
+
"id": "color6",
|
2039 |
+
"hex": "#F2EAE7"
|
2040 |
+
},
|
2041 |
+
{
|
2042 |
+
"id": "color7",
|
2043 |
+
"hex": "#67656D"
|
2044 |
+
},
|
2045 |
+
{
|
2046 |
+
"id": "color8",
|
2047 |
+
"hex": "#FFFFFF"
|
2048 |
+
}
|
2049 |
+
],
|
2050 |
+
"fontStyles": [
|
2051 |
+
{
|
2052 |
+
"deletable": "off",
|
2053 |
+
"id": "paragraph",
|
2054 |
+
"title": "Paragraph",
|
2055 |
+
"fontFamily": "blinker",
|
2056 |
+
"fontFamilyType": "google",
|
2057 |
+
"fontSize": 16,
|
2058 |
+
"fontWeight": 400,
|
2059 |
+
"lineHeight": 1.8999999999999999,
|
2060 |
+
"letterSpacing": 0,
|
2061 |
+
"tabletFontSize": 16,
|
2062 |
+
"tabletFontWeight": 400,
|
2063 |
+
"tabletLineHeight": 1.6000000000000001,
|
2064 |
+
"tabletLetterSpacing": 0,
|
2065 |
+
"mobileFontSize": 16,
|
2066 |
+
"mobileFontWeight": 400,
|
2067 |
+
"mobileLineHeight": 1.6000000000000001,
|
2068 |
+
"mobileLetterSpacing": 0
|
2069 |
+
},
|
2070 |
+
{
|
2071 |
+
"deletable": "off",
|
2072 |
+
"id": "subtitle",
|
2073 |
+
"title": "Subtitle",
|
2074 |
+
"fontFamily": "blinker",
|
2075 |
+
"fontFamilyType": "google",
|
2076 |
+
"fontSize": 17,
|
2077 |
+
"fontWeight": 400,
|
2078 |
+
"lineHeight": 1.8,
|
2079 |
+
"letterSpacing": 0,
|
2080 |
+
"tabletFontSize": 17,
|
2081 |
+
"tabletFontWeight": 400,
|
2082 |
+
"tabletLineHeight": 1.5,
|
2083 |
+
"tabletLetterSpacing": 0,
|
2084 |
+
"mobileFontSize": 17,
|
2085 |
+
"mobileFontWeight": 400,
|
2086 |
+
"mobileLineHeight": 1.5,
|
2087 |
+
"mobileLetterSpacing": 0
|
2088 |
+
},
|
2089 |
+
{
|
2090 |
+
"deletable": "off",
|
2091 |
+
"id": "abovetitle",
|
2092 |
+
"title": "Above Title",
|
2093 |
+
"fontFamily": "blinker",
|
2094 |
+
"fontFamilyType": "google",
|
2095 |
+
"fontSize": 13,
|
2096 |
+
"fontWeight": 600,
|
2097 |
+
"lineHeight": 1.5,
|
2098 |
+
"letterSpacing": 1.1000000000000001,
|
2099 |
+
"tabletFontSize": 13,
|
2100 |
+
"tabletFontWeight": 600,
|
2101 |
+
"tabletLineHeight": 1.5,
|
2102 |
+
"tabletLetterSpacing": 1,
|
2103 |
+
"mobileFontSize": 13,
|
2104 |
+
"mobileFontWeight": 600,
|
2105 |
+
"mobileLineHeight": 1.5,
|
2106 |
+
"mobileLetterSpacing": 1
|
2107 |
+
},
|
2108 |
+
{
|
2109 |
+
"deletable": "off",
|
2110 |
+
"id": "heading1",
|
2111 |
+
"title": "Heading 1",
|
2112 |
+
"fontFamily": "aleo",
|
2113 |
+
"fontFamilyType": "google",
|
2114 |
+
"fontSize": 46,
|
2115 |
+
"fontWeight": 400,
|
2116 |
+
"lineHeight": 1.3,
|
2117 |
+
"letterSpacing": -1.5,
|
2118 |
+
"tabletFontSize": 40,
|
2119 |
+
"tabletFontWeight": 400,
|
2120 |
+
"tabletLineHeight": 1.2,
|
2121 |
+
"tabletLetterSpacing": -1.5,
|
2122 |
+
"mobileFontSize": 34,
|
2123 |
+
"mobileFontWeight": 400,
|
2124 |
+
"mobileLineHeight": 1.3,
|
2125 |
+
"mobileLetterSpacing": -1
|
2126 |
+
},
|
2127 |
+
{
|
2128 |
+
"deletable": "off",
|
2129 |
+
"id": "heading2",
|
2130 |
+
"title": "Heading 2",
|
2131 |
+
"fontFamily": "aleo",
|
2132 |
+
"fontFamilyType": "google",
|
2133 |
+
"fontSize": 36,
|
2134 |
+
"fontWeight": 400,
|
2135 |
+
"lineHeight": 1.3999999999999999,
|
2136 |
+
"letterSpacing": -1,
|
2137 |
+
"tabletFontSize": 35,
|
2138 |
+
"tabletFontWeight": 400,
|
2139 |
+
"tabletLineHeight": 1.3,
|
2140 |
+
"tabletLetterSpacing": -0.5,
|
2141 |
+
"mobileFontSize": 29,
|
2142 |
+
"mobileFontWeight": 400,
|
2143 |
+
"mobileLineHeight": 1.3,
|
2144 |
+
"mobileLetterSpacing": -0.5
|
2145 |
+
},
|
2146 |
+
{
|
2147 |
+
"deletable": "off",
|
2148 |
+
"id": "heading3",
|
2149 |
+
"title": "Heading 3",
|
2150 |
+
"fontFamily": "aleo",
|
2151 |
+
"fontFamilyType": "google",
|
2152 |
+
"fontSize": 28,
|
2153 |
+
"fontWeight": 400,
|
2154 |
+
"lineHeight": 1.3999999999999999,
|
2155 |
+
"letterSpacing": 0,
|
2156 |
+
"tabletFontSize": 25,
|
2157 |
+
"tabletFontWeight": 400,
|
2158 |
+
"tabletLineHeight": 1.3,
|
2159 |
+
"tabletLetterSpacing": 0,
|
2160 |
+
"mobileFontSize": 22,
|
2161 |
+
"mobileFontWeight": 400,
|
2162 |
+
"mobileLineHeight": 1.3,
|
2163 |
+
"mobileLetterSpacing": 0
|
2164 |
+
},
|
2165 |
+
{
|
2166 |
+
"deletable": "off",
|
2167 |
+
"id": "heading4",
|
2168 |
+
"title": "Heading 4",
|
2169 |
+
"fontFamily": "blinker",
|
2170 |
+
"fontFamilyType": "google",
|
2171 |
+
"fontSize": 22,
|
2172 |
+
"fontWeight": 600,
|
2173 |
+
"lineHeight": 1.5,
|
2174 |
+
"letterSpacing": 0,
|
2175 |
+
"tabletFontSize": 22,
|
2176 |
+
"tabletFontWeight": 600,
|
2177 |
+
"tabletLineHeight": 1.3999999999999999,
|
2178 |
+
"tabletLetterSpacing": 0,
|
2179 |
+
"mobileFontSize": 21,
|
2180 |
+
"mobileFontWeight": 600,
|
2181 |
+
"mobileLineHeight": 1.3999999999999999,
|
2182 |
+
"mobileLetterSpacing": 0
|
2183 |
+
},
|
2184 |
+
{
|
2185 |
+
"deletable": "off",
|
2186 |
+
"id": "heading5",
|
2187 |
+
"title": "Heading 5",
|
2188 |
+
"fontFamily": "blinker",
|
2189 |
+
"fontFamilyType": "google",
|
2190 |
+
"fontSize": 20,
|
2191 |
+
"fontWeight": 600,
|
2192 |
+
"lineHeight": 1.6000000000000001,
|
2193 |
+
"letterSpacing": 0,
|
2194 |
+
"tabletFontSize": 18,
|
2195 |
+
"tabletFontWeight": 600,
|
2196 |
+
"tabletLineHeight": 1.5,
|
2197 |
+
"tabletLetterSpacing": 0,
|
2198 |
+
"mobileFontSize": 18,
|
2199 |
+
"mobileFontWeight": 600,
|
2200 |
+
"mobileLineHeight": 1.5,
|
2201 |
+
"mobileLetterSpacing": 0
|
2202 |
+
},
|
2203 |
+
{
|
2204 |
+
"deletable": "off",
|
2205 |
+
"id": "heading6",
|
2206 |
+
"title": "Heading 6",
|
2207 |
+
"fontFamily": "blinker",
|
2208 |
+
"fontFamilyType": "google",
|
2209 |
+
"fontSize": 16,
|
2210 |
+
"fontWeight": 600,
|
2211 |
+
"lineHeight": 1.5,
|
2212 |
+
"letterSpacing": 0,
|
2213 |
+
"tabletFontSize": 17,
|
2214 |
+
"tabletFontWeight": 600,
|
2215 |
+
"tabletLineHeight": 1.5,
|
2216 |
+
"tabletLetterSpacing": 0,
|
2217 |
+
"mobileFontSize": 16,
|
2218 |
+
"mobileFontWeight": 600,
|
2219 |
+
"mobileLineHeight": 1.5,
|
2220 |
+
"mobileLetterSpacing": 0
|
2221 |
+
},
|
2222 |
+
{
|
2223 |
+
"deletable": "off",
|
2224 |
+
"id": "button",
|
2225 |
+
"title": "Button",
|
2226 |
+
"fontFamily": "blinker",
|
2227 |
+
"fontFamilyType": "google",
|
2228 |
+
"fontSize": 15,
|
2229 |
+
"fontWeight": 700,
|
2230 |
+
"lineHeight": 1.6000000000000001,
|
2231 |
+
"letterSpacing": 1,
|
2232 |
+
"tabletFontSize": 14,
|
2233 |
+
"tabletFontWeight": 600,
|
2234 |
+
"tabletLineHeight": 1.6000000000000001,
|
2235 |
+
"tabletLetterSpacing": 0.5,
|
2236 |
+
"mobileFontSize": 15,
|
2237 |
+
"mobileFontWeight": 600,
|
2238 |
+
"mobileLineHeight": 1.6000000000000001,
|
2239 |
+
"mobileLetterSpacing": 0.5
|
2240 |
+
}
|
2241 |
+
]
|
2242 |
+
},
|
2243 |
+
{
|
2244 |
+
"id": "aqmryzjisyyemvyjbrxjhiadzqxjumfplivm",
|
2245 |
+
"title": "Ashen",
|
2246 |
+
"colorPalette": [
|
2247 |
+
{
|
2248 |
+
"id": "color1",
|
2249 |
+
"hex": "#B23730"
|
2250 |
+
},
|
2251 |
+
{
|
2252 |
+
"id": "color2",
|
2253 |
+
"hex": "#200F11"
|
2254 |
+
},
|
2255 |
+
{
|
2256 |
+
"id": "color3",
|
2257 |
+
"hex": "#B2305E"
|
2258 |
+
},
|
2259 |
+
{
|
2260 |
+
"id": "color4",
|
2261 |
+
"hex": "#FFDCD0"
|
2262 |
+
},
|
2263 |
+
{
|
2264 |
+
"id": "color5",
|
2265 |
+
"hex": "#FF7547"
|
2266 |
+
},
|
2267 |
+
{
|
2268 |
+
"id": "color6",
|
2269 |
+
"hex": "#F5F4F0"
|
2270 |
+
},
|
2271 |
+
{
|
2272 |
+
"id": "color7",
|
2273 |
+
"hex": "#7F7979"
|
2274 |
+
},
|
2275 |
+
{
|
2276 |
+
"id": "color8",
|
2277 |
+
"hex": "#FFFFFF"
|
2278 |
+
}
|
2279 |
+
],
|
2280 |
+
"fontStyles": [
|
2281 |
+
{
|
2282 |
+
"deletable": "off",
|
2283 |
+
"id": "paragraph",
|
2284 |
+
"title": "Paragraph",
|
2285 |
+
"fontFamily": "nunito",
|
2286 |
+
"fontFamilyType": "google",
|
2287 |
+
"fontSize": 16,
|
2288 |
+
"fontWeight": 400,
|
2289 |
+
"lineHeight": 1.8999999999999999,
|
2290 |
+
"letterSpacing": 0,
|
2291 |
+
"tabletFontSize": 15,
|
2292 |
+
"tabletFontWeight": 400,
|
2293 |
+
"tabletLineHeight": 1.6000000000000001,
|
2294 |
+
"tabletLetterSpacing": 0,
|
2295 |
+
"mobileFontSize": 15,
|
2296 |
+
"mobileFontWeight": 400,
|
2297 |
+
"mobileLineHeight": 1.6000000000000001,
|
2298 |
+
"mobileLetterSpacing": 0
|
2299 |
+
},
|
2300 |
+
{
|
2301 |
+
"deletable": "off",
|
2302 |
+
"id": "subtitle",
|
2303 |
+
"title": "Subtitle",
|
2304 |
+
"fontFamily": "nunito",
|
2305 |
+
"fontFamilyType": "google",
|
2306 |
+
"fontSize": 17,
|
2307 |
+
"fontWeight": 400,
|
2308 |
+
"lineHeight": 1.8,
|
2309 |
+
"letterSpacing": 0,
|
2310 |
+
"tabletFontSize": 17,
|
2311 |
+
"tabletFontWeight": 400,
|
2312 |
+
"tabletLineHeight": 1.5,
|
2313 |
+
"tabletLetterSpacing": 0,
|
2314 |
+
"mobileFontSize": 17,
|
2315 |
+
"mobileFontWeight": 400,
|
2316 |
+
"mobileLineHeight": 1.5,
|
2317 |
+
"mobileLetterSpacing": 0
|
2318 |
+
},
|
2319 |
+
{
|
2320 |
+
"deletable": "off",
|
2321 |
+
"id": "abovetitle",
|
2322 |
+
"title": "Above Title",
|
2323 |
+
"fontFamily": "nunito",
|
2324 |
+
"fontFamilyType": "google",
|
2325 |
+
"fontSize": 13,
|
2326 |
+
"fontWeight": 700,
|
2327 |
+
"lineHeight": 1.5,
|
2328 |
+
"letterSpacing": 1.1000000000000001,
|
2329 |
+
"tabletFontSize": 13,
|
2330 |
+
"tabletFontWeight": 600,
|
2331 |
+
"tabletLineHeight": 1.5,
|
2332 |
+
"tabletLetterSpacing": 1,
|
2333 |
+
"mobileFontSize": 13,
|
2334 |
+
"mobileFontWeight": 600,
|
2335 |
+
"mobileLineHeight": 1.5,
|
2336 |
+
"mobileLetterSpacing": 1
|
2337 |
+
},
|
2338 |
+
{
|
2339 |
+
"deletable": "off",
|
2340 |
+
"id": "heading1",
|
2341 |
+
"title": "Heading 1",
|
2342 |
+
"fontFamily": "knewave",
|
2343 |
+
"fontFamilyType": "google",
|
2344 |
+
"fontSize": 46,
|
2345 |
+
"fontWeight": 400,
|
2346 |
+
"lineHeight": 1.3,
|
2347 |
+
"letterSpacing": -1.5,
|
2348 |
+
"tabletFontSize": 40,
|
2349 |
+
"tabletFontWeight": 400,
|
2350 |
+
"tabletLineHeight": 1.3,
|
2351 |
+
"tabletLetterSpacing": -1,
|
2352 |
+
"mobileFontSize": 34,
|
2353 |
+
"mobileFontWeight": 400,
|
2354 |
+
"mobileLineHeight": 1.3,
|
2355 |
+
"mobileLetterSpacing": -1
|
2356 |
+
},
|
2357 |
+
{
|
2358 |
+
"deletable": "off",
|
2359 |
+
"id": "heading2",
|
2360 |
+
"title": "Heading 2",
|
2361 |
+
"fontFamily": "knewave",
|
2362 |
+
"fontFamilyType": "google",
|
2363 |
+
"fontSize": 36,
|
2364 |
+
"fontWeight": 400,
|
2365 |
+
"lineHeight": 1.3999999999999999,
|
2366 |
+
"letterSpacing": -1,
|
2367 |
+
"tabletFontSize": 33,
|
2368 |
+
"tabletFontWeight": 400,
|
2369 |
+
"tabletLineHeight": 1.3,
|
2370 |
+
"tabletLetterSpacing": -0.5,
|
2371 |
+
"mobileFontSize": 29,
|
2372 |
+
"mobileFontWeight": 400,
|
2373 |
+
"mobileLineHeight": 1.3,
|
2374 |
+
"mobileLetterSpacing": -0.5
|
2375 |
+
},
|
2376 |
+
{
|
2377 |
+
"deletable": "off",
|
2378 |
+
"id": "heading3",
|
2379 |
+
"title": "Heading 3",
|
2380 |
+
"fontFamily": "knewave",
|
2381 |
+
"fontFamilyType": "google",
|
2382 |
+
"fontSize": 28,
|
2383 |
+
"fontWeight": 400,
|
2384 |
+
"lineHeight": 1.3999999999999999,
|
2385 |
+
"letterSpacing": 0,
|
2386 |
+
"tabletFontSize": 25,
|
2387 |
+
"tabletFontWeight": 400,
|
2388 |
+
"tabletLineHeight": 1.3,
|
2389 |
+
"tabletLetterSpacing": 0,
|
2390 |
+
"mobileFontSize": 22,
|
2391 |
+
"mobileFontWeight": 400,
|
2392 |
+
"mobileLineHeight": 1.3,
|
2393 |
+
"mobileLetterSpacing": 0
|
2394 |
+
},
|
2395 |
+
{
|
2396 |
+
"deletable": "off",
|
2397 |
+
"id": "heading4",
|
2398 |
+
"title": "Heading 4",
|
2399 |
+
"fontFamily": "nunito",
|
2400 |
+
"fontFamilyType": "google",
|
2401 |
+
"fontSize": 22,
|
2402 |
+
"fontWeight": 700,
|
2403 |
+
"lineHeight": 1.5,
|
2404 |
+
"letterSpacing": 0,
|
2405 |
+
"tabletFontSize": 19,
|
2406 |
+
"tabletFontWeight": 700,
|
2407 |
+
"tabletLineHeight": 1.3999999999999999,
|
2408 |
+
"tabletLetterSpacing": 0,
|
2409 |
+
"mobileFontSize": 19,
|
2410 |
+
"mobileFontWeight": 700,
|
2411 |
+
"mobileLineHeight": 1.3999999999999999,
|
2412 |
+
"mobileLetterSpacing": 0
|
2413 |
+
},
|
2414 |
+
{
|
2415 |
+
"deletable": "off",
|
2416 |
+
"id": "heading5",
|
2417 |
+
"title": "Heading 5",
|
2418 |
+
"fontFamily": "nunito",
|
2419 |
+
"fontFamilyType": "google",
|
2420 |
+
"fontSize": 20,
|
2421 |
+
"fontWeight": 700,
|
2422 |
+
"lineHeight": 1.6000000000000001,
|
2423 |
+
"letterSpacing": 0,
|
2424 |
+
"tabletFontSize": 19,
|
2425 |
+
"tabletFontWeight": 700,
|
2426 |
+
"tabletLineHeight": 1.5,
|
2427 |
+
"tabletLetterSpacing": 0,
|
2428 |
+
"mobileFontSize": 18,
|
2429 |
+
"mobileFontWeight": 700,
|
2430 |
+
"mobileLineHeight": 1.5,
|
2431 |
+
"mobileLetterSpacing": 0
|
2432 |
+
},
|
2433 |
+
{
|
2434 |
+
"deletable": "off",
|
2435 |
+
"id": "heading6",
|
2436 |
+
"title": "Heading 6",
|
2437 |
+
"fontFamily": "nunito",
|
2438 |
+
"fontFamilyType": "google",
|
2439 |
+
"fontSize": 16,
|
2440 |
+
"fontWeight": 700,
|
2441 |
+
"lineHeight": 1.5,
|
2442 |
+
"letterSpacing": 0,
|
2443 |
+
"tabletFontSize": 16,
|
2444 |
+
"tabletFontWeight": 600,
|
2445 |
+
"tabletLineHeight": 1.5,
|
2446 |
+
"tabletLetterSpacing": 0,
|
2447 |
+
"mobileFontSize": 16,
|
2448 |
+
"mobileFontWeight": 600,
|
2449 |
+
"mobileLineHeight": 1.5,
|
2450 |
+
"mobileLetterSpacing": 0
|
2451 |
+
},
|
2452 |
+
{
|
2453 |
+
"deletable": "off",
|
2454 |
+
"id": "button",
|
2455 |
+
"title": "Button",
|
2456 |
+
"fontFamily": "nunito",
|
2457 |
+
"fontFamilyType": "google",
|
2458 |
+
"fontSize": 15,
|
2459 |
+
"fontWeight": 700,
|
2460 |
+
"lineHeight": 1.6000000000000001,
|
2461 |
+
"letterSpacing": 1,
|
2462 |
+
"tabletFontSize": 14,
|
2463 |
+
"tabletFontWeight": 700,
|
2464 |
+
"tabletLineHeight": 1.6000000000000001,
|
2465 |
+
"tabletLetterSpacing": 1,
|
2466 |
+
"mobileFontSize": 14,
|
2467 |
+
"mobileFontWeight": 700,
|
2468 |
+
"mobileLineHeight": 1.6000000000000001,
|
2469 |
+
"mobileLetterSpacing": 1
|
2470 |
+
}
|
2471 |
+
]
|
2472 |
+
},
|
2473 |
+
{
|
2474 |
+
"id": "zxpsijgmzwoaiyprcqztjwwjpraeizvtyibq",
|
2475 |
+
"title": "Oblivion",
|
2476 |
+
"colorPalette": [
|
2477 |
+
{
|
2478 |
+
"id": "color1",
|
2479 |
+
"hex": "#5C823F"
|
2480 |
+
},
|
2481 |
+
{
|
2482 |
+
"id": "color2",
|
2483 |
+
"hex": "#26232A"
|
2484 |
+
},
|
2485 |
+
{
|
2486 |
+
"id": "color3",
|
2487 |
+
"hex": "#60B420"
|
2488 |
+
},
|
2489 |
+
{
|
2490 |
+
"id": "color4",
|
2491 |
+
"hex": "#ECD7F2"
|
2492 |
+
},
|
2493 |
+
{
|
2494 |
+
"id": "color5",
|
2495 |
+
"hex": "#9E47DA"
|
2496 |
+
},
|
2497 |
+
{
|
2498 |
+
"id": "color6",
|
2499 |
+
"hex": "#EAF6E3"
|
2500 |
+
},
|
2501 |
+
{
|
2502 |
+
"id": "color7",
|
2503 |
+
"hex": "#6F6D70"
|
2504 |
+
},
|
2505 |
+
{
|
2506 |
+
"id": "color8",
|
2507 |
+
"hex": "#FFFFFF"
|
2508 |
+
}
|
2509 |
+
],
|
2510 |
+
"fontStyles": [
|
2511 |
+
{
|
2512 |
+
"deletable": "off",
|
2513 |
+
"id": "paragraph",
|
2514 |
+
"title": "Paragraph",
|
2515 |
+
"fontFamily": "palanquin",
|
2516 |
+
"fontFamilyType": "google",
|
2517 |
+
"fontSize": 16,
|
2518 |
+
"fontWeight": 400,
|
2519 |
+
"lineHeight": 1.8999999999999999,
|
2520 |
+
"letterSpacing": 0,
|
2521 |
+
"tabletFontSize": 15,
|
2522 |
+
"tabletFontWeight": 400,
|
2523 |
+
"tabletLineHeight": 1.6000000000000001,
|
2524 |
+
"tabletLetterSpacing": 0,
|
2525 |
+
"mobileFontSize": 15,
|
2526 |
+
"mobileFontWeight": 400,
|
2527 |
+
"mobileLineHeight": 1.6000000000000001,
|
2528 |
+
"mobileLetterSpacing": 0
|
2529 |
+
},
|
2530 |
+
{
|
2531 |
+
"deletable": "off",
|
2532 |
+
"id": "subtitle",
|
2533 |
+
"title": "Subtitle",
|
2534 |
+
"fontFamily": "palanquin",
|
2535 |
+
"fontFamilyType": "google",
|
2536 |
+
"fontSize": 17,
|
2537 |
+
"fontWeight": 400,
|
2538 |
+
"lineHeight": 1.8,
|
2539 |
+
"letterSpacing": 0,
|
2540 |
+
"tabletFontSize": 17,
|
2541 |
+
"tabletFontWeight": 300,
|
2542 |
+
"tabletLineHeight": 1.5,
|
2543 |
+
"tabletLetterSpacing": 0,
|
2544 |
+
"mobileFontSize": 17,
|
2545 |
+
"mobileFontWeight": 300,
|
2546 |
+
"mobileLineHeight": 1.5,
|
2547 |
+
"mobileLetterSpacing": 0
|
2548 |
+
},
|
2549 |
+
{
|
2550 |
+
"deletable": "off",
|
2551 |
+
"id": "abovetitle",
|
2552 |
+
"title": "Above Title",
|
2553 |
+
"fontFamily": "palanquin",
|
2554 |
+
"fontFamilyType": "google",
|
2555 |
+
"fontSize": 13,
|
2556 |
+
"fontWeight": 700,
|
2557 |
+
"lineHeight": 1.5,
|
2558 |
+
"letterSpacing": 1.1000000000000001,
|
2559 |
+
"tabletFontSize": 13,
|
2560 |
+
"tabletFontWeight": 600,
|
2561 |
+
"tabletLineHeight": 1.5,
|
2562 |
+
"tabletLetterSpacing": 1,
|
2563 |
+
"mobileFontSize": 13,
|
2564 |
+
"mobileFontWeight": 600,
|
2565 |
+
"mobileLineHeight": 1.5,
|
2566 |
+
"mobileLetterSpacing": 1
|
2567 |
+
},
|
2568 |
+
{
|
2569 |
+
"deletable": "off",
|
2570 |
+
"id": "heading1",
|
2571 |
+
"title": "Heading 1",
|
2572 |
+
"fontFamily": "palanquin_dark",
|
2573 |
+
"fontFamilyType": "google",
|
2574 |
+
"fontSize": 46,
|
2575 |
+
"fontWeight": 400,
|
2576 |
+
"lineHeight": 1.3,
|
2577 |
+
"letterSpacing": -1.5,
|
2578 |
+
"tabletFontSize": 40,
|
2579 |
+
"tabletFontWeight": 400,
|
2580 |
+
"tabletLineHeight": 1.3,
|
2581 |
+
"tabletLetterSpacing": -1,
|
2582 |
+
"mobileFontSize": 34,
|
2583 |
+
"mobileFontWeight": 400,
|
2584 |
+
"mobileLineHeight": 1.3,
|
2585 |
+
"mobileLetterSpacing": -1
|
2586 |
+
},
|
2587 |
+
{
|
2588 |
+
"deletable": "off",
|
2589 |
+
"id": "heading2",
|
2590 |
+
"title": "Heading 2",
|
2591 |
+
"fontFamily": "palanquin_dark",
|
2592 |
+
"fontFamilyType": "google",
|
2593 |
+
"fontSize": 36,
|
2594 |
+
"fontWeight": 400,
|
2595 |
+
"lineHeight": 1.3999999999999999,
|
2596 |
+
"letterSpacing": -1,
|
2597 |
+
"tabletFontSize": 35,
|
2598 |
+
"tabletFontWeight": 400,
|
2599 |
+
"tabletLineHeight": 1.3,
|
2600 |
+
"tabletLetterSpacing": -0.5,
|
2601 |
+
"mobileFontSize": 29,
|
2602 |
+
"mobileFontWeight": 400,
|
2603 |
+
"mobileLineHeight": 1.3,
|
2604 |
+
"mobileLetterSpacing": -0.5
|
2605 |
+
},
|
2606 |
+
{
|
2607 |
+
"deletable": "off",
|
2608 |
+
"id": "heading3",
|
2609 |
+
"title": "Heading 3",
|
2610 |
+
"fontFamily": "palanquin_dark",
|
2611 |
+
"fontFamilyType": "google",
|
2612 |
+
"fontSize": 28,
|
2613 |
+
"fontWeight": 400,
|
2614 |
+
"lineHeight": 1.3999999999999999,
|
2615 |
+
"letterSpacing": 0,
|
2616 |
+
"tabletFontSize": 27,
|
2617 |
+
"tabletFontWeight": 400,
|
2618 |
+
"tabletLineHeight": 1.3,
|
2619 |
+
"tabletLetterSpacing": 0,
|
2620 |
+
"mobileFontSize": 22,
|
2621 |
+
"mobileFontWeight": 400,
|
2622 |
+
"mobileLineHeight": 1.3,
|
2623 |
+
"mobileLetterSpacing": 0
|
2624 |
+
},
|
2625 |
+
{
|
2626 |
+
"deletable": "off",
|
2627 |
+
"id": "heading4",
|
2628 |
+
"title": "Heading 4",
|
2629 |
+
"fontFamily": "palanquin_dark",
|
2630 |
+
"fontFamilyType": "google",
|
2631 |
+
"fontSize": 22,
|
2632 |
+
"fontWeight": 400,
|
2633 |
+
"lineHeight": 1.5,
|
2634 |
+
"letterSpacing": 0,
|
2635 |
+
"tabletFontSize": 22,
|
2636 |
+
"tabletFontWeight": 400,
|
2637 |
+
"tabletLineHeight": 1.3999999999999999,
|
2638 |
+
"tabletLetterSpacing": 0,
|
2639 |
+
"mobileFontSize": 21,
|
2640 |
+
"mobileFontWeight": 400,
|
2641 |
+
"mobileLineHeight": 1.3999999999999999,
|
2642 |
+
"mobileLetterSpacing": 0
|
2643 |
+
},
|
2644 |
+
{
|
2645 |
+
"deletable": "off",
|
2646 |
+
"id": "heading5",
|
2647 |
+
"title": "Heading 5",
|
2648 |
+
"fontFamily": "palanquin_dark",
|
2649 |
+
"fontFamilyType": "google",
|
2650 |
+
"fontSize": 20,
|
2651 |
+
"fontWeight": 400,
|
2652 |
+
"lineHeight": 1.6000000000000001,
|
2653 |
+
"letterSpacing": 0,
|
2654 |
+
"tabletFontSize": 19,
|
2655 |
+
"tabletFontWeight": 400,
|
2656 |
+
"tabletLineHeight": 1.5,
|
2657 |
+
"tabletLetterSpacing": 0,
|
2658 |
+
"mobileFontSize": 18,
|
2659 |
+
"mobileFontWeight": 400,
|
2660 |
+
"mobileLineHeight": 1.5,
|
2661 |
+
"mobileLetterSpacing": 0
|
2662 |
+
},
|
2663 |
+
{
|
2664 |
+
"deletable": "off",
|
2665 |
+
"id": "heading6",
|
2666 |
+
"title": "Heading 6",
|
2667 |
+
"fontFamily": "palanquin",
|
2668 |
+
"fontFamilyType": "google",
|
2669 |
+
"fontSize": 16,
|
2670 |
+
"fontWeight": 700,
|
2671 |
+
"lineHeight": 1.5,
|
2672 |
+
"letterSpacing": 0,
|
2673 |
+
"tabletFontSize": 16,
|
2674 |
+
"tabletFontWeight": 700,
|
2675 |
+
"tabletLineHeight": 1.5,
|
2676 |
+
"tabletLetterSpacing": 0,
|
2677 |
+
"mobileFontSize": 16,
|
2678 |
+
"mobileFontWeight": 700,
|
2679 |
+
"mobileLineHeight": 1.5,
|
2680 |
+
"mobileLetterSpacing": 0
|
2681 |
+
},
|
2682 |
+
{
|
2683 |
+
"deletable": "off",
|
2684 |
+
"id": "button",
|
2685 |
+
"title": "Button",
|
2686 |
+
"fontFamily": "palanquin",
|
2687 |
+
"fontFamilyType": "google",
|
2688 |
+
"fontSize": 15,
|
2689 |
+
"fontWeight": 700,
|
2690 |
+
"lineHeight": 1.6000000000000001,
|
2691 |
+
"letterSpacing": 0.5,
|
2692 |
+
"tabletFontSize": 15,
|
2693 |
+
"tabletFontWeight": 700,
|
2694 |
+
"tabletLineHeight": 1.6000000000000001,
|
2695 |
+
"tabletLetterSpacing": 0.5,
|
2696 |
+
"mobileFontSize": 15,
|
2697 |
+
"mobileFontWeight": 700,
|
2698 |
+
"mobileLineHeight": 1.6000000000000001,
|
2699 |
+
"mobileLetterSpacing": 0.5
|
2700 |
+
}
|
2701 |
+
]
|
2702 |
+
},
|
2703 |
+
{
|
2704 |
+
"id": "mnidlkbkoxwoaofhmdrlgawecfhbpxbtgies",
|
2705 |
+
"title": "Droid",
|
2706 |
+
"colorPalette": [
|
2707 |
+
{
|
2708 |
+
"id": "color1",
|
2709 |
+
"hex": "#8E53A7"
|
2710 |
+
},
|
2711 |
+
{
|
2712 |
+
"id": "color2",
|
2713 |
+
"hex": "#242643"
|
2714 |
+
},
|
2715 |
+
{
|
2716 |
+
"id": "color3",
|
2717 |
+
"hex": "#4157CB"
|
2718 |
+
},
|
2719 |
+
{
|
2720 |
+
"id": "color4",
|
2721 |
+
"hex": "#F8A392"
|
2722 |
+
},
|
2723 |
+
{
|
2724 |
+
"id": "color5",
|
2725 |
+
"hex": "#FFE0DA"
|
2726 |
+
},
|
2727 |
+
{
|
2728 |
+
"id": "color6",
|
2729 |
+
"hex": "#F3EEF0"
|
2730 |
+
},
|
2731 |
+
{
|
2732 |
+
"id": "color7",
|
2733 |
+
"hex": "#5D5E64"
|
2734 |
+
},
|
2735 |
+
{
|
2736 |
+
"id": "color8",
|
2737 |
+
"hex": "#FFFFFF"
|
2738 |
+
}
|
2739 |
+
],
|
2740 |
+
"fontStyles": [
|
2741 |
+
{
|
2742 |
+
"deletable": "off",
|
2743 |
+
"id": "paragraph",
|
2744 |
+
"title": "Paragraph",
|
2745 |
+
"fontFamily": "roboto",
|
2746 |
+
"fontFamilyType": "google",
|
2747 |
+
"fontSize": 16,
|
2748 |
+
"fontWeight": 400,
|
2749 |
+
"lineHeight": 1.8999999999999999,
|
2750 |
+
"letterSpacing": 0,
|
2751 |
+
"tabletFontSize": 15,
|
2752 |
+
"tabletFontWeight": 400,
|
2753 |
+
"tabletLineHeight": 1.6000000000000001,
|
2754 |
+
"tabletLetterSpacing": 0,
|
2755 |
+
"mobileFontSize": 15,
|
2756 |
+
"mobileFontWeight": 400,
|
2757 |
+
"mobileLineHeight": 1.6000000000000001,
|
2758 |
+
"mobileLetterSpacing": 0
|
2759 |
+
},
|
2760 |
+
{
|
2761 |
+
"deletable": "off",
|
2762 |
+
"id": "subtitle",
|
2763 |
+
"title": "Subtitle",
|
2764 |
+
"fontFamily": "roboto",
|
2765 |
+
"fontFamilyType": "google",
|
2766 |
+
"fontSize": 17,
|
2767 |
+
"fontWeight": 400,
|
2768 |
+
"lineHeight": 1.8,
|
2769 |
+
"letterSpacing": 0,
|
2770 |
+
"tabletFontSize": 17,
|
2771 |
+
"tabletFontWeight": 300,
|
2772 |
+
"tabletLineHeight": 1.5,
|
2773 |
+
"tabletLetterSpacing": 0,
|
2774 |
+
"mobileFontSize": 17,
|
2775 |
+
"mobileFontWeight": 300,
|
2776 |
+
"mobileLineHeight": 1.5,
|
2777 |
+
"mobileLetterSpacing": 0
|
2778 |
+
},
|
2779 |
+
{
|
2780 |
+
"deletable": "off",
|
2781 |
+
"id": "abovetitle",
|
2782 |
+
"title": "Above Title",
|
2783 |
+
"fontFamily": "roboto",
|
2784 |
+
"fontFamilyType": "google",
|
2785 |
+
"fontSize": 13,
|
2786 |
+
"fontWeight": 700,
|
2787 |
+
"lineHeight": 1.5,
|
2788 |
+
"letterSpacing": 1.1000000000000001,
|
2789 |
+
"tabletFontSize": 13,
|
2790 |
+
"tabletFontWeight": 600,
|
2791 |
+
"tabletLineHeight": 1.5,
|
2792 |
+
"tabletLetterSpacing": 1,
|
2793 |
+
"mobileFontSize": 13,
|
2794 |
+
"mobileFontWeight": 600,
|
2795 |
+
"mobileLineHeight": 1.5,
|
2796 |
+
"mobileLetterSpacing": 1
|
2797 |
+
},
|
2798 |
+
{
|
2799 |
+
"deletable": "off",
|
2800 |
+
"id": "heading1",
|
2801 |
+
"title": "Heading 1",
|
2802 |
+
"fontFamily": "oswald",
|
2803 |
+
"fontFamilyType": "google",
|
2804 |
+
"fontSize": 46,
|
2805 |
+
"fontWeight": 400,
|
2806 |
+
"lineHeight": 1.3,
|
2807 |
+
"letterSpacing": -1.5,
|
2808 |
+
"tabletFontSize": 40,
|
2809 |
+
"tabletFontWeight": 400,
|
2810 |
+
"tabletLineHeight": 1.3,
|
2811 |
+
"tabletLetterSpacing": -1,
|
2812 |
+
"mobileFontSize": 34,
|
2813 |
+
"mobileFontWeight": 400,
|
2814 |
+
"mobileLineHeight": 1.3,
|
2815 |
+
"mobileLetterSpacing": -1
|
2816 |
+
},
|
2817 |
+
{
|
2818 |
+
"deletable": "off",
|
2819 |
+
"id": "heading2",
|
2820 |
+
"title": "Heading 2",
|
2821 |
+
"fontFamily": "oswald",
|
2822 |
+
"fontFamilyType": "google",
|
2823 |
+
"fontSize": 36,
|
2824 |
+
"fontWeight": 400,
|
2825 |
+
"lineHeight": 1.3999999999999999,
|
2826 |
+
"letterSpacing": -1,
|
2827 |
+
"tabletFontSize": 35,
|
2828 |
+
"tabletFontWeight": 400,
|
2829 |
+
"tabletLineHeight": 1.3,
|
2830 |
+
"tabletLetterSpacing": -0.5,
|
2831 |
+
"mobileFontSize": 29,
|
2832 |
+
"mobileFontWeight": 400,
|
2833 |
+
"mobileLineHeight": 1.3,
|
2834 |
+
"mobileLetterSpacing": -0.5
|
2835 |
+
},
|
2836 |
+
{
|
2837 |
+
"deletable": "off",
|
2838 |
+
"id": "heading3",
|
2839 |
+
"title": "Heading 3",
|
2840 |
+
"fontFamily": "oswald",
|
2841 |
+
"fontFamilyType": "google",
|
2842 |
+
"fontSize": 28,
|
2843 |
+
"fontWeight": 400,
|
2844 |
+
"lineHeight": 1.3999999999999999,
|
2845 |
+
"letterSpacing": 0,
|
2846 |
+
"tabletFontSize": 27,
|
2847 |
+
"tabletFontWeight": 400,
|
2848 |
+
"tabletLineHeight": 1.3,
|
2849 |
+
"tabletLetterSpacing": 0,
|
2850 |
+
"mobileFontSize": 22,
|
2851 |
+
"mobileFontWeight": 400,
|
2852 |
+
"mobileLineHeight": 1.3,
|
2853 |
+
"mobileLetterSpacing": 0
|
2854 |
+
},
|
2855 |
+
{
|
2856 |
+
"deletable": "off",
|
2857 |
+
"id": "heading4",
|
2858 |
+
"title": "Heading 4",
|
2859 |
+
"fontFamily": "roboto",
|
2860 |
+
"fontFamilyType": "google",
|
2861 |
+
"fontSize": 22,
|
2862 |
+
"fontWeight": 400,
|
2863 |
+
"lineHeight": 1.5,
|
2864 |
+
"letterSpacing": 0,
|
2865 |
+
"tabletFontSize": 22,
|
2866 |
+
"tabletFontWeight": 400,
|
2867 |
+
"tabletLineHeight": 1.3999999999999999,
|
2868 |
+
"tabletLetterSpacing": 0,
|
2869 |
+
"mobileFontSize": 21,
|
2870 |
+
"mobileFontWeight": 400,
|
2871 |
+
"mobileLineHeight": 1.3999999999999999,
|
2872 |
+
"mobileLetterSpacing": 0
|
2873 |
+
},
|
2874 |
+
{
|
2875 |
+
"deletable": "off",
|
2876 |
+
"id": "heading5",
|
2877 |
+
"title": "Heading 5",
|
2878 |
+
"fontFamily": "roboto",
|
2879 |
+
"fontFamilyType": "google",
|
2880 |
+
"fontSize": 20,
|
2881 |
+
"fontWeight": 400,
|
2882 |
+
"lineHeight": 1.6000000000000001,
|
2883 |
+
"letterSpacing": 0,
|
2884 |
+
"tabletFontSize": 19,
|
2885 |
+
"tabletFontWeight": 400,
|
2886 |
+
"tabletLineHeight": 1.5,
|
2887 |
+
"tabletLetterSpacing": 0,
|
2888 |
+
"mobileFontSize": 18,
|
2889 |
+
"mobileFontWeight": 400,
|
2890 |
+
"mobileLineHeight": 1.5,
|
2891 |
+
"mobileLetterSpacing": 0
|
2892 |
+
},
|
2893 |
+
{
|
2894 |
+
"deletable": "off",
|
2895 |
+
"id": "heading6",
|
2896 |
+
"title": "Heading 6",
|
2897 |
+
"fontFamily": "roboto",
|
2898 |
+
"fontFamilyType": "google",
|
2899 |
+
"fontSize": 16,
|
2900 |
+
"fontWeight": 400,
|
2901 |
+
"lineHeight": 1.5,
|
2902 |
+
"letterSpacing": 0,
|
2903 |
+
"tabletFontSize": 16,
|
2904 |
+
"tabletFontWeight": 400,
|
2905 |
+
"tabletLineHeight": 1.5,
|
2906 |
+
"tabletLetterSpacing": 0,
|
2907 |
+
"mobileFontSize": 16,
|
2908 |
+
"mobileFontWeight": 400,
|
2909 |
+
"mobileLineHeight": 1.5,
|
2910 |
+
"mobileLetterSpacing": 0
|
2911 |
+
},
|
2912 |
+
{
|
2913 |
+
"deletable": "off",
|
2914 |
+
"id": "button",
|
2915 |
+
"title": "Button",
|
2916 |
+
"fontFamily": "roboto",
|
2917 |
+
"fontFamilyType": "google",
|
2918 |
+
"fontSize": 15,
|
2919 |
+
"fontWeight": 700,
|
2920 |
+
"lineHeight": 1.6000000000000001,
|
2921 |
+
"letterSpacing": 1,
|
2922 |
+
"tabletFontSize": 13,
|
2923 |
+
"tabletFontWeight": 600,
|
2924 |
+
"tabletLineHeight": 1.6000000000000001,
|
2925 |
+
"tabletLetterSpacing": 1,
|
2926 |
+
"mobileFontSize": 13,
|
2927 |
+
"mobileFontWeight": 600,
|
2928 |
+
"mobileLineHeight": 1.6000000000000001,
|
2929 |
+
"mobileLetterSpacing": 1
|
2930 |
+
}
|
2931 |
+
]
|
2932 |
+
},
|
2933 |
+
{
|
2934 |
+
"id": "xjgeewgibkkurlxnmtsozeucbcpwixyncglc",
|
2935 |
+
"title": "Exquisite",
|
2936 |
+
"colorPalette": [
|
2937 |
+
{
|
2938 |
+
"id": "color1",
|
2939 |
+
"hex": "#0D1B71"
|
2940 |
+
},
|
2941 |
+
{
|
2942 |
+
"id": "color2",
|
2943 |
+
"hex": "#1D1F3A"
|
2944 |
+
},
|
2945 |
+
{
|
2946 |
+
"id": "color3",
|
2947 |
+
"hex": "#C63160"
|
2948 |
+
},
|
2949 |
+
{
|
2950 |
+
"id": "color4",
|
2951 |
+
"hex": "#FCD1CE"
|
2952 |
+
},
|
2953 |
+
{
|
2954 |
+
"id": "color5",
|
2955 |
+
"hex": "#9DE1EC"
|
2956 |
+
},
|
2957 |
+
{
|
2958 |
+
"id": "color6",
|
2959 |
+
"hex": "#EFF1FA"
|
2960 |
+
},
|
2961 |
+
{
|
2962 |
+
"id": "color7",
|
2963 |
+
"hex": "#575864"
|
2964 |
+
},
|
2965 |
+
{
|
2966 |
+
"id": "color8",
|
2967 |
+
"hex": "#FFFFFF"
|
2968 |
+
}
|
2969 |
+
],
|
2970 |
+
"fontStyles": [
|
2971 |
+
{
|
2972 |
+
"deletable": "off",
|
2973 |
+
"id": "paragraph",
|
2974 |
+
"title": "Paragraph",
|
2975 |
+
"fontFamily": "oxygen",
|
2976 |
+
"fontFamilyType": "google",
|
2977 |
+
"fontSize": 16,
|
2978 |
+
"fontWeight": 400,
|
2979 |
+
"lineHeight": 1.8999999999999999,
|
2980 |
+
"letterSpacing": 0,
|
2981 |
+
"tabletFontSize": 15,
|
2982 |
+
"tabletFontWeight": 400,
|
2983 |
+
"tabletLineHeight": 1.6000000000000001,
|
2984 |
+
"tabletLetterSpacing": 0,
|
2985 |
+
"mobileFontSize": 15,
|
2986 |
+
"mobileFontWeight": 400,
|
2987 |
+
"mobileLineHeight": 1.6000000000000001,
|
2988 |
+
"mobileLetterSpacing": 0
|
2989 |
+
},
|
2990 |
+
{
|
2991 |
+
"deletable": "off",
|
2992 |
+
"id": "subtitle",
|
2993 |
+
"title": "Subtitle",
|
2994 |
+
"fontFamily": "oxygen",
|
2995 |
+
"fontFamilyType": "google",
|
2996 |
+
"fontSize": 17,
|
2997 |
+
"fontWeight": 400,
|
2998 |
+
"lineHeight": 1.8,
|
2999 |
+
"letterSpacing": 0,
|
3000 |
+
"tabletFontSize": 17,
|
3001 |
+
"tabletFontWeight": 300,
|
3002 |
+
"tabletLineHeight": 1.5,
|
3003 |
+
"tabletLetterSpacing": 0,
|
3004 |
+
"mobileFontSize": 17,
|
3005 |
+
"mobileFontWeight": 300,
|
3006 |
+
"mobileLineHeight": 1.5,
|
3007 |
+
"mobileLetterSpacing": 0
|
3008 |
+
},
|
3009 |
+
{
|
3010 |
+
"deletable": "off",
|
3011 |
+
"id": "abovetitle",
|
3012 |
+
"title": "Above Title",
|
3013 |
+
"fontFamily": "oxygen",
|
3014 |
+
"fontFamilyType": "google",
|
3015 |
+
"fontSize": 13,
|
3016 |
+
"fontWeight": 700,
|
3017 |
+
"lineHeight": 1.5,
|
3018 |
+
"letterSpacing": 1.1000000000000001,
|
3019 |
+
"tabletFontSize": 13,
|
3020 |
+
"tabletFontWeight": 600,
|
3021 |
+
"tabletLineHeight": 1.5,
|
3022 |
+
"tabletLetterSpacing": 1,
|
3023 |
+
"mobileFontSize": 13,
|
3024 |
+
"mobileFontWeight": 600,
|
3025 |
+
"mobileLineHeight": 1.5,
|
3026 |
+
"mobileLetterSpacing": 1
|
3027 |
+
},
|
3028 |
+
{
|
3029 |
+
"deletable": "off",
|
3030 |
+
"id": "heading1",
|
3031 |
+
"title": "Heading 1",
|
3032 |
+
"fontFamily": "playfair_display",
|
3033 |
+
"fontFamilyType": "google",
|
3034 |
+
"fontSize": 52,
|
3035 |
+
"fontWeight": 400,
|
3036 |
+
"lineHeight": 1.3,
|
3037 |
+
"letterSpacing": -1.5,
|
3038 |
+
"tabletFontSize": 46,
|
3039 |
+
"tabletFontWeight": 400,
|
3040 |
+
"tabletLineHeight": 1.3,
|
3041 |
+
"tabletLetterSpacing": -1,
|
3042 |
+
"mobileFontSize": 40,
|
3043 |
+
"mobileFontWeight": 400,
|
3044 |
+
"mobileLineHeight": 1.3,
|
3045 |
+
"mobileLetterSpacing": -1
|
3046 |
+
},
|
3047 |
+
{
|
3048 |
+
"deletable": "off",
|
3049 |
+
"id": "heading2",
|
3050 |
+
"title": "Heading 2",
|
3051 |
+
"fontFamily": "playfair_display",
|
3052 |
+
"fontFamilyType": "google",
|
3053 |
+
"fontSize": 42,
|
3054 |
+
"fontWeight": 400,
|
3055 |
+
"lineHeight": 1.3999999999999999,
|
3056 |
+
"letterSpacing": -1,
|
3057 |
+
"tabletFontSize": 35,
|
3058 |
+
"tabletFontWeight": 400,
|
3059 |
+
"tabletLineHeight": 1.3,
|
3060 |
+
"tabletLetterSpacing": -0.5,
|
3061 |
+
"mobileFontSize": 29,
|
3062 |
+
"mobileFontWeight": 400,
|
3063 |
+
"mobileLineHeight": 1.3,
|
3064 |
+
"mobileLetterSpacing": -0.5
|
3065 |
+
},
|
3066 |
+
{
|
3067 |
+
"deletable": "off",
|
3068 |
+
"id": "heading3",
|
3069 |
+
"title": "Heading 3",
|
3070 |
+
"fontFamily": "playfair_display",
|
3071 |
+
"fontFamilyType": "google",
|
3072 |
+
"fontSize": 29,
|
3073 |
+
"fontWeight": 400,
|
3074 |
+
"lineHeight": 1.3999999999999999,
|
3075 |
+
"letterSpacing": 0,
|
3076 |
+
"tabletFontSize": 26,
|
3077 |
+
"tabletFontWeight": 400,
|
3078 |
+
"tabletLineHeight": 1.3,
|
3079 |
+
"tabletLetterSpacing": 0,
|
3080 |
+
"mobileFontSize": 23,
|
3081 |
+
"mobileFontWeight": 400,
|
3082 |
+
"mobileLineHeight": 1.3,
|
3083 |
+
"mobileLetterSpacing": 0
|
3084 |
+
},
|
3085 |
+
{
|
3086 |
+
"deletable": "off",
|
3087 |
+
"id": "heading4",
|
3088 |
+
"title": "Heading 4",
|
3089 |
+
"fontFamily": "oxygen",
|
3090 |
+
"fontFamilyType": "google",
|
3091 |
+
"fontSize": 22,
|
3092 |
+
"fontWeight": 700,
|
3093 |
+
"lineHeight": 1.5,
|
3094 |
+
"letterSpacing": 0,
|
3095 |
+
"tabletFontSize": 22,
|
3096 |
+
"tabletFontWeight": 600,
|
3097 |
+
"tabletLineHeight": 1.3999999999999999,
|
3098 |
+
"tabletLetterSpacing": 0,
|
3099 |
+
"mobileFontSize": 21,
|
3100 |
+
"mobileFontWeight": 600,
|
3101 |
+
"mobileLineHeight": 1.3999999999999999,
|
3102 |
+
"mobileLetterSpacing": 0
|
3103 |
+
},
|
3104 |
+
{
|
3105 |
+
"deletable": "off",
|
3106 |
+
"id": "heading5",
|
3107 |
+
"title": "Heading 5",
|
3108 |
+
"fontFamily": "oxygen",
|
3109 |
+
"fontFamilyType": "google",
|
3110 |
+
"fontSize": 20,
|
3111 |
+
"fontWeight": 700,
|
3112 |
+
"lineHeight": 1.6000000000000001,
|
3113 |
+
"letterSpacing": 0,
|
3114 |
+
"tabletFontSize": 19,
|
3115 |
+
"tabletFontWeight": 600,
|
3116 |
+
"tabletLineHeight": 1.5,
|
3117 |
+
"tabletLetterSpacing": 0,
|
3118 |
+
"mobileFontSize": 18,
|
3119 |
+
"mobileFontWeight": 600,
|
3120 |
+
"mobileLineHeight": 1.5,
|
3121 |
+
"mobileLetterSpacing": 0
|
3122 |
+
},
|
3123 |
+
{
|
3124 |
+
"deletable": "off",
|
3125 |
+
"id": "heading6",
|
3126 |
+
"title": "Heading 6",
|
3127 |
+
"fontFamily": "oxygen",
|
3128 |
+
"fontFamilyType": "google",
|
3129 |
+
"fontSize": 16,
|
3130 |
+
"fontWeight": 400,
|
3131 |
+
"lineHeight": 1.5,
|
3132 |
+
"letterSpacing": 0,
|
3133 |
+
"tabletFontSize": 16,
|
3134 |
+
"tabletFontWeight": 400,
|
3135 |
+
"tabletLineHeight": 1.5,
|
3136 |
+
"tabletLetterSpacing": 0,
|
3137 |
+
"mobileFontSize": 16,
|
3138 |
+
"mobileFontWeight": 400,
|
3139 |
+
"mobileLineHeight": 1.5,
|
3140 |
+
"mobileLetterSpacing": 0
|
3141 |
+
},
|
3142 |
+
{
|
3143 |
+
"deletable": "off",
|
3144 |
+
"id": "button",
|
3145 |
+
"title": "Button",
|
3146 |
+
"fontFamily": "oxygen",
|
3147 |
+
"fontFamilyType": "google",
|
3148 |
+
"fontSize": 15,
|
3149 |
+
"fontWeight": 700,
|
3150 |
+
"lineHeight": 1.6000000000000001,
|
3151 |
+
"letterSpacing": 1,
|
3152 |
+
"tabletFontSize": 13,
|
3153 |
+
"tabletFontWeight": 600,
|
3154 |
+
"tabletLineHeight": 1.6000000000000001,
|
3155 |
+
"tabletLetterSpacing": 0,
|
3156 |
+
"mobileFontSize": 13,
|
3157 |
+
"mobileFontWeight": 600,
|
3158 |
+
"mobileLineHeight": 1.6000000000000001,
|
3159 |
+
"mobileLetterSpacing": 0
|
3160 |
+
}
|
3161 |
+
]
|
3162 |
+
},
|
3163 |
+
{
|
3164 |
+
"id": "vysgrrxdqidobgfkzbvkkeaskxzmqpmadwrw",
|
3165 |
+
"title": "Chubby",
|
3166 |
+
"colorPalette": [
|
3167 |
+
{
|
3168 |
+
"id": "color1",
|
3169 |
+
"hex": "#42497D"
|
3170 |
+
},
|
3171 |
+
{
|
3172 |
+
"id": "color2",
|
3173 |
+
"hex": "#181A34"
|
3174 |
+
},
|
3175 |
+
{
|
3176 |
+
"id": "color3",
|
3177 |
+
"hex": "#4853BB"
|
3178 |
+
},
|
3179 |
+
{
|
3180 |
+
"id": "color4",
|
3181 |
+
"hex": "#98D8F3"
|
3182 |
+
},
|
3183 |
+
{
|
3184 |
+
"id": "color5",
|
3185 |
+
"hex": "#D2D6FD"
|
3186 |
+
},
|
3187 |
+
{
|
3188 |
+
"id": "color6",
|
3189 |
+
"hex": "#EDF4F5"
|
3190 |
+
},
|
3191 |
+
{
|
3192 |
+
"id": "color7",
|
3193 |
+
"hex": "#80818D"
|
3194 |
+
},
|
3195 |
+
{
|
3196 |
+
"id": "color8",
|
3197 |
+
"hex": "#FFFFFF"
|
3198 |
+
}
|
3199 |
+
],
|
3200 |
+
"fontStyles": [
|
3201 |
+
{
|
3202 |
+
"deletable": "off",
|
3203 |
+
"id": "paragraph",
|
3204 |
+
"title": "Paragraph",
|
3205 |
+
"fontFamily": "fira_sans",
|
3206 |
+
"fontFamilyType": "google",
|
3207 |
+
"fontSize": 16,
|
3208 |
+
"fontWeight": 400,
|
3209 |
+
"lineHeight": 1.8999999999999999,
|
3210 |
+
"letterSpacing": 0,
|
3211 |
+
"tabletFontSize": 15,
|
3212 |
+
"tabletFontWeight": 400,
|
3213 |
+
"tabletLineHeight": 1.6000000000000001,
|
3214 |
+
"tabletLetterSpacing": 0,
|
3215 |
+
"mobileFontSize": 15,
|
3216 |
+
"mobileFontWeight": 400,
|
3217 |
+
"mobileLineHeight": 1.6000000000000001,
|
3218 |
+
"mobileLetterSpacing": 0
|
3219 |
+
},
|
3220 |
+
{
|
3221 |
+
"deletable": "off",
|
3222 |
+
"id": "subtitle",
|
3223 |
+
"title": "Subtitle",
|
3224 |
+
"fontFamily": "fira_sans",
|
3225 |
+
"fontFamilyType": "google",
|
3226 |
+
"fontSize": 17,
|
3227 |
+
"fontWeight": 400,
|
3228 |
+
"lineHeight": 1.8,
|
3229 |
+
"letterSpacing": 0,
|
3230 |
+
"tabletFontSize": 17,
|
3231 |
+
"tabletFontWeight": 300,
|
3232 |
+
"tabletLineHeight": 1.5,
|
3233 |
+
"tabletLetterSpacing": 0,
|
3234 |
+
"mobileFontSize": 17,
|
3235 |
+
"mobileFontWeight": 300,
|
3236 |
+
"mobileLineHeight": 1.5,
|
3237 |
+
"mobileLetterSpacing": 0
|
3238 |
+
},
|
3239 |
+
{
|
3240 |
+
"deletable": "off",
|
3241 |
+
"id": "abovetitle",
|
3242 |
+
"title": "Above Title",
|
3243 |
+
"fontFamily": "fira_sans",
|
3244 |
+
"fontFamilyType": "google",
|
3245 |
+
"fontSize": 13,
|
3246 |
+
"fontWeight": 700,
|
3247 |
+
"lineHeight": 1.5,
|
3248 |
+
"letterSpacing": 1.1000000000000001,
|
3249 |
+
"tabletFontSize": 13,
|
3250 |
+
"tabletFontWeight": 600,
|
3251 |
+
"tabletLineHeight": 1.5,
|
3252 |
+
"tabletLetterSpacing": 1,
|
3253 |
+
"mobileFontSize": 13,
|
3254 |
+
"mobileFontWeight": 600,
|
3255 |
+
"mobileLineHeight": 1.5,
|
3256 |
+
"mobileLetterSpacing": 1
|
3257 |
+
},
|
3258 |
+
{
|
3259 |
+
"deletable": "off",
|
3260 |
+
"id": "heading1",
|
3261 |
+
"title": "Heading 1",
|
3262 |
+
"fontFamily": "abril_fatface",
|
3263 |
+
"fontFamilyType": "google",
|
3264 |
+
"fontSize": 52,
|
3265 |
+
"fontWeight": 400,
|
3266 |
+
"lineHeight": 1.3,
|
3267 |
+
"letterSpacing": -1.5,
|
3268 |
+
"tabletFontSize": 46,
|
3269 |
+
"tabletFontWeight": 400,
|
3270 |
+
"tabletLineHeight": 1.3,
|
3271 |
+
"tabletLetterSpacing": -1,
|
3272 |
+
"mobileFontSize": 40,
|
3273 |
+
"mobileFontWeight": 400,
|
3274 |
+
"mobileLineHeight": 1.3,
|
3275 |
+
"mobileLetterSpacing": -1
|
3276 |
+
},
|
3277 |
+
{
|
3278 |
+
"deletable": "off",
|
3279 |
+
"id": "heading2",
|
3280 |
+
"title": "Heading 2",
|
3281 |
+
"fontFamily": "abril_fatface",
|
3282 |
+
"fontFamilyType": "google",
|
3283 |
+
"fontSize": 42,
|
3284 |
+
"fontWeight": 400,
|
3285 |
+
"lineHeight": 1.3999999999999999,
|
3286 |
+
"letterSpacing": -1,
|
3287 |
+
"tabletFontSize": 35,
|
3288 |
+
"tabletFontWeight": 400,
|
3289 |
+
"tabletLineHeight": 1.3,
|
3290 |
+
"tabletLetterSpacing": -0.5,
|
3291 |
+
"mobileFontSize": 29,
|
3292 |
+
"mobileFontWeight": 400,
|
3293 |
+
"mobileLineHeight": 1.3,
|
3294 |
+
"mobileLetterSpacing": -0.5
|
3295 |
+
},
|
3296 |
+
{
|
3297 |
+
"deletable": "off",
|
3298 |
+
"id": "heading3",
|
3299 |
+
"title": "Heading 3",
|
3300 |
+
"fontFamily": "abril_fatface",
|
3301 |
+
"fontFamilyType": "google",
|
3302 |
+
"fontSize": 32,
|
3303 |
+
"fontWeight": 400,
|
3304 |
+
"lineHeight": 1.3999999999999999,
|
3305 |
+
"letterSpacing": 0,
|
3306 |
+
"tabletFontSize": 27,
|
3307 |
+
"tabletFontWeight": 400,
|
3308 |
+
"tabletLineHeight": 1.3,
|
3309 |
+
"tabletLetterSpacing": 0,
|
3310 |
+
"mobileFontSize": 22,
|
3311 |
+
"mobileFontWeight": 400,
|
3312 |
+
"mobileLineHeight": 1.3,
|
3313 |
+
"mobileLetterSpacing": 0
|
3314 |
+
},
|
3315 |
+
{
|
3316 |
+
"deletable": "off",
|
3317 |
+
"id": "heading4",
|
3318 |
+
"title": "Heading 4",
|
3319 |
+
"fontFamily": "fira_sans",
|
3320 |
+
"fontFamilyType": "google",
|
3321 |
+
"fontSize": 22,
|
3322 |
+
"fontWeight": 700,
|
3323 |
+
"lineHeight": 1.5,
|
3324 |
+
"letterSpacing": 0,
|
3325 |
+
"tabletFontSize": 22,
|
3326 |
+
"tabletFontWeight": 400,
|
3327 |
+
"tabletLineHeight": 1.3999999999999999,
|
3328 |
+
"tabletLetterSpacing": 0,
|
3329 |
+
"mobileFontSize": 21,
|
3330 |
+
"mobileFontWeight": 400,
|
3331 |
+
"mobileLineHeight": 1.3999999999999999,
|
3332 |
+
"mobileLetterSpacing": 0
|
3333 |
+
},
|
3334 |
+
{
|
3335 |
+
"deletable": "off",
|
3336 |
+
"id": "heading5",
|
3337 |
+
"title": "Heading 5",
|
3338 |
+
"fontFamily": "fira_sans",
|
3339 |
+
"fontFamilyType": "google",
|
3340 |
+
"fontSize": 20,
|
3341 |
+
"fontWeight": 700,
|
3342 |
+
"lineHeight": 1.6000000000000001,
|
3343 |
+
"letterSpacing": 0,
|
3344 |
+
"tabletFontSize": 19,
|
3345 |
+
"tabletFontWeight": 600,
|
3346 |
+
"tabletLineHeight": 1.5,
|
3347 |
+
"tabletLetterSpacing": 0,
|
3348 |
+
"mobileFontSize": 18,
|
3349 |
+
"mobileFontWeight": 600,
|
3350 |
+
"mobileLineHeight": 1.5,
|
3351 |
+
"mobileLetterSpacing": 0
|
3352 |
+
},
|
3353 |
+
{
|
3354 |
+
"deletable": "off",
|
3355 |
+
"id": "heading6",
|
3356 |
+
"title": "Heading 6",
|
3357 |
+
"fontFamily": "fira_sans",
|
3358 |
+
"fontFamilyType": "google",
|
3359 |
+
"fontSize": 16,
|
3360 |
+
"fontWeight": 400,
|
3361 |
+
"lineHeight": 1.5,
|
3362 |
+
"letterSpacing": 0,
|
3363 |
+
"tabletFontSize": 16,
|
3364 |
+
"tabletFontWeight": 400,
|
3365 |
+
"tabletLineHeight": 1.5,
|
3366 |
+
"tabletLetterSpacing": 0,
|
3367 |
+
"mobileFontSize": 16,
|
3368 |
+
"mobileFontWeight": 400,
|
3369 |
+
"mobileLineHeight": 1.5,
|
3370 |
+
"mobileLetterSpacing": 0
|
3371 |
+
},
|
3372 |
+
{
|
3373 |
+
"deletable": "off",
|
3374 |
+
"id": "button",
|
3375 |
+
"title": "Button",
|
3376 |
+
"fontFamily": "fira_sans",
|
3377 |
+
"fontFamilyType": "google",
|
3378 |
+
"fontSize": 15,
|
3379 |
+
"fontWeight": 700,
|
3380 |
+
"lineHeight": 1.6000000000000001,
|
3381 |
+
"letterSpacing": 1,
|
3382 |
+
"tabletFontSize": 13,
|
3383 |
+
"tabletFontWeight": 600,
|
3384 |
+
"tabletLineHeight": 1.6000000000000001,
|
3385 |
+
"tabletLetterSpacing": 1,
|
3386 |
+
"mobileFontSize": 13,
|
3387 |
+
"mobileFontWeight": 600,
|
3388 |
+
"mobileLineHeight": 1.6000000000000001,
|
3389 |
+
"mobileLetterSpacing": 1
|
3390 |
+
}
|
3391 |
+
]
|
3392 |
+
},
|
3393 |
+
{
|
3394 |
+
"id": "htbprlrkzfekfscuwidkwmdomcfrnvgoakws",
|
3395 |
+
"title": "Samurai",
|
3396 |
+
"colorPalette": [
|
3397 |
+
{
|
3398 |
+
"id": "color1",
|
3399 |
+
"hex": "#C19F80"
|
3400 |
+
},
|
3401 |
+
{
|
3402 |
+
"id": "color2",
|
3403 |
+
"hex": "#0C2117"
|
3404 |
+
},
|
3405 |
+
{
|
3406 |
+
"id": "color3",
|
3407 |
+
"hex": "#E46931"
|
3408 |
+
},
|
3409 |
+
{
|
3410 |
+
"id": "color4",
|
3411 |
+
"hex": "#E3FCBF"
|
3412 |
+
},
|
3413 |
+
{
|
3414 |
+
"id": "color5",
|
3415 |
+
"hex": "#CEC238"
|
3416 |
+
},
|
3417 |
+
{
|
3418 |
+
"id": "color6",
|
3419 |
+
"hex": "#F5EFDF"
|
3420 |
+
},
|
3421 |
+
{
|
3422 |
+
"id": "color7",
|
3423 |
+
"hex": "#5C615E"
|
3424 |
+
},
|
3425 |
+
{
|
3426 |
+
"id": "color8",
|
3427 |
+
"hex": "#FFFFFF"
|
3428 |
+
}
|
3429 |
+
],
|
3430 |
+
"fontStyles": [
|
3431 |
+
{
|
3432 |
+
"deletable": "off",
|
3433 |
+
"id": "paragraph",
|
3434 |
+
"title": "Paragraph",
|
3435 |
+
"fontFamily": "comfortaa",
|
3436 |
+
"fontFamilyType": "google",
|
3437 |
+
"fontSize": 16,
|
3438 |
+
"fontWeight": 400,
|
3439 |
+
"lineHeight": 1.8999999999999999,
|
3440 |
+
"letterSpacing": 0,
|
3441 |
+
"tabletFontSize": 15,
|
3442 |
+
"tabletFontWeight": 400,
|
3443 |
+
"tabletLineHeight": 1.6000000000000001,
|
3444 |
+
"tabletLetterSpacing": 0,
|
3445 |
+
"mobileFontSize": 15,
|
3446 |
+
"mobileFontWeight": 400,
|
3447 |
+
"mobileLineHeight": 1.6000000000000001,
|
3448 |
+
"mobileLetterSpacing": 0
|
3449 |
+
},
|
3450 |
+
{
|
3451 |
+
"deletable": "off",
|
3452 |
+
"id": "subtitle",
|
3453 |
+
"title": "Subtitle",
|
3454 |
+
"fontFamily": "comfortaa",
|
3455 |
+
"fontFamilyType": "google",
|
3456 |
+
"fontSize": 17,
|
3457 |
+
"fontWeight": 400,
|
3458 |
+
"lineHeight": 1.8,
|
3459 |
+
"letterSpacing": 0,
|
3460 |
+
"tabletFontSize": 17,
|
3461 |
+
"tabletFontWeight": 300,
|
3462 |
+
"tabletLineHeight": 1.5,
|
3463 |
+
"tabletLetterSpacing": 0,
|
3464 |
+
"mobileFontSize": 17,
|
3465 |
+
"mobileFontWeight": 300,
|
3466 |
+
"mobileLineHeight": 1.5,
|
3467 |
+
"mobileLetterSpacing": 0
|
3468 |
+
},
|
3469 |
+
{
|
3470 |
+
"deletable": "off",
|
3471 |
+
"id": "abovetitle",
|
3472 |
+
"title": "Above Title",
|
3473 |
+
"fontFamily": "comfortaa",
|
3474 |
+
"fontFamilyType": "google",
|
3475 |
+
"fontSize": 13,
|
3476 |
+
"fontWeight": 700,
|
3477 |
+
"lineHeight": 1.5,
|
3478 |
+
"letterSpacing": 1.1000000000000001,
|
3479 |
+
"tabletFontSize": 13,
|
3480 |
+
"tabletFontWeight": 600,
|
3481 |
+
"tabletLineHeight": 1.5,
|
3482 |
+
"tabletLetterSpacing": 1,
|
3483 |
+
"mobileFontSize": 13,
|
3484 |
+
"mobileFontWeight": 600,
|
3485 |
+
"mobileLineHeight": 1.5,
|
3486 |
+
"mobileLetterSpacing": 1
|
3487 |
+
},
|
3488 |
+
{
|
3489 |
+
"deletable": "off",
|
3490 |
+
"id": "heading1",
|
3491 |
+
"title": "Heading 1",
|
3492 |
+
"fontFamily": "kaushan_script",
|
3493 |
+
"fontFamilyType": "google",
|
3494 |
+
"fontSize": 52,
|
3495 |
+
"fontWeight": 400,
|
3496 |
+
"lineHeight": 1.3,
|
3497 |
+
"letterSpacing": -1.5,
|
3498 |
+
"tabletFontSize": 46,
|
3499 |
+
"tabletFontWeight": 400,
|
3500 |
+
"tabletLineHeight": 1.3,
|
3501 |
+
"tabletLetterSpacing": -1,
|
3502 |
+
"mobileFontSize": 40,
|
3503 |
+
"mobileFontWeight": 400,
|
3504 |
+
"mobileLineHeight": 1.3,
|
3505 |
+
"mobileLetterSpacing": -1
|
3506 |
+
},
|
3507 |
+
{
|
3508 |
+
"deletable": "off",
|
3509 |
+
"id": "heading2",
|
3510 |
+
"title": "Heading 2",
|
3511 |
+
"fontFamily": "kaushan_script",
|
3512 |
+
"fontFamilyType": "google",
|
3513 |
+
"fontSize": 42,
|
3514 |
+
"fontWeight": 400,
|
3515 |
+
"lineHeight": 1.3999999999999999,
|
3516 |
+
"letterSpacing": -1,
|
3517 |
+
"tabletFontSize": 35,
|
3518 |
+
"tabletFontWeight": 400,
|
3519 |
+
"tabletLineHeight": 1.3,
|
3520 |
+
"tabletLetterSpacing": -0.5,
|
3521 |
+
"mobileFontSize": 29,
|
3522 |
+
"mobileFontWeight": 400,
|
3523 |
+
"mobileLineHeight": 1.3,
|
3524 |
+
"mobileLetterSpacing": -0.5
|
3525 |
+
},
|
3526 |
+
{
|
3527 |
+
"deletable": "off",
|
3528 |
+
"id": "heading3",
|
3529 |
+
"title": "Heading 3",
|
3530 |
+
"fontFamily": "kaushan_script",
|
3531 |
+
"fontFamilyType": "google",
|
3532 |
+
"fontSize": 32,
|
3533 |
+
"fontWeight": 400,
|
3534 |
+
"lineHeight": 1.3999999999999999,
|
3535 |
+
"letterSpacing": 0,
|
3536 |
+
"tabletFontSize": 27,
|
3537 |
+
"tabletFontWeight": 400,
|
3538 |
+
"tabletLineHeight": 1.3,
|
3539 |
+
"tabletLetterSpacing": 0,
|
3540 |
+
"mobileFontSize": 22,
|
3541 |
+
"mobileFontWeight": 400,
|
3542 |
+
"mobileLineHeight": 1.3,
|
3543 |
+
"mobileLetterSpacing": 0
|
3544 |
+
},
|
3545 |
+
{
|
3546 |
+
"deletable": "off",
|
3547 |
+
"id": "heading4",
|
3548 |
+
"title": "Heading 4",
|
3549 |
+
"fontFamily": "comfortaa",
|
3550 |
+
"fontFamilyType": "google",
|
3551 |
+
"fontSize": 22,
|
3552 |
+
"fontWeight": 700,
|
3553 |
+
"lineHeight": 1.5,
|
3554 |
+
"letterSpacing": 0,
|
3555 |
+
"tabletFontSize": 22,
|
3556 |
+
"tabletFontWeight": 400,
|
3557 |
+
"tabletLineHeight": 1.3999999999999999,
|
3558 |
+
"tabletLetterSpacing": 0,
|
3559 |
+
"mobileFontSize": 21,
|
3560 |
+
"mobileFontWeight": 400,
|
3561 |
+
"mobileLineHeight": 1.3999999999999999,
|
3562 |
+
"mobileLetterSpacing": 0
|
3563 |
+
},
|
3564 |
+
{
|
3565 |
+
"deletable": "off",
|
3566 |
+
"id": "heading5",
|
3567 |
+
"title": "Heading 5",
|
3568 |
+
"fontFamily": "comfortaa",
|
3569 |
+
"fontFamilyType": "google",
|
3570 |
+
"fontSize": 20,
|
3571 |
+
"fontWeight": 700,
|
3572 |
+
"lineHeight": 1.6000000000000001,
|
3573 |
+
"letterSpacing": 0,
|
3574 |
+
"tabletFontSize": 19,
|
3575 |
+
"tabletFontWeight": 600,
|
3576 |
+
"tabletLineHeight": 1.5,
|
3577 |
+
"tabletLetterSpacing": 0,
|
3578 |
+
"mobileFontSize": 18,
|
3579 |
+
"mobileFontWeight": 600,
|
3580 |
+
"mobileLineHeight": 1.5,
|
3581 |
+
"mobileLetterSpacing": 0
|
3582 |
+
},
|
3583 |
+
{
|
3584 |
+
"deletable": "off",
|
3585 |
+
"id": "heading6",
|
3586 |
+
"title": "Heading 6",
|
3587 |
+
"fontFamily": "comfortaa",
|
3588 |
+
"fontFamilyType": "google",
|
3589 |
+
"fontSize": 16,
|
3590 |
+
"fontWeight": 700,
|
3591 |
+
"lineHeight": 1.5,
|
3592 |
+
"letterSpacing": 0,
|
3593 |
+
"tabletFontSize": 16,
|
3594 |
+
"tabletFontWeight": 700,
|
3595 |
+
"tabletLineHeight": 1.5,
|
3596 |
+
"tabletLetterSpacing": 0,
|
3597 |
+
"mobileFontSize": 16,
|
3598 |
+
"mobileFontWeight": 700,
|
3599 |
+
"mobileLineHeight": 1.5,
|
3600 |
+
"mobileLetterSpacing": 0
|
3601 |
+
},
|
3602 |
+
{
|
3603 |
+
"deletable": "off",
|
3604 |
+
"id": "button",
|
3605 |
+
"title": "Button",
|
3606 |
+
"fontFamily": "comfortaa",
|
3607 |
+
"fontFamilyType": "google",
|
3608 |
+
"fontSize": 15,
|
3609 |
+
"fontWeight": 700,
|
3610 |
+
"lineHeight": 1.6000000000000001,
|
3611 |
+
"letterSpacing": 1,
|
3612 |
+
"tabletFontSize": 13,
|
3613 |
+
"tabletFontWeight": 600,
|
3614 |
+
"tabletLineHeight": 1.6000000000000001,
|
3615 |
+
"tabletLetterSpacing": 1,
|
3616 |
+
"mobileFontSize": 13,
|
3617 |
+
"mobileFontWeight": 600,
|
3618 |
+
"mobileLineHeight": 1.6000000000000001,
|
3619 |
+
"mobileLetterSpacing": 1
|
3620 |
+
}
|
3621 |
+
]
|
3622 |
+
}
|
3623 |
+
],
|
3624 |
+
"extraFontStyles": [],
|
3625 |
+
"font": "lato",
|
3626 |
+
"fonts": {
|
3627 |
+
"config": {
|
3628 |
+
"data": [
|
3629 |
+
{
|
3630 |
+
"kind": "webfonts#webfont",
|
3631 |
+
"family": "Lato",
|
3632 |
+
"category": "sans-serif",
|
3633 |
+
"variants": [
|
3634 |
+
"100",
|
3635 |
+
"100italic",
|
3636 |
+
"300",
|
3637 |
+
"300italic",
|
3638 |
+
"regular",
|
3639 |
+
"italic",
|
3640 |
+
"700",
|
3641 |
+
"700italic",
|
3642 |
+
"900",
|
3643 |
+
"900italic"
|
3644 |
+
],
|
3645 |
+
"subsets": ["latin-ext", "latin"],
|
3646 |
+
"version": "v15",
|
3647 |
+
"lastModified": "2019-03-26",
|
3648 |
+
"files": {
|
3649 |
+
"100": "http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf",
|
3650 |
+
"300": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf",
|
3651 |
+
"700": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf",
|
3652 |
+
"900": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf",
|
3653 |
+
"100italic": "http://fonts.gstatic.com/s/lato/v15/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf",
|
3654 |
+
"300italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf",
|
3655 |
+
"regular": "http://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHvxk6XweuBCY.ttf",
|
3656 |
+
"italic": "http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf",
|
3657 |
+
"700italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf",
|
3658 |
+
"900italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"
|
3659 |
+
},
|
3660 |
+
"brizyId": "uzrpsocdxtgrkbxjjxkchqcybpvpzsuvdlji"
|
3661 |
+
},
|
3662 |
+
{
|
3663 |
+
"kind": "webfonts#webfont",
|
3664 |
+
"family": "Overpass",
|
3665 |
+
"category": "sans-serif",
|
3666 |
+
"variants": [
|
3667 |
+
"100",
|
3668 |
+
"100italic",
|
3669 |
+
"200",
|
3670 |
+
"200italic",
|
3671 |
+
"300",
|
3672 |
+
"300italic",
|
3673 |
+
"regular",
|
3674 |
+
"italic",
|
3675 |
+
"600",
|
3676 |
+
"600italic",
|
3677 |
+
"700",
|
3678 |
+
"700italic",
|
3679 |
+
"800",
|
3680 |
+
"800italic",
|
3681 |
+
"900",
|
3682 |
+
"900italic"
|
3683 |
+
],
|
3684 |
+
"subsets": ["latin", "latin-ext"],
|
3685 |
+
"version": "v4",
|
3686 |
+
"lastModified": "2019-07-17",
|
3687 |
+
"files": {
|
3688 |
+
"100": "http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf",
|
3689 |
+
"200": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf",
|
3690 |
+
"300": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf",
|
3691 |
+
"600": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf",
|
3692 |
+
"700": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf",
|
3693 |
+
"800": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf",
|
3694 |
+
"900": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf",
|
3695 |
+
"100italic": "http://fonts.gstatic.com/s/overpass/v4/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf",
|
3696 |
+
"200italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf",
|
3697 |
+
"300italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf",
|
3698 |
+
"regular": "http://fonts.gstatic.com/s/overpass/v4/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf",
|
3699 |
+
"italic": "http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf",
|
3700 |
+
"600italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf",
|
3701 |
+
"700italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf",
|
3702 |
+
"800italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf",
|
3703 |
+
"900italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"
|
3704 |
+
},
|
3705 |
+
"brizyId": "qwhwsomltrpyogspgbomkxquvqsqfdlvcnfo"
|
3706 |
+
},
|
3707 |
+
{
|
3708 |
+
"kind": "webfonts#webfont",
|
3709 |
+
"family": "Red Hat Text",
|
3710 |
+
"category": "sans-serif",
|
3711 |
+
"variants": [
|
3712 |
+
"regular",
|
3713 |
+
"italic",
|
3714 |
+
"500",
|
3715 |
+
"500italic",
|
3716 |
+
"700",
|
3717 |
+
"700italic"
|
3718 |
+
],
|
3719 |
+
"subsets": ["latin", "latin-ext"],
|
3720 |
+
"version": "v1",
|
3721 |
+
"lastModified": "2019-07-26",
|
3722 |
+
"files": {
|
3723 |
+
"500": "http://fonts.gstatic.com/s/redhattext/v1/RrQIbohi_ic6B3yVSzGBrMxYm4QIG-eFNVmULg.ttf",
|
3724 |
+
"700": "http://fonts.gstatic.com/s/redhattext/v1/RrQIbohi_ic6B3yVSzGBrMxY04IIG-eFNVmULg.ttf",
|
3725 |
+
"regular": "http://fonts.gstatic.com/s/redhattext/v1/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf",
|
3726 |
+
"italic": "http://fonts.gstatic.com/s/redhattext/v1/RrQJbohi_ic6B3yVSzGBrMxQbacoMcmJPECN.ttf",
|
3727 |
+
"500italic": "http://fonts.gstatic.com/s/redhattext/v1/RrQKbohi_ic6B3yVSzGBrMxQbZ_cGO2BF1yELmgy.ttf",
|
3728 |
+
"700italic": "http://fonts.gstatic.com/s/redhattext/v1/RrQKbohi_ic6B3yVSzGBrMxQbZ-UHu2BF1yELmgy.ttf"
|
3729 |
+
},
|
3730 |
+
"brizyId": "eytgthrgfzlrrzxlhynabspndabldgdbdjnm"
|
3731 |
+
},
|
3732 |
+
{
|
3733 |
+
"kind": "webfonts#webfont",
|
3734 |
+
"family": "DM Serif Text",
|
3735 |
+
"category": "serif",
|
3736 |
+
"variants": ["regular", "italic"],
|
3737 |
+
"subsets": ["latin", "latin-ext"],
|
3738 |
+
"version": "v3",
|
3739 |
+
"lastModified": "2019-07-16",
|
3740 |
+
"files": {
|
3741 |
+
"regular": "http://fonts.gstatic.com/s/dmseriftext/v3/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf",
|
3742 |
+
"italic": "http://fonts.gstatic.com/s/dmseriftext/v3/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf"
|
3743 |
+
},
|
3744 |
+
"brizyId": "pujmflqmocbjojknwlnidilgqedjzqftpnrv"
|
3745 |
+
},
|
3746 |
+
{
|
3747 |
+
"kind": "webfonts#webfont",
|
3748 |
+
"family": "Blinker",
|
3749 |
+
"category": "sans-serif",
|
3750 |
+
"variants": [
|
3751 |
+
"100",
|
3752 |
+
"200",
|
3753 |
+
"300",
|
3754 |
+
"regular",
|
3755 |
+
"600",
|
3756 |
+
"700",
|
3757 |
+
"800",
|
3758 |
+
"900"
|
3759 |
+
],
|
3760 |
+
"subsets": ["latin", "latin-ext"],
|
3761 |
+
"version": "v1",
|
3762 |
+
"lastModified": "2019-07-26",
|
3763 |
+
"files": {
|
3764 |
+
"100": "http://fonts.gstatic.com/s/blinker/v1/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf",
|
3765 |
+
"200": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf",
|
3766 |
+
"300": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf",
|
3767 |
+
"600": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf",
|
3768 |
+
"700": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf",
|
3769 |
+
"800": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf",
|
3770 |
+
"900": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf",
|
3771 |
+
"regular": "http://fonts.gstatic.com/s/blinker/v1/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf"
|
3772 |
+
},
|
3773 |
+
"brizyId": "yhkoopjikembswaygkzktfmiiashwjcrvbxr"
|
3774 |
+
},
|
3775 |
+
{
|
3776 |
+
"kind": "webfonts#webfont",
|
3777 |
+
"family": "Aleo",
|
3778 |
+
"category": "serif",
|
3779 |
+
"variants": [
|
3780 |
+
"300",
|
3781 |
+
"300italic",
|
3782 |
+
"regular",
|
3783 |
+
"italic",
|
3784 |
+
"700",
|
3785 |
+
"700italic"
|
3786 |
+
],
|
3787 |
+
"subsets": ["latin", "latin-ext"],
|
3788 |
+
"version": "v3",
|
3789 |
+
"lastModified": "2019-07-16",
|
3790 |
+
"files": {
|
3791 |
+
"300": "http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syKbr9DVDno985KM.ttf",
|
3792 |
+
"700": "http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syLbs9DVDno985KM.ttf",
|
3793 |
+
"300italic": "http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf",
|
3794 |
+
"regular": "http://fonts.gstatic.com/s/aleo/v3/c4mv1nF8G8_s8ArD0D1ogoY.ttf",
|
3795 |
+
"italic": "http://fonts.gstatic.com/s/aleo/v3/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf",
|
3796 |
+
"700italic": "http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"
|
3797 |
+
},
|
3798 |
+
"brizyId": "ucgecsrbcjkpsfctgzwsocokuydcdgiubroh"
|
3799 |
+
},
|
3800 |
+
{
|
3801 |
+
"kind": "webfonts#webfont",
|
3802 |
+
"family": "Nunito",
|
3803 |
+
"category": "sans-serif",
|
3804 |
+
"variants": [
|
3805 |
+
"200",
|
3806 |
+
"200italic",
|
3807 |
+
"300",
|
3808 |
+
"300italic",
|
3809 |
+
"regular",
|
3810 |
+
"italic",
|
3811 |
+
"600",
|
3812 |
+
"600italic",
|
3813 |
+
"700",
|
3814 |
+
"700italic",
|
3815 |
+
"800",
|
3816 |
+
"800italic",
|
3817 |
+
"900",
|
3818 |
+
"900italic"
|
3819 |
+
],
|
3820 |
+
"subsets": ["latin", "vietnamese", "latin-ext"],
|
3821 |
+
"version": "v11",
|
3822 |
+
"lastModified": "2019-07-22",
|
3823 |
+
"files": {
|
3824 |
+
"200": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf",
|
3825 |
+
"300": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf",
|
3826 |
+
"600": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf",
|
3827 |
+
"700": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf",
|
3828 |
+
"800": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf",
|
3829 |
+
"900": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf",
|
3830 |
+
"200italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf",
|
3831 |
+
"300italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf",
|
3832 |
+
"regular": "http://fonts.gstatic.com/s/nunito/v11/XRXV3I6Li01BKof4MuyAbsrVcA.ttf",
|
3833 |
+
"italic": "http://fonts.gstatic.com/s/nunito/v11/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf",
|
3834 |
+
"600italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf",
|
3835 |
+
"700italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf",
|
3836 |
+
"800italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf",
|
3837 |
+
"900italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf"
|
3838 |
+
},
|
3839 |
+
"brizyId": "ppzycxqtiwtmjnfpbfluoynrnnfviuerjczz"
|
3840 |
+
},
|
3841 |
+
{
|
3842 |
+
"kind": "webfonts#webfont",
|
3843 |
+
"family": "Knewave",
|
3844 |
+
"category": "display",
|
3845 |
+
"variants": ["regular"],
|
3846 |
+
"subsets": ["latin", "latin-ext"],
|
3847 |
+
"version": "v8",
|
3848 |
+
"lastModified": "2019-07-16",
|
3849 |
+
"files": {
|
3850 |
+
"regular": "http://fonts.gstatic.com/s/knewave/v8/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"
|
3851 |
+
},
|
3852 |
+
"brizyId": "jojwyelvgkjknbgrosxcdphkpqfcczzdlcen"
|
3853 |
+
},
|
3854 |
+
{
|
3855 |
+
"kind": "webfonts#webfont",
|
3856 |
+
"family": "Palanquin",
|
3857 |
+
"category": "sans-serif",
|
3858 |
+
"variants": ["100", "200", "300", "regular", "500", "600", "700"],
|
3859 |
+
"subsets": ["devanagari", "latin", "latin-ext"],
|
3860 |
+
"version": "v5",
|
3861 |
+
"lastModified": "2019-07-16",
|
3862 |
+
"files": {
|
3863 |
+
"100": "http://fonts.gstatic.com/s/palanquin/v5/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf",
|
3864 |
+
"200": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf",
|
3865 |
+
"300": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf",
|
3866 |
+
"500": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf",
|
3867 |
+
"600": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf",
|
3868 |
+
"700": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf",
|
3869 |
+
"regular": "http://fonts.gstatic.com/s/palanquin/v5/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf"
|
3870 |
+
},
|
3871 |
+
"brizyId": "xnikbaszrjutnnfixmtprduwstoziivqiflp"
|
3872 |
+
},
|
3873 |
+
{
|
3874 |
+
"kind": "webfonts#webfont",
|
3875 |
+
"family": "Palanquin Dark",
|
3876 |
+
"category": "sans-serif",
|
3877 |
+
"variants": ["regular", "500", "600", "700"],
|
3878 |
+
"subsets": ["devanagari", "latin", "latin-ext"],
|
3879 |
+
"version": "v6",
|
3880 |
+
"lastModified": "2019-07-16",
|
3881 |
+
"files": {
|
3882 |
+
"500": "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf",
|
3883 |
+
"600": "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf",
|
3884 |
+
"700": "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf",
|
3885 |
+
"regular": "http://fonts.gstatic.com/s/palanquindark/v6/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf"
|
3886 |
+
},
|
3887 |
+
"brizyId": "gqzfchsrosvxegeymkyugyofaztsitibprrf"
|
3888 |
+
},
|
3889 |
+
{
|
3890 |
+
"kind": "webfonts#webfont",
|
3891 |
+
"family": "Roboto",
|
3892 |
+
"category": "sans-serif",
|
3893 |
+
"variants": [
|
3894 |
+
"100",
|
3895 |
+
"100italic",
|
3896 |
+
"300",
|
3897 |
+
"300italic",
|
3898 |
+
"regular",
|
3899 |
+
"italic",
|
3900 |
+
"500",
|
3901 |
+
"500italic",
|
3902 |
+
"700",
|
3903 |
+
"700italic",
|
3904 |
+
"900",
|
3905 |
+
"900italic"
|
3906 |
+
],
|
3907 |
+
"subsets": [
|
3908 |
+
"greek-ext",
|
3909 |
+
"latin",
|
3910 |
+
"cyrillic-ext",
|
3911 |
+
"vietnamese",
|
3912 |
+
"latin-ext",
|
3913 |
+
"greek",
|
3914 |
+
"cyrillic"
|
3915 |
+
],
|
3916 |
+
"version": "v20",
|
3917 |
+
"lastModified": "2019-07-24",
|
3918 |
+
"files": {
|
3919 |
+
"100": "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf",
|
3920 |
+
"300": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf",
|
3921 |
+
"500": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf",
|
3922 |
+
"700": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf",
|
3923 |
+
"900": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf",
|
3924 |
+
"100italic": "http://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf",
|
3925 |
+
"300italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf",
|
3926 |
+
"regular": "http://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf",
|
3927 |
+
"italic": "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf",
|
3928 |
+
"500italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf",
|
3929 |
+
"700italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf",
|
3930 |
+
"900italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"
|
3931 |
+
},
|
3932 |
+
"brizyId": "wrqenoprsynrjiyxmfoeuwqddlnomrxemeec"
|
3933 |
+
},
|
3934 |
+
{
|
3935 |
+
"kind": "webfonts#webfont",
|
3936 |
+
"family": "Oswald",
|
3937 |
+
"category": "sans-serif",
|
3938 |
+
"variants": ["200", "300", "regular", "500", "600", "700"],
|
3939 |
+
"subsets": [
|
3940 |
+
"latin",
|
3941 |
+
"cyrillic-ext",
|
3942 |
+
"vietnamese",
|
3943 |
+
"latin-ext",
|
3944 |
+
"cyrillic"
|
3945 |
+
],
|
3946 |
+
"version": "v24",
|
3947 |
+
"lastModified": "2019-07-23",
|
3948 |
+
"files": {
|
3949 |
+
"200": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf",
|
3950 |
+
"300": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf",
|
3951 |
+
"500": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf",
|
3952 |
+
"600": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf",
|
3953 |
+
"700": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf",
|
3954 |
+
"regular": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf"
|
3955 |
+
},
|
3956 |
+
"brizyId": "ehiobdhupkijoltxyucnkenojglortpsupmp"
|
3957 |
+
},
|
3958 |
+
{
|
3959 |
+
"kind": "webfonts#webfont",
|
3960 |
+
"family": "Oxygen",
|
3961 |
+
"category": "sans-serif",
|
3962 |
+
"variants": ["300", "regular", "700"],
|
3963 |
+
"subsets": ["latin", "latin-ext"],
|
3964 |
+
"version": "v9",
|
3965 |
+
"lastModified": "2019-07-22",
|
3966 |
+
"files": {
|
3967 |
+
"300": "http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf",
|
3968 |
+
"700": "http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf",
|
3969 |
+
"regular": "http://fonts.gstatic.com/s/oxygen/v9/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf"
|
3970 |
+
},
|
3971 |
+
"brizyId": "gzhhqjoyiaozuhrmbylqeknkdaqtxfdynaqt"
|
3972 |
+
},
|
3973 |
+
{
|
3974 |
+
"kind": "webfonts#webfont",
|
3975 |
+
"family": "Playfair Display",
|
3976 |
+
"category": "serif",
|
3977 |
+
"variants": [
|
3978 |
+
"regular",
|
3979 |
+
"italic",
|
3980 |
+
"700",
|
3981 |
+
"700italic",
|
3982 |
+
"900",
|
3983 |
+
"900italic"
|
3984 |
+
],
|
3985 |
+
"subsets": ["latin", "vietnamese", "latin-ext", "cyrillic"],
|
3986 |
+
"version": "v15",
|
3987 |
+
"lastModified": "2019-07-22",
|
3988 |
+
"files": {
|
3989 |
+
"700": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf",
|
3990 |
+
"900": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf",
|
3991 |
+
"regular": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf",
|
3992 |
+
"italic": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf",
|
3993 |
+
"700italic": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf",
|
3994 |
+
"900italic": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf"
|
3995 |
+
},
|
3996 |
+
"brizyId": "bvbbabnggnnjzvtleuwdrnfuvssxrgeovjan"
|
3997 |
+
},
|
3998 |
+
{
|
3999 |
+
"kind": "webfonts#webfont",
|
4000 |
+
"family": "Fira Sans",
|
4001 |
+
"category": "sans-serif",
|
4002 |
+
"variants": [
|
4003 |
+
"100",
|
4004 |
+
"100italic",
|
4005 |
+
"200",
|
4006 |
+
"200italic",
|
4007 |
+
"300",
|
4008 |
+
"300italic",
|
4009 |
+
"regular",
|
4010 |
+
"italic",
|
4011 |
+
"500",
|
4012 |
+
"500italic",
|
4013 |
+
"600",
|
4014 |
+
"600italic",
|
4015 |
+
"700",
|
4016 |
+
"700italic",
|
4017 |
+
"800",
|
4018 |
+
"800italic",
|
4019 |
+
"900",
|
4020 |
+
"900italic"
|
4021 |
+
],
|
4022 |
+
"subsets": [
|
4023 |
+
"greek-ext",
|
4024 |
+
"latin",
|
4025 |
+
"cyrillic-ext",
|
4026 |
+
"vietnamese",
|
4027 |
+
"latin-ext",
|
4028 |
+
"greek",
|
4029 |
+
"cyrillic"
|
4030 |
+
],
|
4031 |
+
"version": "v10",
|
4032 |
+
"lastModified": "2019-07-22",
|
4033 |
+
"files": {
|
4034 |
+
"100": "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf",
|
4035 |
+
"200": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf",
|
4036 |
+
"300": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf",
|
4037 |
+
"500": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf",
|
4038 |
+
"600": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf",
|
4039 |
+
"700": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf",
|
4040 |
+
"800": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf",
|
4041 |
+
"900": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf",
|
4042 |
+
"100italic": "http://fonts.gstatic.com/s/firasans/v10/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf",
|
4043 |
+
"200italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf",
|
4044 |
+
"300italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf",
|
4045 |
+
"regular": "http://fonts.gstatic.com/s/firasans/v10/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf",
|
4046 |
+
"italic": "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf",
|
4047 |
+
"500italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf",
|
4048 |
+
"600italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf",
|
4049 |
+
"700italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf",
|
4050 |
+
"800italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf",
|
4051 |
+
"900italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf"
|
4052 |
+
},
|
4053 |
+
"brizyId": "wndeuiwznzaqgsugjnojbhzjhjwtryegciis"
|
4054 |
+
},
|
4055 |
+
{
|
4056 |
+
"kind": "webfonts#webfont",
|
4057 |
+
"family": "Abril Fatface",
|
4058 |
+
"category": "display",
|
4059 |
+
"variants": ["regular"],
|
4060 |
+
"subsets": ["latin", "latin-ext"],
|
4061 |
+
"version": "v11",
|
4062 |
+
"lastModified": "2019-07-17",
|
4063 |
+
"files": {
|
4064 |
+
"regular": "http://fonts.gstatic.com/s/abrilfatface/v11/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf"
|
4065 |
+
},
|
4066 |
+
"brizyId": "fbyhozjmiqseimmgxerwiucacmaaljqitrdc"
|
4067 |
+
},
|
4068 |
+
{
|
4069 |
+
"kind": "webfonts#webfont",
|
4070 |
+
"family": "Comfortaa",
|
4071 |
+
"category": "display",
|
4072 |
+
"variants": ["300", "regular", "500", "600", "700"],
|
4073 |
+
"subsets": [
|
4074 |
+
"latin",
|
4075 |
+
"cyrillic-ext",
|
4076 |
+
"vietnamese",
|
4077 |
+
"latin-ext",
|
4078 |
+
"greek",
|
4079 |
+
"cyrillic"
|
4080 |
+
],
|
4081 |
+
"version": "v23",
|
4082 |
+
"lastModified": "2019-07-17",
|
4083 |
+
"files": {
|
4084 |
+
"300": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf",
|
4085 |
+
"500": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf",
|
4086 |
+
"600": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf",
|
4087 |
+
"700": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf",
|
4088 |
+
"regular": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf"
|
4089 |
+
},
|
4090 |
+
"brizyId": "plspcdzrrelkhthvkmoocpwrtltvuzqcyraw"
|
4091 |
+
},
|
4092 |
+
{
|
4093 |
+
"kind": "webfonts#webfont",
|
4094 |
+
"family": "Kaushan Script",
|
4095 |
+
"category": "handwriting",
|
4096 |
+
"variants": ["regular"],
|
4097 |
+
"subsets": ["latin", "latin-ext"],
|
4098 |
+
"version": "v8",
|
4099 |
+
"lastModified": "2019-07-17",
|
4100 |
+
"files": {
|
4101 |
+
"regular": "http://fonts.gstatic.com/s/kaushanscript/v8/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"
|
4102 |
+
},
|
4103 |
+
"brizyId": "simpmqjphttgbnwqaobwxuxoavrdlbpdjgzc"
|
4104 |
+
}
|
4105 |
+
]
|
4106 |
+
}
|
4107 |
+
}
|
4108 |
+
}
|
4109 |
+
'],
|
4110 |
+
['{
|
4111 |
+
"selectedKit": "vnexmlshkihvcgsxmozgxzzdwsyvolvmhtne",
|
4112 |
+
|
4113 |
+
"selectedStyle": "bahcadtpvdhdphmhymrsgrwobyzhxcdzytyx",
|
4114 |
+
"styles": [
|
4115 |
+
{
|
4116 |
+
"id": "bahcadtpvdhdphmhymrsgrwobyzhxcdzytyx",
|
4117 |
+
"title": "Overpass",
|
4118 |
+
"colorPalette": [
|
4119 |
+
{ "id": "color1", "hex": "#A170D9" },
|
4120 |
+
{ "id": "color2", "hex": "#1C1C1C" },
|
4121 |
+
{ "id": "color3", "hex": "#05CAB6" },
|
4122 |
+
{ "id": "color4", "hex": "#B8E6E1" },
|
4123 |
+
{ "id": "color5", "hex": "#F5D4D1" },
|
4124 |
+
{ "id": "color6", "hex": "#EBEBEB" },
|
4125 |
+
{ "id": "color7", "hex": "#666666" },
|
4126 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
4127 |
+
],
|
4128 |
+
"fontStyles": [
|
4129 |
+
{
|
4130 |
+
"deletable": "off",
|
4131 |
+
"id": "paragraph",
|
4132 |
+
"title": "Paragraph",
|
4133 |
+
"fontFamily": "overpass",
|
4134 |
+
"fontFamilyType": "google",
|
4135 |
+
"fontSize": 16,
|
4136 |
+
"fontWeight": 400,
|
4137 |
+
"lineHeight": 1.9,
|
4138 |
+
"letterSpacing": 0,
|
4139 |
+
"tabletFontSize": 15,
|
4140 |
+
"tabletFontWeight": 400,
|
4141 |
+
"tabletLineHeight": 1.6,
|
4142 |
+
"tabletLetterSpacing": 0,
|
4143 |
+
"mobileFontSize": 15,
|
4144 |
+
"mobileFontWeight": 400,
|
4145 |
+
"mobileLineHeight": 1.6,
|
4146 |
+
"mobileLetterSpacing": 0
|
4147 |
+
},
|
4148 |
+
{
|
4149 |
+
"deletable": "off",
|
4150 |
+
"id": "subtitle",
|
4151 |
+
"title": "Subtitle",
|
4152 |
+
"fontFamily": "overpass",
|
4153 |
+
"fontFamilyType": "google",
|
4154 |
+
"fontSize": 17,
|
4155 |
+
"fontWeight": 400,
|
4156 |
+
"lineHeight": 1.8,
|
4157 |
+
"letterSpacing": 0,
|
4158 |
+
"tabletFontSize": 17,
|
4159 |
+
"tabletFontWeight": 400,
|
4160 |
+
"tabletLineHeight": 1.5,
|
4161 |
+
"tabletLetterSpacing": 0,
|
4162 |
+
"mobileFontSize": 16,
|
4163 |
+
"mobileFontWeight": 400,
|
4164 |
+
"mobileLineHeight": 1.5,
|
4165 |
+
"mobileLetterSpacing": 0
|
4166 |
+
},
|
4167 |
+
{
|
4168 |
+
"deletable": "off",
|
4169 |
+
"id": "abovetitle",
|
4170 |
+
"title": "Above Title",
|
4171 |
+
"fontFamily": "overpass",
|
4172 |
+
"fontFamilyType": "google",
|
4173 |
+
"fontSize": 13,
|
4174 |
+
"fontWeight": 700,
|
4175 |
+
"lineHeight": 1.5,
|
4176 |
+
"letterSpacing": 1.1,
|
4177 |
+
"tabletFontSize": 13,
|
4178 |
+
"tabletFontWeight": 700,
|
4179 |
+
"tabletLineHeight": 1.5,
|
4180 |
+
"tabletLetterSpacing": 1,
|
4181 |
+
"mobileFontSize": 13,
|
4182 |
+
"mobileFontWeight": 700,
|
4183 |
+
"mobileLineHeight": 1.5,
|
4184 |
+
"mobileLetterSpacing": 1
|
4185 |
+
},
|
4186 |
+
{
|
4187 |
+
"deletable": "off",
|
4188 |
+
"id": "heading1",
|
4189 |
+
"title": "Heading 1",
|
4190 |
+
"fontFamily": "overpass",
|
4191 |
+
"fontFamilyType": "google",
|
4192 |
+
"fontSize": 46,
|
4193 |
+
"fontWeight": 700,
|
4194 |
+
"lineHeight": 1.3,
|
4195 |
+
"letterSpacing": -1.5,
|
4196 |
+
"tabletFontSize": 38,
|
4197 |
+
"tabletFontWeight": 700,
|
4198 |
+
"tabletLineHeight": 1.2,
|
4199 |
+
"tabletLetterSpacing": -1,
|
4200 |
+
"mobileFontSize": 36,
|
4201 |
+
"mobileFontWeight": 700,
|
4202 |
+
"mobileLineHeight": 1.3,
|
4203 |
+
"mobileLetterSpacing": -1
|
4204 |
+
},
|
4205 |
+
{
|
4206 |
+
"deletable": "off",
|
4207 |
+
"id": "heading2",
|
4208 |
+
"title": "Heading 2",
|
4209 |
+
"fontFamily": "overpass",
|
4210 |
+
"fontFamilyType": "google",
|
4211 |
+
"fontSize": 36,
|
4212 |
+
"fontWeight": 700,
|
4213 |
+
"lineHeight": 1.3,
|
4214 |
+
"letterSpacing": -1.5,
|
4215 |
+
"tabletFontSize": 30,
|
4216 |
+
"tabletFontWeight": 700,
|
4217 |
+
"tabletLineHeight": 1.2,
|
4218 |
+
"tabletLetterSpacing": -1,
|
4219 |
+
"mobileFontSize": 28,
|
4220 |
+
"mobileFontWeight": 700,
|
4221 |
+
"mobileLineHeight": 1.3,
|
4222 |
+
"mobileLetterSpacing": -1
|
4223 |
+
},
|
4224 |
+
{
|
4225 |
+
"deletable": "off",
|
4226 |
+
"id": "heading3",
|
4227 |
+
"title": "Heading 3",
|
4228 |
+
"fontFamily": "overpass",
|
4229 |
+
"fontFamilyType": "google",
|
4230 |
+
"fontSize": 28,
|
4231 |
+
"fontWeight": 700,
|
4232 |
+
"lineHeight": 1.4,
|
4233 |
+
"letterSpacing": -1.5,
|
4234 |
+
"tabletFontSize": 27,
|
4235 |
+
"tabletFontWeight": 700,
|
4236 |
+
"tabletLineHeight": 1.3,
|
4237 |
+
"tabletLetterSpacing": -1,
|
4238 |
+
"mobileFontSize": 22,
|
4239 |
+
"mobileFontWeight": 700,
|
4240 |
+
"mobileLineHeight": 1.3,
|
4241 |
+
"mobileLetterSpacing": -0.5
|
4242 |
+
},
|
4243 |
+
{
|
4244 |
+
"deletable": "off",
|
4245 |
+
"id": "heading4",
|
4246 |
+
"title": "Heading 4",
|
4247 |
+
"fontFamily": "overpass",
|
4248 |
+
"fontFamilyType": "google",
|
4249 |
+
"fontSize": 22,
|
4250 |
+
"fontWeight": 700,
|
4251 |
+
"lineHeight": 1.5,
|
4252 |
+
"letterSpacing": -0.5,
|
4253 |
+
"tabletFontSize": 22,
|
4254 |
+
"tabletFontWeight": 700,
|
4255 |
+
"tabletLineHeight": 1.4,
|
4256 |
+
"tabletLetterSpacing": -0.5,
|
4257 |
+
"mobileFontSize": 20,
|
4258 |
+
"mobileFontWeight": 700,
|
4259 |
+
"mobileLineHeight": 1.4,
|
4260 |
+
"mobileLetterSpacing": 0
|
4261 |
+
},
|
4262 |
+
{
|
4263 |
+
"deletable": "off",
|
4264 |
+
"id": "heading5",
|
4265 |
+
"title": "Heading 5",
|
4266 |
+
"fontFamily": "overpass",
|
4267 |
+
"fontFamilyType": "google",
|
4268 |
+
"fontSize": 20,
|
4269 |
+
"fontWeight": 700,
|
4270 |
+
"lineHeight": 1.6,
|
4271 |
+
"letterSpacing": 0,
|
4272 |
+
"tabletFontSize": 17,
|
4273 |
+
"tabletFontWeight": 700,
|
4274 |
+
"tabletLineHeight": 1.7,
|
4275 |
+
"tabletLetterSpacing": 0,
|
4276 |
+
"mobileFontSize": 17,
|
4277 |
+
"mobileFontWeight": 700,
|
4278 |
+
"mobileLineHeight": 1.8,
|
4279 |
+
"mobileLetterSpacing": 0
|
4280 |
+
},
|
4281 |
+
{
|
4282 |
+
"deletable": "off",
|
4283 |
+
"id": "heading6",
|
4284 |
+
"title": "Heading 6",
|
4285 |
+
"fontFamily": "overpass",
|
4286 |
+
"fontFamilyType": "google",
|
4287 |
+
"fontSize": 16,
|
4288 |
+
"fontWeight": 700,
|
4289 |
+
"lineHeight": 1.5,
|
4290 |
+
"letterSpacing": 0,
|
4291 |
+
"tabletFontSize": 16,
|
4292 |
+
"tabletFontWeight": 700,
|
4293 |
+
"tabletLineHeight": 1.5,
|
4294 |
+
"tabletLetterSpacing": 0,
|
4295 |
+
"mobileFontSize": 16,
|
4296 |
+
"mobileFontWeight": 700,
|
4297 |
+
"mobileLineHeight": 1.5,
|
4298 |
+
"mobileLetterSpacing": 0
|
4299 |
+
},
|
4300 |
+
{
|
4301 |
+
"deletable": "off",
|
4302 |
+
"id": "button",
|
4303 |
+
"title": "Button",
|
4304 |
+
"fontFamily": "overpass",
|
4305 |
+
"fontFamilyType": "google",
|
4306 |
+
"fontSize": 15,
|
4307 |
+
"fontWeight": 700,
|
4308 |
+
"lineHeight": 1.6,
|
4309 |
+
"letterSpacing": 0,
|
4310 |
+
"tabletFontSize": 17,
|
4311 |
+
"tabletFontWeight": 700,
|
4312 |
+
"tabletLineHeight": 1.6,
|
4313 |
+
"tabletLetterSpacing": 0,
|
4314 |
+
"mobileFontSize": 15,
|
4315 |
+
"mobileFontWeight": 700,
|
4316 |
+
"mobileLineHeight": 1.6,
|
4317 |
+
"mobileLetterSpacing": 0
|
4318 |
+
}
|
4319 |
+
]
|
4320 |
+
},
|
4321 |
+
{
|
4322 |
+
"id": "oilxrtjxgdgosmgudtgrezwpzxjlfumgppro",
|
4323 |
+
"title": "Magazine",
|
4324 |
+
"colorPalette": [
|
4325 |
+
{ "id": "color1", "hex": "#182E43" },
|
4326 |
+
{ "id": "color2", "hex": "#061726" },
|
4327 |
+
{ "id": "color3", "hex": "#1176C1" },
|
4328 |
+
{ "id": "color4", "hex": "#EDB2CB" },
|
4329 |
+
{ "id": "color5", "hex": "#B5D1E6" },
|
4330 |
+
{ "id": "color6", "hex": "#FBF1FA" },
|
4331 |
+
{ "id": "color7", "hex": "#5B6067" },
|
4332 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
4333 |
+
],
|
4334 |
+
"fontStyles": [
|
4335 |
+
{
|
4336 |
+
"deletable": "off",
|
4337 |
+
"id": "paragraph",
|
4338 |
+
"title": "Paragraph",
|
4339 |
+
"fontFamily": "red_hat_text",
|
4340 |
+
"fontFamilyType": "google",
|
4341 |
+
"fontSize": 16,
|
4342 |
+
"fontWeight": 400,
|
4343 |
+
"lineHeight": 1.9,
|
4344 |
+
"letterSpacing": 0,
|
4345 |
+
"tabletFontSize": 16,
|
4346 |
+
"tabletFontWeight": 400,
|
4347 |
+
"tabletLineHeight": 1.6,
|
4348 |
+
"tabletLetterSpacing": 0,
|
4349 |
+
"mobileFontSize": 16,
|
4350 |
+
"mobileFontWeight": 500,
|
4351 |
+
"mobileLineHeight": 1.6,
|
4352 |
+
"mobileLetterSpacing": 0
|
4353 |
+
},
|
4354 |
+
{
|
4355 |
+
"deletable": "off",
|
4356 |
+
"id": "subtitle",
|
4357 |
+
"title": "Subtitle",
|
4358 |
+
"fontFamily": "red_hat_text",
|
4359 |
+
"fontFamilyType": "google",
|
4360 |
+
"fontSize": 17,
|
4361 |
+
"fontWeight": 400,
|
4362 |
+
"lineHeight": 1.8,
|
4363 |
+
"letterSpacing": 0,
|
4364 |
+
"tabletFontSize": 17,
|
4365 |
+
"tabletFontWeight": 400,
|
4366 |
+
"tabletLineHeight": 1.5,
|
4367 |
+
"tabletLetterSpacing": 0,
|
4368 |
+
"mobileFontSize": 18,
|
4369 |
+
"mobileFontWeight": 400,
|
4370 |
+
"mobileLineHeight": 1.6,
|
4371 |
+
"mobileLetterSpacing": 0
|
4372 |
+
},
|
4373 |
+
{
|
4374 |
+
"deletable": "off",
|
4375 |
+
"id": "abovetitle",
|
4376 |
+
"title": "Above Title",
|
4377 |
+
"fontFamily": "red_hat_text",
|
4378 |
+
"fontFamilyType": "google",
|
4379 |
+
"fontSize": 13,
|
4380 |
+
"fontWeight": 600,
|
4381 |
+
"lineHeight": 1.5,
|
4382 |
+
"letterSpacing": 1.1,
|
4383 |
+
"tabletFontSize": 13,
|
4384 |
+
"tabletFontWeight": 600,
|
4385 |
+
"tabletLineHeight": 1.5,
|
4386 |
+
"tabletLetterSpacing": 1,
|
4387 |
+
"mobileFontSize": 13,
|
4388 |
+
"mobileFontWeight": 600,
|
4389 |
+
"mobileLineHeight": 1.5,
|
4390 |
+
"mobileLetterSpacing": 1
|
4391 |
+
},
|
4392 |
+
{
|
4393 |
+
"deletable": "off",
|
4394 |
+
"id": "heading1",
|
4395 |
+
"title": "Heading 1",
|
4396 |
+
"fontFamily": "dm_serif_text",
|
4397 |
+
"fontFamilyType": "google",
|
4398 |
+
"fontSize": 46,
|
4399 |
+
"fontWeight": 400,
|
4400 |
+
"lineHeight": 1.3,
|
4401 |
+
"letterSpacing": -1.5,
|
4402 |
+
"tabletFontSize": 40,
|
4403 |
+
"tabletFontWeight": 600,
|
4404 |
+
"tabletLineHeight": 1.3,
|
4405 |
+
"tabletLetterSpacing": -1.5,
|
4406 |
+
"mobileFontSize": 36,
|
4407 |
+
"mobileFontWeight": 600,
|
4408 |
+
"mobileLineHeight": 1.3,
|
4409 |
+
"mobileLetterSpacing": -1.5
|
4410 |
+
},
|
4411 |
+
{
|
4412 |
+
"deletable": "off",
|
4413 |
+
"id": "heading2",
|
4414 |
+
"title": "Heading 2",
|
4415 |
+
"fontFamily": "dm_serif_text",
|
4416 |
+
"fontFamilyType": "google",
|
4417 |
+
"fontSize": 36,
|
4418 |
+
"fontWeight": 400,
|
4419 |
+
"lineHeight": 1.4,
|
4420 |
+
"letterSpacing": -1,
|
4421 |
+
"tabletFontSize": 35,
|
4422 |
+
"tabletFontWeight": 400,
|
4423 |
+
"tabletLineHeight": 1.2,
|
4424 |
+
"tabletLetterSpacing": -1,
|
4425 |
+
"mobileFontSize": 29,
|
4426 |
+
"mobileFontWeight": 400,
|
4427 |
+
"mobileLineHeight": 1.3,
|
4428 |
+
"mobileLetterSpacing": -0.5
|
4429 |
+
},
|
4430 |
+
{
|
4431 |
+
"deletable": "off",
|
4432 |
+
"id": "heading3",
|
4433 |
+
"title": "Heading 3",
|
4434 |
+
"fontFamily": "dm_serif_text",
|
4435 |
+
"fontFamilyType": "google",
|
4436 |
+
"fontSize": 28,
|
4437 |
+
"fontWeight": 400,
|
4438 |
+
"lineHeight": 1.4,
|
4439 |
+
"letterSpacing": -0.5,
|
4440 |
+
"tabletFontSize": 27,
|
4441 |
+
"tabletFontWeight": 400,
|
4442 |
+
"tabletLineHeight": 1.3,
|
4443 |
+
"tabletLetterSpacing": -0.5,
|
4444 |
+
"mobileFontSize": 23,
|
4445 |
+
"mobileFontWeight": 400,
|
4446 |
+
"mobileLineHeight": 1.3,
|
4447 |
+
"mobileLetterSpacing": -0.5
|
4448 |
+
},
|
4449 |
+
{
|
4450 |
+
"deletable": "off",
|
4451 |
+
"id": "heading4",
|
4452 |
+
"title": "Heading 4",
|
4453 |
+
"fontFamily": "red_hat_text",
|
4454 |
+
"fontFamilyType": "google",
|
4455 |
+
"fontSize": 22,
|
4456 |
+
"fontWeight": 500,
|
4457 |
+
"lineHeight": 1.5,
|
4458 |
+
"letterSpacing": -0.5,
|
4459 |
+
"tabletFontSize": 20,
|
4460 |
+
"tabletFontWeight": 500,
|
4461 |
+
"tabletLineHeight": 1.4,
|
4462 |
+
"tabletLetterSpacing": -0.5,
|
4463 |
+
"mobileFontSize": 20,
|
4464 |
+
"mobileFontWeight": 500,
|
4465 |
+
"mobileLineHeight": 1.4,
|
4466 |
+
"mobileLetterSpacing": -0.5
|
4467 |
+
},
|
4468 |
+
{
|
4469 |
+
"deletable": "off",
|
4470 |
+
"id": "heading5",
|
4471 |
+
"title": "Heading 5",
|
4472 |
+
"fontFamily": "red_hat_text",
|
4473 |
+
"fontFamilyType": "google",
|
4474 |
+
"fontSize": 20,
|
4475 |
+
"fontWeight": 500,
|
4476 |
+
"lineHeight": 1.6,
|
4477 |
+
"letterSpacing": 0,
|
4478 |
+
"tabletFontSize": 18,
|
4479 |
+
"tabletFontWeight": 500,
|
4480 |
+
"tabletLineHeight": 1.5,
|
4481 |
+
"tabletLetterSpacing": -0.5,
|
4482 |
+
"mobileFontSize": 18,
|
4483 |
+
"mobileFontWeight": 500,
|
4484 |
+
"mobileLineHeight": 1.5,
|
4485 |
+
"mobileLetterSpacing": -0.5
|
4486 |
+
},
|
4487 |
+
{
|
4488 |
+
"deletable": "off",
|
4489 |
+
"id": "heading6",
|
4490 |
+
"title": "Heading 6",
|
4491 |
+
"fontFamily": "red_hat_text",
|
4492 |
+
"fontFamilyType": "google",
|
4493 |
+
"fontSize": 16,
|
4494 |
+
"fontWeight": 700,
|
4495 |
+
"lineHeight": 1.5,
|
4496 |
+
"letterSpacing": 0,
|
4497 |
+
"tabletFontSize": 16,
|
4498 |
+
"tabletFontWeight": 700,
|
4499 |
+
"tabletLineHeight": 1.5,
|
4500 |
+
"tabletLetterSpacing": -0.5,
|
4501 |
+
"mobileFontSize": 16,
|
4502 |
+
"mobileFontWeight": 700,
|
4503 |
+
"mobileLineHeight": 1.5,
|
4504 |
+
"mobileLetterSpacing": 0
|
4505 |
+
},
|
4506 |
+
{
|
4507 |
+
"deletable": "off",
|
4508 |
+
"id": "button",
|
4509 |
+
"title": "Button",
|
4510 |
+
"fontFamily": "red_hat_text",
|
4511 |
+
"fontFamilyType": "google",
|
4512 |
+
"fontSize": 15,
|
4513 |
+
"fontWeight": 500,
|
4514 |
+
"lineHeight": 1.6,
|
4515 |
+
"letterSpacing": 1,
|
4516 |
+
"tabletFontSize": 14,
|
4517 |
+
"tabletFontWeight": 500,
|
4518 |
+
"tabletLineHeight": 1.6,
|
4519 |
+
"tabletLetterSpacing": 1,
|
4520 |
+
"mobileFontSize": 14,
|
4521 |
+
"mobileFontWeight": 500,
|
4522 |
+
"mobileLineHeight": 1.6,
|
4523 |
+
"mobileLetterSpacing": 1
|
4524 |
+
}
|
4525 |
+
]
|
4526 |
+
},
|
4527 |
+
{
|
4528 |
+
"id": "abzxtmjekuwdhhhchiwlaovkxyvspfffueiy",
|
4529 |
+
"title": "Graceful",
|
4530 |
+
"colorPalette": [
|
4531 |
+
{ "id": "color1", "hex": "#A276AF" },
|
4532 |
+
{ "id": "color2", "hex": "#1E1B2D" },
|
4533 |
+
{ "id": "color3", "hex": "#7F69F4" },
|
4534 |
+
{ "id": "color4", "hex": "#F7CECA" },
|
4535 |
+
{ "id": "color5", "hex": "#C1B8EF" },
|
4536 |
+
{ "id": "color6", "hex": "#F2EAE7" },
|
4537 |
+
{ "id": "color7", "hex": "#67656D" },
|
4538 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
4539 |
+
],
|
4540 |
+
"fontStyles": [
|
4541 |
+
{
|
4542 |
+
"deletable": "off",
|
4543 |
+
"id": "paragraph",
|
4544 |
+
"title": "Paragraph",
|
4545 |
+
"fontFamily": "blinker",
|
4546 |
+
"fontFamilyType": "google",
|
4547 |
+
"fontSize": 16,
|
4548 |
+
"fontWeight": 400,
|
4549 |
+
"lineHeight": 1.9,
|
4550 |
+
"letterSpacing": 0,
|
4551 |
+
"tabletFontSize": 16,
|
4552 |
+
"tabletFontWeight": 400,
|
4553 |
+
"tabletLineHeight": 1.6,
|
4554 |
+
"tabletLetterSpacing": 0,
|
4555 |
+
"mobileFontSize": 16,
|
4556 |
+
"mobileFontWeight": 400,
|
4557 |
+
"mobileLineHeight": 1.6,
|
4558 |
+
"mobileLetterSpacing": 0
|
4559 |
+
},
|
4560 |
+
{
|
4561 |
+
"deletable": "off",
|
4562 |
+
"id": "subtitle",
|
4563 |
+
"title": "Subtitle",
|
4564 |
+
"fontFamily": "blinker",
|
4565 |
+
"fontFamilyType": "google",
|
4566 |
+
"fontSize": 17,
|
4567 |
+
"fontWeight": 400,
|
4568 |
+
"lineHeight": 1.8,
|
4569 |
+
"letterSpacing": 0,
|
4570 |
+
"tabletFontSize": 17,
|
4571 |
+
"tabletFontWeight": 400,
|
4572 |
+
"tabletLineHeight": 1.5,
|
4573 |
+
"tabletLetterSpacing": 0,
|
4574 |
+
"mobileFontSize": 17,
|
4575 |
+
"mobileFontWeight": 400,
|
4576 |
+
"mobileLineHeight": 1.5,
|
4577 |
+
"mobileLetterSpacing": 0
|
4578 |
+
},
|
4579 |
+
{
|
4580 |
+
"deletable": "off",
|
4581 |
+
"id": "abovetitle",
|
4582 |
+
"title": "Above Title",
|
4583 |
+
"fontFamily": "blinker",
|
4584 |
+
"fontFamilyType": "google",
|
4585 |
+
"fontSize": 13,
|
4586 |
+
"fontWeight": 600,
|
4587 |
+
"lineHeight": 1.5,
|
4588 |
+
"letterSpacing": 1.1,
|
4589 |
+
"tabletFontSize": 13,
|
4590 |
+
"tabletFontWeight": 600,
|
4591 |
+
"tabletLineHeight": 1.5,
|
4592 |
+
"tabletLetterSpacing": 1,
|
4593 |
+
"mobileFontSize": 13,
|
4594 |
+
"mobileFontWeight": 600,
|
4595 |
+
"mobileLineHeight": 1.5,
|
4596 |
+
"mobileLetterSpacing": 1
|
4597 |
+
},
|
4598 |
+
{
|
4599 |
+
"deletable": "off",
|
4600 |
+
"id": "heading1",
|
4601 |
+
"title": "Heading 1",
|
4602 |
+
"fontFamily": "aleo",
|
4603 |
+
"fontFamilyType": "google",
|
4604 |
+
"fontSize": 46,
|
4605 |
+
"fontWeight": 400,
|
4606 |
+
"lineHeight": 1.3,
|
4607 |
+
"letterSpacing": -1.5,
|
4608 |
+
"tabletFontSize": 40,
|
4609 |
+
"tabletFontWeight": 400,
|
4610 |
+
"tabletLineHeight": 1.2,
|
4611 |
+
"tabletLetterSpacing": -1.5,
|
4612 |
+
"mobileFontSize": 34,
|
4613 |
+
"mobileFontWeight": 400,
|
4614 |
+
"mobileLineHeight": 1.3,
|
4615 |
+
"mobileLetterSpacing": -1
|
4616 |
+
},
|
4617 |
+
{
|
4618 |
+
"deletable": "off",
|
4619 |
+
"id": "heading2",
|
4620 |
+
"title": "Heading 2",
|
4621 |
+
"fontFamily": "aleo",
|
4622 |
+
"fontFamilyType": "google",
|
4623 |
+
"fontSize": 36,
|
4624 |
+
"fontWeight": 400,
|
4625 |
+
"lineHeight": 1.4,
|
4626 |
+
"letterSpacing": -1,
|
4627 |
+
"tabletFontSize": 35,
|
4628 |
+
"tabletFontWeight": 400,
|
4629 |
+
"tabletLineHeight": 1.3,
|
4630 |
+
"tabletLetterSpacing": -0.5,
|
4631 |
+
"mobileFontSize": 29,
|
4632 |
+
"mobileFontWeight": 400,
|
4633 |
+
"mobileLineHeight": 1.3,
|
4634 |
+
"mobileLetterSpacing": -0.5
|
4635 |
+
},
|
4636 |
+
{
|
4637 |
+
"deletable": "off",
|
4638 |
+
"id": "heading3",
|
4639 |
+
"title": "Heading 3",
|
4640 |
+
"fontFamily": "aleo",
|
4641 |
+
"fontFamilyType": "google",
|
4642 |
+
"fontSize": 28,
|
4643 |
+
"fontWeight": 400,
|
4644 |
+
"lineHeight": 1.4,
|
4645 |
+
"letterSpacing": 0,
|
4646 |
+
"tabletFontSize": 25,
|
4647 |
+
"tabletFontWeight": 400,
|
4648 |
+
"tabletLineHeight": 1.3,
|
4649 |
+
"tabletLetterSpacing": 0,
|
4650 |
+
"mobileFontSize": 22,
|
4651 |
+
"mobileFontWeight": 400,
|
4652 |
+
"mobileLineHeight": 1.3,
|
4653 |
+
"mobileLetterSpacing": 0
|
4654 |
+
},
|
4655 |
+
{
|
4656 |
+
"deletable": "off",
|
4657 |
+
"id": "heading4",
|
4658 |
+
"title": "Heading 4",
|
4659 |
+
"fontFamily": "blinker",
|
4660 |
+
"fontFamilyType": "google",
|
4661 |
+
"fontSize": 22,
|
4662 |
+
"fontWeight": 600,
|
4663 |
+
"lineHeight": 1.5,
|
4664 |
+
"letterSpacing": 0,
|
4665 |
+
"tabletFontSize": 22,
|
4666 |
+
"tabletFontWeight": 600,
|
4667 |
+
"tabletLineHeight": 1.4,
|
4668 |
+
"tabletLetterSpacing": 0,
|
4669 |
+
"mobileFontSize": 21,
|
4670 |
+
"mobileFontWeight": 600,
|
4671 |
+
"mobileLineHeight": 1.4,
|
4672 |
+
"mobileLetterSpacing": 0
|
4673 |
+
},
|
4674 |
+
{
|
4675 |
+
"deletable": "off",
|
4676 |
+
"id": "heading5",
|
4677 |
+
"title": "Heading 5",
|
4678 |
+
"fontFamily": "blinker",
|
4679 |
+
"fontFamilyType": "google",
|
4680 |
+
"fontSize": 20,
|
4681 |
+
"fontWeight": 600,
|
4682 |
+
"lineHeight": 1.6,
|
4683 |
+
"letterSpacing": 0,
|
4684 |
+
"tabletFontSize": 18,
|
4685 |
+
"tabletFontWeight": 600,
|
4686 |
+
"tabletLineHeight": 1.5,
|
4687 |
+
"tabletLetterSpacing": 0,
|
4688 |
+
"mobileFontSize": 18,
|
4689 |
+
"mobileFontWeight": 600,
|
4690 |
+
"mobileLineHeight": 1.5,
|
4691 |
+
"mobileLetterSpacing": 0
|
4692 |
+
},
|
4693 |
+
{
|
4694 |
+
"deletable": "off",
|
4695 |
+
"id": "heading6",
|
4696 |
+
"title": "Heading 6",
|
4697 |
+
"fontFamily": "blinker",
|
4698 |
+
"fontFamilyType": "google",
|
4699 |
+
"fontSize": 16,
|
4700 |
+
"fontWeight": 600,
|
4701 |
+
"lineHeight": 1.5,
|
4702 |
+
"letterSpacing": 0,
|
4703 |
+
"tabletFontSize": 17,
|
4704 |
+
"tabletFontWeight": 600,
|
4705 |
+
"tabletLineHeight": 1.5,
|
4706 |
+
"tabletLetterSpacing": 0,
|
4707 |
+
"mobileFontSize": 16,
|
4708 |
+
"mobileFontWeight": 600,
|
4709 |
+
"mobileLineHeight": 1.5,
|
4710 |
+
"mobileLetterSpacing": 0
|
4711 |
+
},
|
4712 |
+
{
|
4713 |
+
"deletable": "off",
|
4714 |
+
"id": "button",
|
4715 |
+
"title": "Button",
|
4716 |
+
"fontFamily": "blinker",
|
4717 |
+
"fontFamilyType": "google",
|
4718 |
+
"fontSize": 15,
|
4719 |
+
"fontWeight": 700,
|
4720 |
+
"lineHeight": 1.6,
|
4721 |
+
"letterSpacing": 1,
|
4722 |
+
"tabletFontSize": 14,
|
4723 |
+
"tabletFontWeight": 600,
|
4724 |
+
"tabletLineHeight": 1.6,
|
4725 |
+
"tabletLetterSpacing": 0.5,
|
4726 |
+
"mobileFontSize": 15,
|
4727 |
+
"mobileFontWeight": 600,
|
4728 |
+
"mobileLineHeight": 1.6,
|
4729 |
+
"mobileLetterSpacing": 0.5
|
4730 |
+
}
|
4731 |
+
]
|
4732 |
+
},
|
4733 |
+
{
|
4734 |
+
"id": "aqmryzjisyyemvyjbrxjhiadzqxjumfplivm",
|
4735 |
+
"title": "Ashen",
|
4736 |
+
"colorPalette": [
|
4737 |
+
{ "id": "color1", "hex": "#B23730" },
|
4738 |
+
{ "id": "color2", "hex": "#200F11" },
|
4739 |
+
{ "id": "color3", "hex": "#B2305E" },
|
4740 |
+
{ "id": "color4", "hex": "#FFDCD0" },
|
4741 |
+
{ "id": "color5", "hex": "#FF7547" },
|
4742 |
+
{ "id": "color6", "hex": "#F5F4F0" },
|
4743 |
+
{ "id": "color7", "hex": "#7F7979" },
|
4744 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
4745 |
+
],
|
4746 |
+
"fontStyles": [
|
4747 |
+
{
|
4748 |
+
"deletable": "off",
|
4749 |
+
"id": "paragraph",
|
4750 |
+
"title": "Paragraph",
|
4751 |
+
"fontFamily": "nunito",
|
4752 |
+
"fontFamilyType": "google",
|
4753 |
+
"fontSize": 16,
|
4754 |
+
"fontWeight": 400,
|
4755 |
+
"lineHeight": 1.9,
|
4756 |
+
"letterSpacing": 0,
|
4757 |
+
"tabletFontSize": 15,
|
4758 |
+
"tabletFontWeight": 400,
|
4759 |
+
"tabletLineHeight": 1.6,
|
4760 |
+
"tabletLetterSpacing": 0,
|
4761 |
+
"mobileFontSize": 15,
|
4762 |
+
"mobileFontWeight": 400,
|
4763 |
+
"mobileLineHeight": 1.6,
|
4764 |
+
"mobileLetterSpacing": 0
|
4765 |
+
},
|
4766 |
+
{
|
4767 |
+
"deletable": "off",
|
4768 |
+
"id": "subtitle",
|
4769 |
+
"title": "Subtitle",
|
4770 |
+
"fontFamily": "nunito",
|
4771 |
+
"fontFamilyType": "google",
|
4772 |
+
"fontSize": 17,
|
4773 |
+
"fontWeight": 400,
|
4774 |
+
"lineHeight": 1.8,
|
4775 |
+
"letterSpacing": 0,
|
4776 |
+
"tabletFontSize": 17,
|
4777 |
+
"tabletFontWeight": 400,
|
4778 |
+
"tabletLineHeight": 1.5,
|
4779 |
+
"tabletLetterSpacing": 0,
|
4780 |
+
"mobileFontSize": 17,
|
4781 |
+
"mobileFontWeight": 400,
|
4782 |
+
"mobileLineHeight": 1.5,
|
4783 |
+
"mobileLetterSpacing": 0
|
4784 |
+
},
|
4785 |
+
{
|
4786 |
+
"deletable": "off",
|
4787 |
+
"id": "abovetitle",
|
4788 |
+
"title": "Above Title",
|
4789 |
+
"fontFamily": "nunito",
|
4790 |
+
"fontFamilyType": "google",
|
4791 |
+
"fontSize": 13,
|
4792 |
+
"fontWeight": 700,
|
4793 |
+
"lineHeight": 1.5,
|
4794 |
+
"letterSpacing": 1.1,
|
4795 |
+
"tabletFontSize": 13,
|
4796 |
+
"tabletFontWeight": 600,
|
4797 |
+
"tabletLineHeight": 1.5,
|
4798 |
+
"tabletLetterSpacing": 1,
|
4799 |
+
"mobileFontSize": 13,
|
4800 |
+
"mobileFontWeight": 600,
|
4801 |
+
"mobileLineHeight": 1.5,
|
4802 |
+
"mobileLetterSpacing": 1
|
4803 |
+
},
|
4804 |
+
{
|
4805 |
+
"deletable": "off",
|
4806 |
+
"id": "heading1",
|
4807 |
+
"title": "Heading 1",
|
4808 |
+
"fontFamily": "knewave",
|
4809 |
+
"fontFamilyType": "google",
|
4810 |
+
"fontSize": 46,
|
4811 |
+
"fontWeight": 400,
|
4812 |
+
"lineHeight": 1.3,
|
4813 |
+
"letterSpacing": -1.5,
|
4814 |
+
"tabletFontSize": 40,
|
4815 |
+
"tabletFontWeight": 400,
|
4816 |
+
"tabletLineHeight": 1.3,
|
4817 |
+
"tabletLetterSpacing": -1,
|
4818 |
+
"mobileFontSize": 34,
|
4819 |
+
"mobileFontWeight": 400,
|
4820 |
+
"mobileLineHeight": 1.3,
|
4821 |
+
"mobileLetterSpacing": -1
|
4822 |
+
},
|
4823 |
+
{
|
4824 |
+
"deletable": "off",
|
4825 |
+
"id": "heading2",
|
4826 |
+
"title": "Heading 2",
|
4827 |
+
"fontFamily": "knewave",
|
4828 |
+
"fontFamilyType": "google",
|
4829 |
+
"fontSize": 36,
|
4830 |
+
"fontWeight": 400,
|
4831 |
+
"lineHeight": 1.4,
|
4832 |
+
"letterSpacing": -1,
|
4833 |
+
"tabletFontSize": 33,
|
4834 |
+
"tabletFontWeight": 400,
|
4835 |
+
"tabletLineHeight": 1.3,
|
4836 |
+
"tabletLetterSpacing": -0.5,
|
4837 |
+
"mobileFontSize": 29,
|
4838 |
+
"mobileFontWeight": 400,
|
4839 |
+
"mobileLineHeight": 1.3,
|
4840 |
+
"mobileLetterSpacing": -0.5
|
4841 |
+
},
|
4842 |
+
{
|
4843 |
+
"deletable": "off",
|
4844 |
+
"id": "heading3",
|
4845 |
+
"title": "Heading 3",
|
4846 |
+
"fontFamily": "knewave",
|
4847 |
+
"fontFamilyType": "google",
|
4848 |
+
"fontSize": 28,
|
4849 |
+
"fontWeight": 400,
|
4850 |
+
"lineHeight": 1.4,
|
4851 |
+
"letterSpacing": 0,
|
4852 |
+
"tabletFontSize": 25,
|
4853 |
+
"tabletFontWeight": 400,
|
4854 |
+
"tabletLineHeight": 1.3,
|
4855 |
+
"tabletLetterSpacing": 0,
|
4856 |
+
"mobileFontSize": 22,
|
4857 |
+
"mobileFontWeight": 400,
|
4858 |
+
"mobileLineHeight": 1.3,
|
4859 |
+
"mobileLetterSpacing": 0
|
4860 |
+
},
|
4861 |
+
{
|
4862 |
+
"deletable": "off",
|
4863 |
+
"id": "heading4",
|
4864 |
+
"title": "Heading 4",
|
4865 |
+
"fontFamily": "nunito",
|
4866 |
+
"fontFamilyType": "google",
|
4867 |
+
"fontSize": 22,
|
4868 |
+
"fontWeight": 700,
|
4869 |
+
"lineHeight": 1.5,
|
4870 |
+
"letterSpacing": 0,
|
4871 |
+
"tabletFontSize": 19,
|
4872 |
+
"tabletFontWeight": 700,
|
4873 |
+
"tabletLineHeight": 1.4,
|
4874 |
+
"tabletLetterSpacing": 0,
|
4875 |
+
"mobileFontSize": 19,
|
4876 |
+
"mobileFontWeight": 700,
|
4877 |
+
"mobileLineHeight": 1.4,
|
4878 |
+
"mobileLetterSpacing": 0
|
4879 |
+
},
|
4880 |
+
{
|
4881 |
+
"deletable": "off",
|
4882 |
+
"id": "heading5",
|
4883 |
+
"title": "Heading 5",
|
4884 |
+
"fontFamily": "nunito",
|
4885 |
+
"fontFamilyType": "google",
|
4886 |
+
"fontSize": 20,
|
4887 |
+
"fontWeight": 700,
|
4888 |
+
"lineHeight": 1.6,
|
4889 |
+
"letterSpacing": 0,
|
4890 |
+
"tabletFontSize": 19,
|
4891 |
+
"tabletFontWeight": 700,
|
4892 |
+
"tabletLineHeight": 1.5,
|
4893 |
+
"tabletLetterSpacing": 0,
|
4894 |
+
"mobileFontSize": 18,
|
4895 |
+
"mobileFontWeight": 700,
|
4896 |
+
"mobileLineHeight": 1.5,
|
4897 |
+
"mobileLetterSpacing": 0
|
4898 |
+
},
|
4899 |
+
{
|
4900 |
+
"deletable": "off",
|
4901 |
+
"id": "heading6",
|
4902 |
+
"title": "Heading 6",
|
4903 |
+
"fontFamily": "nunito",
|
4904 |
+
"fontFamilyType": "google",
|
4905 |
+
"fontSize": 16,
|
4906 |
+
"fontWeight": 700,
|
4907 |
+
"lineHeight": 1.5,
|
4908 |
+
"letterSpacing": 0,
|
4909 |
+
"tabletFontSize": 16,
|
4910 |
+
"tabletFontWeight": 600,
|
4911 |
+
"tabletLineHeight": 1.5,
|
4912 |
+
"tabletLetterSpacing": 0,
|
4913 |
+
"mobileFontSize": 16,
|
4914 |
+
"mobileFontWeight": 600,
|
4915 |
+
"mobileLineHeight": 1.5,
|
4916 |
+
"mobileLetterSpacing": 0
|
4917 |
+
},
|
4918 |
+
{
|
4919 |
+
"deletable": "off",
|
4920 |
+
"id": "button",
|
4921 |
+
"title": "Button",
|
4922 |
+
"fontFamily": "nunito",
|
4923 |
+
"fontFamilyType": "google",
|
4924 |
+
"fontSize": 15,
|
4925 |
+
"fontWeight": 700,
|
4926 |
+
"lineHeight": 1.6,
|
4927 |
+
"letterSpacing": 1,
|
4928 |
+
"tabletFontSize": 14,
|
4929 |
+
"tabletFontWeight": 700,
|
4930 |
+
"tabletLineHeight": 1.6,
|
4931 |
+
"tabletLetterSpacing": 1,
|
4932 |
+
"mobileFontSize": 14,
|
4933 |
+
"mobileFontWeight": 700,
|
4934 |
+
"mobileLineHeight": 1.6,
|
4935 |
+
"mobileLetterSpacing": 1
|
4936 |
+
}
|
4937 |
+
]
|
4938 |
+
},
|
4939 |
+
{
|
4940 |
+
"id": "zxpsijgmzwoaiyprcqztjwwjpraeizvtyibq",
|
4941 |
+
"title": "Oblivion",
|
4942 |
+
"colorPalette": [
|
4943 |
+
{ "id": "color1", "hex": "#5C823F" },
|
4944 |
+
{ "id": "color2", "hex": "#26232A" },
|
4945 |
+
{ "id": "color3", "hex": "#60B420" },
|
4946 |
+
{ "id": "color4", "hex": "#ECD7F2" },
|
4947 |
+
{ "id": "color5", "hex": "#9E47DA" },
|
4948 |
+
{ "id": "color6", "hex": "#EAF6E3" },
|
4949 |
+
{ "id": "color7", "hex": "#6F6D70" },
|
4950 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
4951 |
+
],
|
4952 |
+
"fontStyles": [
|
4953 |
+
{
|
4954 |
+
"deletable": "off",
|
4955 |
+
"id": "paragraph",
|
4956 |
+
"title": "Paragraph",
|
4957 |
+
"fontFamily": "palanquin",
|
4958 |
+
"fontFamilyType": "google",
|
4959 |
+
"fontSize": 16,
|
4960 |
+
"fontWeight": 400,
|
4961 |
+
"lineHeight": 1.9,
|
4962 |
+
"letterSpacing": 0,
|
4963 |
+
"tabletFontSize": 15,
|
4964 |
+
"tabletFontWeight": 400,
|
4965 |
+
"tabletLineHeight": 1.6,
|
4966 |
+
"tabletLetterSpacing": 0,
|
4967 |
+
"mobileFontSize": 15,
|
4968 |
+
"mobileFontWeight": 400,
|
4969 |
+
"mobileLineHeight": 1.6,
|
4970 |
+
"mobileLetterSpacing": 0
|
4971 |
+
},
|
4972 |
+
{
|
4973 |
+
"deletable": "off",
|
4974 |
+
"id": "subtitle",
|
4975 |
+
"title": "Subtitle",
|
4976 |
+
"fontFamily": "palanquin",
|
4977 |
+
"fontFamilyType": "google",
|
4978 |
+
"fontSize": 17,
|
4979 |
+
"fontWeight": 400,
|
4980 |
+
"lineHeight": 1.8,
|
4981 |
+
"letterSpacing": 0,
|
4982 |
+
"tabletFontSize": 17,
|
4983 |
+
"tabletFontWeight": 300,
|
4984 |
+
"tabletLineHeight": 1.5,
|
4985 |
+
"tabletLetterSpacing": 0,
|
4986 |
+
"mobileFontSize": 17,
|
4987 |
+
"mobileFontWeight": 300,
|
4988 |
+
"mobileLineHeight": 1.5,
|
4989 |
+
"mobileLetterSpacing": 0
|
4990 |
+
},
|
4991 |
+
{
|
4992 |
+
"deletable": "off",
|
4993 |
+
"id": "abovetitle",
|
4994 |
+
"title": "Above Title",
|
4995 |
+
"fontFamily": "palanquin",
|
4996 |
+
"fontFamilyType": "google",
|
4997 |
+
"fontSize": 13,
|
4998 |
+
"fontWeight": 700,
|
4999 |
+
"lineHeight": 1.5,
|
5000 |
+
"letterSpacing": 1.1,
|
5001 |
+
"tabletFontSize": 13,
|
5002 |
+
"tabletFontWeight": 600,
|
5003 |
+
"tabletLineHeight": 1.5,
|
5004 |
+
"tabletLetterSpacing": 1,
|
5005 |
+
"mobileFontSize": 13,
|
5006 |
+
"mobileFontWeight": 600,
|
5007 |
+
"mobileLineHeight": 1.5,
|
5008 |
+
"mobileLetterSpacing": 1
|
5009 |
+
},
|
5010 |
+
{
|
5011 |
+
"deletable": "off",
|
5012 |
+
"id": "heading1",
|
5013 |
+
"title": "Heading 1",
|
5014 |
+
"fontFamily": "palanquin_dark",
|
5015 |
+
"fontFamilyType": "google",
|
5016 |
+
"fontSize": 46,
|
5017 |
+
"fontWeight": 400,
|
5018 |
+
"lineHeight": 1.3,
|
5019 |
+
"letterSpacing": -1.5,
|
5020 |
+
"tabletFontSize": 40,
|
5021 |
+
"tabletFontWeight": 400,
|
5022 |
+
"tabletLineHeight": 1.3,
|
5023 |
+
"tabletLetterSpacing": -1,
|
5024 |
+
"mobileFontSize": 34,
|
5025 |
+
"mobileFontWeight": 400,
|
5026 |
+
"mobileLineHeight": 1.3,
|
5027 |
+
"mobileLetterSpacing": -1
|
5028 |
+
},
|
5029 |
+
{
|
5030 |
+
"deletable": "off",
|
5031 |
+
"id": "heading2",
|
5032 |
+
"title": "Heading 2",
|
5033 |
+
"fontFamily": "palanquin_dark",
|
5034 |
+
"fontFamilyType": "google",
|
5035 |
+
"fontSize": 36,
|
5036 |
+
"fontWeight": 400,
|
5037 |
+
"lineHeight": 1.4,
|
5038 |
+
"letterSpacing": -1,
|
5039 |
+
"tabletFontSize": 35,
|
5040 |
+
"tabletFontWeight": 400,
|
5041 |
+
"tabletLineHeight": 1.3,
|
5042 |
+
"tabletLetterSpacing": -0.5,
|
5043 |
+
"mobileFontSize": 29,
|
5044 |
+
"mobileFontWeight": 400,
|
5045 |
+
"mobileLineHeight": 1.3,
|
5046 |
+
"mobileLetterSpacing": -0.5
|
5047 |
+
},
|
5048 |
+
{
|
5049 |
+
"deletable": "off",
|
5050 |
+
"id": "heading3",
|
5051 |
+
"title": "Heading 3",
|
5052 |
+
"fontFamily": "palanquin_dark",
|
5053 |
+
"fontFamilyType": "google",
|
5054 |
+
"fontSize": 28,
|
5055 |
+
"fontWeight": 400,
|
5056 |
+
"lineHeight": 1.4,
|
5057 |
+
"letterSpacing": 0,
|
5058 |
+
"tabletFontSize": 27,
|
5059 |
+
"tabletFontWeight": 400,
|
5060 |
+
"tabletLineHeight": 1.3,
|
5061 |
+
"tabletLetterSpacing": 0,
|
5062 |
+
"mobileFontSize": 22,
|
5063 |
+
"mobileFontWeight": 400,
|
5064 |
+
"mobileLineHeight": 1.3,
|
5065 |
+
"mobileLetterSpacing": 0
|
5066 |
+
},
|
5067 |
+
{
|
5068 |
+
"deletable": "off",
|
5069 |
+
"id": "heading4",
|
5070 |
+
"title": "Heading 4",
|
5071 |
+
"fontFamily": "palanquin_dark",
|
5072 |
+
"fontFamilyType": "google",
|
5073 |
+
"fontSize": 22,
|
5074 |
+
"fontWeight": 400,
|
5075 |
+
"lineHeight": 1.5,
|
5076 |
+
"letterSpacing": 0,
|
5077 |
+
"tabletFontSize": 22,
|
5078 |
+
"tabletFontWeight": 400,
|
5079 |
+
"tabletLineHeight": 1.4,
|
5080 |
+
"tabletLetterSpacing": 0,
|
5081 |
+
"mobileFontSize": 21,
|
5082 |
+
"mobileFontWeight": 400,
|
5083 |
+
"mobileLineHeight": 1.4,
|
5084 |
+
"mobileLetterSpacing": 0
|
5085 |
+
},
|
5086 |
+
{
|
5087 |
+
"deletable": "off",
|
5088 |
+
"id": "heading5",
|
5089 |
+
"title": "Heading 5",
|
5090 |
+
"fontFamily": "palanquin_dark",
|
5091 |
+
"fontFamilyType": "google",
|
5092 |
+
"fontSize": 20,
|
5093 |
+
"fontWeight": 400,
|
5094 |
+
"lineHeight": 1.6,
|
5095 |
+
"letterSpacing": 0,
|
5096 |
+
"tabletFontSize": 19,
|
5097 |
+
"tabletFontWeight": 400,
|
5098 |
+
"tabletLineHeight": 1.5,
|
5099 |
+
"tabletLetterSpacing": 0,
|
5100 |
+
"mobileFontSize": 18,
|
5101 |
+
"mobileFontWeight": 400,
|
5102 |
+
"mobileLineHeight": 1.5,
|
5103 |
+
"mobileLetterSpacing": 0
|
5104 |
+
},
|
5105 |
+
{
|
5106 |
+
"deletable": "off",
|
5107 |
+
"id": "heading6",
|
5108 |
+
"title": "Heading 6",
|
5109 |
+
"fontFamily": "palanquin",
|
5110 |
+
"fontFamilyType": "google",
|
5111 |
+
"fontSize": 16,
|
5112 |
+
"fontWeight": 700,
|
5113 |
+
"lineHeight": 1.5,
|
5114 |
+
"letterSpacing": 0,
|
5115 |
+
"tabletFontSize": 16,
|
5116 |
+
"tabletFontWeight": 700,
|
5117 |
+
"tabletLineHeight": 1.5,
|
5118 |
+
"tabletLetterSpacing": 0,
|
5119 |
+
"mobileFontSize": 16,
|
5120 |
+
"mobileFontWeight": 700,
|
5121 |
+
"mobileLineHeight": 1.5,
|
5122 |
+
"mobileLetterSpacing": 0
|
5123 |
+
},
|
5124 |
+
{
|
5125 |
+
"deletable": "off",
|
5126 |
+
"id": "button",
|
5127 |
+
"title": "Button",
|
5128 |
+
"fontFamily": "palanquin",
|
5129 |
+
"fontFamilyType": "google",
|
5130 |
+
"fontSize": 15,
|
5131 |
+
"fontWeight": 700,
|
5132 |
+
"lineHeight": 1.6,
|
5133 |
+
"letterSpacing": 0.5,
|
5134 |
+
"tabletFontSize": 15,
|
5135 |
+
"tabletFontWeight": 700,
|
5136 |
+
"tabletLineHeight": 1.6,
|
5137 |
+
"tabletLetterSpacing": 0.5,
|
5138 |
+
"mobileFontSize": 15,
|
5139 |
+
"mobileFontWeight": 700,
|
5140 |
+
"mobileLineHeight": 1.6,
|
5141 |
+
"mobileLetterSpacing": 0.5
|
5142 |
+
}
|
5143 |
+
]
|
5144 |
+
},
|
5145 |
+
{
|
5146 |
+
"id": "mnidlkbkoxwoaofhmdrlgawecfhbpxbtgies",
|
5147 |
+
"title": "Droid",
|
5148 |
+
"colorPalette": [
|
5149 |
+
{ "id": "color1", "hex": "#8E53A7" },
|
5150 |
+
{ "id": "color2", "hex": "#242643" },
|
5151 |
+
{ "id": "color3", "hex": "#4157CB" },
|
5152 |
+
{ "id": "color4", "hex": "#F8A392" },
|
5153 |
+
{ "id": "color5", "hex": "#FFE0DA" },
|
5154 |
+
{ "id": "color6", "hex": "#F3EEF0" },
|
5155 |
+
{ "id": "color7", "hex": "#5D5E64" },
|
5156 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
5157 |
+
],
|
5158 |
+
"fontStyles": [
|
5159 |
+
{
|
5160 |
+
"deletable": "off",
|
5161 |
+
"id": "paragraph",
|
5162 |
+
"title": "Paragraph",
|
5163 |
+
"fontFamily": "roboto",
|
5164 |
+
"fontFamilyType": "google",
|
5165 |
+
"fontSize": 16,
|
5166 |
+
"fontWeight": 400,
|
5167 |
+
"lineHeight": 1.9,
|
5168 |
+
"letterSpacing": 0,
|
5169 |
+
"tabletFontSize": 15,
|
5170 |
+
"tabletFontWeight": 400,
|
5171 |
+
"tabletLineHeight": 1.6,
|
5172 |
+
"tabletLetterSpacing": 0,
|
5173 |
+
"mobileFontSize": 15,
|
5174 |
+
"mobileFontWeight": 400,
|
5175 |
+
"mobileLineHeight": 1.6,
|
5176 |
+
"mobileLetterSpacing": 0
|
5177 |
+
},
|
5178 |
+
{
|
5179 |
+
"deletable": "off",
|
5180 |
+
"id": "subtitle",
|
5181 |
+
"title": "Subtitle",
|
5182 |
+
"fontFamily": "roboto",
|
5183 |
+
"fontFamilyType": "google",
|
5184 |
+
"fontSize": 17,
|
5185 |
+
"fontWeight": 400,
|
5186 |
+
"lineHeight": 1.8,
|
5187 |
+
"letterSpacing": 0,
|
5188 |
+
"tabletFontSize": 17,
|
5189 |
+
"tabletFontWeight": 300,
|
5190 |
+
"tabletLineHeight": 1.5,
|
5191 |
+
"tabletLetterSpacing": 0,
|
5192 |
+
"mobileFontSize": 17,
|
5193 |
+
"mobileFontWeight": 300,
|
5194 |
+
"mobileLineHeight": 1.5,
|
5195 |
+
"mobileLetterSpacing": 0
|
5196 |
+
},
|
5197 |
+
{
|
5198 |
+
"deletable": "off",
|
5199 |
+
"id": "abovetitle",
|
5200 |
+
"title": "Above Title",
|
5201 |
+
"fontFamily": "roboto",
|
5202 |
+
"fontFamilyType": "google",
|
5203 |
+
"fontSize": 13,
|
5204 |
+
"fontWeight": 700,
|
5205 |
+
"lineHeight": 1.5,
|
5206 |
+
"letterSpacing": 1.1,
|
5207 |
+
"tabletFontSize": 13,
|
5208 |
+
"tabletFontWeight": 600,
|
5209 |
+
"tabletLineHeight": 1.5,
|
5210 |
+
"tabletLetterSpacing": 1,
|
5211 |
+
"mobileFontSize": 13,
|
5212 |
+
"mobileFontWeight": 600,
|
5213 |
+
"mobileLineHeight": 1.5,
|
5214 |
+
"mobileLetterSpacing": 1
|
5215 |
+
},
|
5216 |
+
{
|
5217 |
+
"deletable": "off",
|
5218 |
+
"id": "heading1",
|
5219 |
+
"title": "Heading 1",
|
5220 |
+
"fontFamily": "oswald",
|
5221 |
+
"fontFamilyType": "google",
|
5222 |
+
"fontSize": 46,
|
5223 |
+
"fontWeight": 400,
|
5224 |
+
"lineHeight": 1.3,
|
5225 |
+
"letterSpacing": -1.5,
|
5226 |
+
"tabletFontSize": 40,
|
5227 |
+
"tabletFontWeight": 400,
|
5228 |
+
"tabletLineHeight": 1.3,
|
5229 |
+
"tabletLetterSpacing": -1,
|
5230 |
+
"mobileFontSize": 34,
|
5231 |
+
"mobileFontWeight": 400,
|
5232 |
+
"mobileLineHeight": 1.3,
|
5233 |
+
"mobileLetterSpacing": -1
|
5234 |
+
},
|
5235 |
+
{
|
5236 |
+
"deletable": "off",
|
5237 |
+
"id": "heading2",
|
5238 |
+
"title": "Heading 2",
|
5239 |
+
"fontFamily": "oswald",
|
5240 |
+
"fontFamilyType": "google",
|
5241 |
+
"fontSize": 36,
|
5242 |
+
"fontWeight": 400,
|
5243 |
+
"lineHeight": 1.4,
|
5244 |
+
"letterSpacing": -1,
|
5245 |
+
"tabletFontSize": 35,
|
5246 |
+
"tabletFontWeight": 400,
|
5247 |
+
"tabletLineHeight": 1.3,
|
5248 |
+
"tabletLetterSpacing": -0.5,
|
5249 |
+
"mobileFontSize": 29,
|
5250 |
+
"mobileFontWeight": 400,
|
5251 |
+
"mobileLineHeight": 1.3,
|
5252 |
+
"mobileLetterSpacing": -0.5
|
5253 |
+
},
|
5254 |
+
{
|
5255 |
+
"deletable": "off",
|
5256 |
+
"id": "heading3",
|
5257 |
+
"title": "Heading 3",
|
5258 |
+
"fontFamily": "oswald",
|
5259 |
+
"fontFamilyType": "google",
|
5260 |
+
"fontSize": 28,
|
5261 |
+
"fontWeight": 400,
|
5262 |
+
"lineHeight": 1.4,
|
5263 |
+
"letterSpacing": 0,
|
5264 |
+
"tabletFontSize": 27,
|
5265 |
+
"tabletFontWeight": 400,
|
5266 |
+
"tabletLineHeight": 1.3,
|
5267 |
+
"tabletLetterSpacing": 0,
|
5268 |
+
"mobileFontSize": 22,
|
5269 |
+
"mobileFontWeight": 400,
|
5270 |
+
"mobileLineHeight": 1.3,
|
5271 |
+
"mobileLetterSpacing": 0
|
5272 |
+
},
|
5273 |
+
{
|
5274 |
+
"deletable": "off",
|
5275 |
+
"id": "heading4",
|
5276 |
+
"title": "Heading 4",
|
5277 |
+
"fontFamily": "roboto",
|
5278 |
+
"fontFamilyType": "google",
|
5279 |
+
"fontSize": 22,
|
5280 |
+
"fontWeight": 400,
|
5281 |
+
"lineHeight": 1.5,
|
5282 |
+
"letterSpacing": 0,
|
5283 |
+
"tabletFontSize": 22,
|
5284 |
+
"tabletFontWeight": 400,
|
5285 |
+
"tabletLineHeight": 1.4,
|
5286 |
+
"tabletLetterSpacing": 0,
|
5287 |
+
"mobileFontSize": 21,
|
5288 |
+
"mobileFontWeight": 400,
|
5289 |
+
"mobileLineHeight": 1.4,
|
5290 |
+
"mobileLetterSpacing": 0
|
5291 |
+
},
|
5292 |
+
{
|
5293 |
+
"deletable": "off",
|
5294 |
+
"id": "heading5",
|
5295 |
+
"title": "Heading 5",
|
5296 |
+
"fontFamily": "roboto",
|
5297 |
+
"fontFamilyType": "google",
|
5298 |
+
"fontSize": 20,
|
5299 |
+
"fontWeight": 400,
|
5300 |
+
"lineHeight": 1.6,
|
5301 |
+
"letterSpacing": 0,
|
5302 |
+
"tabletFontSize": 19,
|
5303 |
+
"tabletFontWeight": 400,
|
5304 |
+
"tabletLineHeight": 1.5,
|
5305 |
+
"tabletLetterSpacing": 0,
|
5306 |
+
"mobileFontSize": 18,
|
5307 |
+
"mobileFontWeight": 400,
|
5308 |
+
"mobileLineHeight": 1.5,
|
5309 |
+
"mobileLetterSpacing": 0
|
5310 |
+
},
|
5311 |
+
{
|
5312 |
+
"deletable": "off",
|
5313 |
+
"id": "heading6",
|
5314 |
+
"title": "Heading 6",
|
5315 |
+
"fontFamily": "roboto",
|
5316 |
+
"fontFamilyType": "google",
|
5317 |
+
"fontSize": 16,
|
5318 |
+
"fontWeight": 400,
|
5319 |
+
"lineHeight": 1.5,
|
5320 |
+
"letterSpacing": 0,
|
5321 |
+
"tabletFontSize": 16,
|
5322 |
+
"tabletFontWeight": 400,
|
5323 |
+
"tabletLineHeight": 1.5,
|
5324 |
+
"tabletLetterSpacing": 0,
|
5325 |
+
"mobileFontSize": 16,
|
5326 |
+
"mobileFontWeight": 400,
|
5327 |
+
"mobileLineHeight": 1.5,
|
5328 |
+
"mobileLetterSpacing": 0
|
5329 |
+
},
|
5330 |
+
{
|
5331 |
+
"deletable": "off",
|
5332 |
+
"id": "button",
|
5333 |
+
"title": "Button",
|
5334 |
+
"fontFamily": "roboto",
|
5335 |
+
"fontFamilyType": "google",
|
5336 |
+
"fontSize": 15,
|
5337 |
+
"fontWeight": 700,
|
5338 |
+
"lineHeight": 1.6,
|
5339 |
+
"letterSpacing": 1,
|
5340 |
+
"tabletFontSize": 13,
|
5341 |
+
"tabletFontWeight": 600,
|
5342 |
+
"tabletLineHeight": 1.6,
|
5343 |
+
"tabletLetterSpacing": 1,
|
5344 |
+
"mobileFontSize": 13,
|
5345 |
+
"mobileFontWeight": 600,
|
5346 |
+
"mobileLineHeight": 1.6,
|
5347 |
+
"mobileLetterSpacing": 1
|
5348 |
+
}
|
5349 |
+
]
|
5350 |
+
},
|
5351 |
+
{
|
5352 |
+
"id": "xjgeewgibkkurlxnmtsozeucbcpwixyncglc",
|
5353 |
+
"title": "Exquisite",
|
5354 |
+
"colorPalette": [
|
5355 |
+
{ "id": "color1", "hex": "#0D1B71" },
|
5356 |
+
{ "id": "color2", "hex": "#1D1F3A" },
|
5357 |
+
{ "id": "color3", "hex": "#C63160" },
|
5358 |
+
{ "id": "color4", "hex": "#FCD1CE" },
|
5359 |
+
{ "id": "color5", "hex": "#9DE1EC" },
|
5360 |
+
{ "id": "color6", "hex": "#EFF1FA" },
|
5361 |
+
{ "id": "color7", "hex": "#575864" },
|
5362 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
5363 |
+
],
|
5364 |
+
"fontStyles": [
|
5365 |
+
{
|
5366 |
+
"deletable": "off",
|
5367 |
+
"id": "paragraph",
|
5368 |
+
"title": "Paragraph",
|
5369 |
+
"fontFamily": "oxygen",
|
5370 |
+
"fontFamilyType": "google",
|
5371 |
+
"fontSize": 16,
|
5372 |
+
"fontWeight": 400,
|
5373 |
+
"lineHeight": 1.9,
|
5374 |
+
"letterSpacing": 0,
|
5375 |
+
"tabletFontSize": 15,
|
5376 |
+
"tabletFontWeight": 400,
|
5377 |
+
"tabletLineHeight": 1.6,
|
5378 |
+
"tabletLetterSpacing": 0,
|
5379 |
+
"mobileFontSize": 15,
|
5380 |
+
"mobileFontWeight": 400,
|
5381 |
+
"mobileLineHeight": 1.6,
|
5382 |
+
"mobileLetterSpacing": 0
|
5383 |
+
},
|
5384 |
+
{
|
5385 |
+
"deletable": "off",
|
5386 |
+
"id": "subtitle",
|
5387 |
+
"title": "Subtitle",
|
5388 |
+
"fontFamily": "oxygen",
|
5389 |
+
"fontFamilyType": "google",
|
5390 |
+
"fontSize": 17,
|
5391 |
+
"fontWeight": 400,
|
5392 |
+
"lineHeight": 1.8,
|
5393 |
+
"letterSpacing": 0,
|
5394 |
+
"tabletFontSize": 17,
|
5395 |
+
"tabletFontWeight": 300,
|
5396 |
+
"tabletLineHeight": 1.5,
|
5397 |
+
"tabletLetterSpacing": 0,
|
5398 |
+
"mobileFontSize": 17,
|
5399 |
+
"mobileFontWeight": 300,
|
5400 |
+
"mobileLineHeight": 1.5,
|
5401 |
+
"mobileLetterSpacing": 0
|
5402 |
+
},
|
5403 |
+
{
|
5404 |
+
"deletable": "off",
|
5405 |
+
"id": "abovetitle",
|
5406 |
+
"title": "Above Title",
|
5407 |
+
"fontFamily": "oxygen",
|
5408 |
+
"fontFamilyType": "google",
|
5409 |
+
"fontSize": 13,
|
5410 |
+
"fontWeight": 700,
|
5411 |
+
"lineHeight": 1.5,
|
5412 |
+
"letterSpacing": 1.1,
|
5413 |
+
"tabletFontSize": 13,
|
5414 |
+
"tabletFontWeight": 600,
|
5415 |
+
"tabletLineHeight": 1.5,
|
5416 |
+
"tabletLetterSpacing": 1,
|
5417 |
+
"mobileFontSize": 13,
|
5418 |
+
"mobileFontWeight": 600,
|
5419 |
+
"mobileLineHeight": 1.5,
|
5420 |
+
"mobileLetterSpacing": 1
|
5421 |
+
},
|
5422 |
+
{
|
5423 |
+
"deletable": "off",
|
5424 |
+
"id": "heading1",
|
5425 |
+
"title": "Heading 1",
|
5426 |
+
"fontFamily": "playfair_display",
|
5427 |
+
"fontFamilyType": "google",
|
5428 |
+
"fontSize": 52,
|
5429 |
+
"fontWeight": 400,
|
5430 |
+
"lineHeight": 1.3,
|
5431 |
+
"letterSpacing": -1.5,
|
5432 |
+
"tabletFontSize": 46,
|
5433 |
+
"tabletFontWeight": 400,
|
5434 |
+
"tabletLineHeight": 1.3,
|
5435 |
+
"tabletLetterSpacing": -1,
|
5436 |
+
"mobileFontSize": 40,
|
5437 |
+
"mobileFontWeight": 400,
|
5438 |
+
"mobileLineHeight": 1.3,
|
5439 |
+
"mobileLetterSpacing": -1
|
5440 |
+
},
|
5441 |
+
{
|
5442 |
+
"deletable": "off",
|
5443 |
+
"id": "heading2",
|
5444 |
+
"title": "Heading 2",
|
5445 |
+
"fontFamily": "playfair_display",
|
5446 |
+
"fontFamilyType": "google",
|
5447 |
+
"fontSize": 42,
|
5448 |
+
"fontWeight": 400,
|
5449 |
+
"lineHeight": 1.4,
|
5450 |
+
"letterSpacing": -1,
|
5451 |
+
"tabletFontSize": 35,
|
5452 |
+
"tabletFontWeight": 400,
|
5453 |
+
"tabletLineHeight": 1.3,
|
5454 |
+
"tabletLetterSpacing": -0.5,
|
5455 |
+
"mobileFontSize": 29,
|
5456 |
+
"mobileFontWeight": 400,
|
5457 |
+
"mobileLineHeight": 1.3,
|
5458 |
+
"mobileLetterSpacing": -0.5
|
5459 |
+
},
|
5460 |
+
{
|
5461 |
+
"deletable": "off",
|
5462 |
+
"id": "heading3",
|
5463 |
+
"title": "Heading 3",
|
5464 |
+
"fontFamily": "playfair_display",
|
5465 |
+
"fontFamilyType": "google",
|
5466 |
+
"fontSize": 29,
|
5467 |
+
"fontWeight": 400,
|
5468 |
+
"lineHeight": 1.4,
|
5469 |
+
"letterSpacing": 0,
|
5470 |
+
"tabletFontSize": 26,
|
5471 |
+
"tabletFontWeight": 400,
|
5472 |
+
"tabletLineHeight": 1.3,
|
5473 |
+
"tabletLetterSpacing": 0,
|
5474 |
+
"mobileFontSize": 23,
|
5475 |
+
"mobileFontWeight": 400,
|
5476 |
+
"mobileLineHeight": 1.3,
|
5477 |
+
"mobileLetterSpacing": 0
|
5478 |
+
},
|
5479 |
+
{
|
5480 |
+
"deletable": "off",
|
5481 |
+
"id": "heading4",
|
5482 |
+
"title": "Heading 4",
|
5483 |
+
"fontFamily": "oxygen",
|
5484 |
+
"fontFamilyType": "google",
|
5485 |
+
"fontSize": 22,
|
5486 |
+
"fontWeight": 700,
|
5487 |
+
"lineHeight": 1.5,
|
5488 |
+
"letterSpacing": 0,
|
5489 |
+
"tabletFontSize": 22,
|
5490 |
+
"tabletFontWeight": 600,
|
5491 |
+
"tabletLineHeight": 1.4,
|
5492 |
+
"tabletLetterSpacing": 0,
|
5493 |
+
"mobileFontSize": 21,
|
5494 |
+
"mobileFontWeight": 600,
|
5495 |
+
"mobileLineHeight": 1.4,
|
5496 |
+
"mobileLetterSpacing": 0
|
5497 |
+
},
|
5498 |
+
{
|
5499 |
+
"deletable": "off",
|
5500 |
+
"id": "heading5",
|
5501 |
+
"title": "Heading 5",
|
5502 |
+
"fontFamily": "oxygen",
|
5503 |
+
"fontFamilyType": "google",
|
5504 |
+
"fontSize": 20,
|
5505 |
+
"fontWeight": 700,
|
5506 |
+
"lineHeight": 1.6,
|
5507 |
+
"letterSpacing": 0,
|
5508 |
+
"tabletFontSize": 19,
|
5509 |
+
"tabletFontWeight": 600,
|
5510 |
+
"tabletLineHeight": 1.5,
|
5511 |
+
"tabletLetterSpacing": 0,
|
5512 |
+
"mobileFontSize": 18,
|
5513 |
+
"mobileFontWeight": 600,
|
5514 |
+
"mobileLineHeight": 1.5,
|
5515 |
+
"mobileLetterSpacing": 0
|
5516 |
+
},
|
5517 |
+
{
|
5518 |
+
"deletable": "off",
|
5519 |
+
"id": "heading6",
|
5520 |
+
"title": "Heading 6",
|
5521 |
+
"fontFamily": "oxygen",
|
5522 |
+
"fontFamilyType": "google",
|
5523 |
+
"fontSize": 16,
|
5524 |
+
"fontWeight": 400,
|
5525 |
+
"lineHeight": 1.5,
|
5526 |
+
"letterSpacing": 0,
|
5527 |
+
"tabletFontSize": 16,
|
5528 |
+
"tabletFontWeight": 400,
|
5529 |
+
"tabletLineHeight": 1.5,
|
5530 |
+
"tabletLetterSpacing": 0,
|
5531 |
+
"mobileFontSize": 16,
|
5532 |
+
"mobileFontWeight": 400,
|
5533 |
+
"mobileLineHeight": 1.5,
|
5534 |
+
"mobileLetterSpacing": 0
|
5535 |
+
},
|
5536 |
+
{
|
5537 |
+
"deletable": "off",
|
5538 |
+
"id": "button",
|
5539 |
+
"title": "Button",
|
5540 |
+
"fontFamily": "oxygen",
|
5541 |
+
"fontFamilyType": "google",
|
5542 |
+
"fontSize": 15,
|
5543 |
+
"fontWeight": 700,
|
5544 |
+
"lineHeight": 1.6,
|
5545 |
+
"letterSpacing": 1,
|
5546 |
+
"tabletFontSize": 13,
|
5547 |
+
"tabletFontWeight": 600,
|
5548 |
+
"tabletLineHeight": 1.6,
|
5549 |
+
"tabletLetterSpacing": 0,
|
5550 |
+
"mobileFontSize": 13,
|
5551 |
+
"mobileFontWeight": 600,
|
5552 |
+
"mobileLineHeight": 1.6,
|
5553 |
+
"mobileLetterSpacing": 0
|
5554 |
+
}
|
5555 |
+
]
|
5556 |
+
},
|
5557 |
+
{
|
5558 |
+
"id": "vysgrrxdqidobgfkzbvkkeaskxzmqpmadwrw",
|
5559 |
+
"title": "Chubby",
|
5560 |
+
"colorPalette": [
|
5561 |
+
{ "id": "color1", "hex": "#42497D" },
|
5562 |
+
{ "id": "color2", "hex": "#181A34" },
|
5563 |
+
{ "id": "color3", "hex": "#4853BB" },
|
5564 |
+
{ "id": "color4", "hex": "#98D8F3" },
|
5565 |
+
{ "id": "color5", "hex": "#D2D6FD" },
|
5566 |
+
{ "id": "color6", "hex": "#EDF4F5" },
|
5567 |
+
{ "id": "color7", "hex": "#80818D" },
|
5568 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
5569 |
+
],
|
5570 |
+
"fontStyles": [
|
5571 |
+
{
|
5572 |
+
"deletable": "off",
|
5573 |
+
"id": "paragraph",
|
5574 |
+
"title": "Paragraph",
|
5575 |
+
"fontFamily": "fira_sans",
|
5576 |
+
"fontFamilyType": "google",
|
5577 |
+
"fontSize": 16,
|
5578 |
+
"fontWeight": 400,
|
5579 |
+
"lineHeight": 1.9,
|
5580 |
+
"letterSpacing": 0,
|
5581 |
+
"tabletFontSize": 15,
|
5582 |
+
"tabletFontWeight": 400,
|
5583 |
+
"tabletLineHeight": 1.6,
|
5584 |
+
"tabletLetterSpacing": 0,
|
5585 |
+
"mobileFontSize": 15,
|
5586 |
+
"mobileFontWeight": 400,
|
5587 |
+
"mobileLineHeight": 1.6,
|
5588 |
+
"mobileLetterSpacing": 0
|
5589 |
+
},
|
5590 |
+
{
|
5591 |
+
"deletable": "off",
|
5592 |
+
"id": "subtitle",
|
5593 |
+
"title": "Subtitle",
|
5594 |
+
"fontFamily": "fira_sans",
|
5595 |
+
"fontFamilyType": "google",
|
5596 |
+
"fontSize": 17,
|
5597 |
+
"fontWeight": 400,
|
5598 |
+
"lineHeight": 1.8,
|
5599 |
+
"letterSpacing": 0,
|
5600 |
+
"tabletFontSize": 17,
|
5601 |
+
"tabletFontWeight": 300,
|
5602 |
+
"tabletLineHeight": 1.5,
|
5603 |
+
"tabletLetterSpacing": 0,
|
5604 |
+
"mobileFontSize": 17,
|
5605 |
+
"mobileFontWeight": 300,
|
5606 |
+
"mobileLineHeight": 1.5,
|
5607 |
+
"mobileLetterSpacing": 0
|
5608 |
+
},
|
5609 |
+
{
|
5610 |
+
"deletable": "off",
|
5611 |
+
"id": "abovetitle",
|
5612 |
+
"title": "Above Title",
|
5613 |
+
"fontFamily": "fira_sans",
|
5614 |
+
"fontFamilyType": "google",
|
5615 |
+
"fontSize": 13,
|
5616 |
+
"fontWeight": 700,
|
5617 |
+
"lineHeight": 1.5,
|
5618 |
+
"letterSpacing": 1.1,
|
5619 |
+
"tabletFontSize": 13,
|
5620 |
+
"tabletFontWeight": 600,
|
5621 |
+
"tabletLineHeight": 1.5,
|
5622 |
+
"tabletLetterSpacing": 1,
|
5623 |
+
"mobileFontSize": 13,
|
5624 |
+
"mobileFontWeight": 600,
|
5625 |
+
"mobileLineHeight": 1.5,
|
5626 |
+
"mobileLetterSpacing": 1
|
5627 |
+
},
|
5628 |
+
{
|
5629 |
+
"deletable": "off",
|
5630 |
+
"id": "heading1",
|
5631 |
+
"title": "Heading 1",
|
5632 |
+
"fontFamily": "abril_fatface",
|
5633 |
+
"fontFamilyType": "google",
|
5634 |
+
"fontSize": 52,
|
5635 |
+
"fontWeight": 400,
|
5636 |
+
"lineHeight": 1.3,
|
5637 |
+
"letterSpacing": -1.5,
|
5638 |
+
"tabletFontSize": 46,
|
5639 |
+
"tabletFontWeight": 400,
|
5640 |
+
"tabletLineHeight": 1.3,
|
5641 |
+
"tabletLetterSpacing": -1,
|
5642 |
+
"mobileFontSize": 40,
|
5643 |
+
"mobileFontWeight": 400,
|
5644 |
+
"mobileLineHeight": 1.3,
|
5645 |
+
"mobileLetterSpacing": -1
|
5646 |
+
},
|
5647 |
+
{
|
5648 |
+
"deletable": "off",
|
5649 |
+
"id": "heading2",
|
5650 |
+
"title": "Heading 2",
|
5651 |
+
"fontFamily": "abril_fatface",
|
5652 |
+
"fontFamilyType": "google",
|
5653 |
+
"fontSize": 42,
|
5654 |
+
"fontWeight": 400,
|
5655 |
+
"lineHeight": 1.4,
|
5656 |
+
"letterSpacing": -1,
|
5657 |
+
"tabletFontSize": 35,
|
5658 |
+
"tabletFontWeight": 400,
|
5659 |
+
"tabletLineHeight": 1.3,
|
5660 |
+
"tabletLetterSpacing": -0.5,
|
5661 |
+
"mobileFontSize": 29,
|
5662 |
+
"mobileFontWeight": 400,
|
5663 |
+
"mobileLineHeight": 1.3,
|
5664 |
+
"mobileLetterSpacing": -0.5
|
5665 |
+
},
|
5666 |
+
{
|
5667 |
+
"deletable": "off",
|
5668 |
+
"id": "heading3",
|
5669 |
+
"title": "Heading 3",
|
5670 |
+
"fontFamily": "abril_fatface",
|
5671 |
+
"fontFamilyType": "google",
|
5672 |
+
"fontSize": 32,
|
5673 |
+
"fontWeight": 400,
|
5674 |
+
"lineHeight": 1.4,
|
5675 |
+
"letterSpacing": 0,
|
5676 |
+
"tabletFontSize": 27,
|
5677 |
+
"tabletFontWeight": 400,
|
5678 |
+
"tabletLineHeight": 1.3,
|
5679 |
+
"tabletLetterSpacing": 0,
|
5680 |
+
"mobileFontSize": 22,
|
5681 |
+
"mobileFontWeight": 400,
|
5682 |
+
"mobileLineHeight": 1.3,
|
5683 |
+
"mobileLetterSpacing": 0
|
5684 |
+
},
|
5685 |
+
{
|
5686 |
+
"deletable": "off",
|
5687 |
+
"id": "heading4",
|
5688 |
+
"title": "Heading 4",
|
5689 |
+
"fontFamily": "fira_sans",
|
5690 |
+
"fontFamilyType": "google",
|
5691 |
+
"fontSize": 22,
|
5692 |
+
"fontWeight": 700,
|
5693 |
+
"lineHeight": 1.5,
|
5694 |
+
"letterSpacing": 0,
|
5695 |
+
"tabletFontSize": 22,
|
5696 |
+
"tabletFontWeight": 400,
|
5697 |
+
"tabletLineHeight": 1.4,
|
5698 |
+
"tabletLetterSpacing": 0,
|
5699 |
+
"mobileFontSize": 21,
|
5700 |
+
"mobileFontWeight": 400,
|
5701 |
+
"mobileLineHeight": 1.4,
|
5702 |
+
"mobileLetterSpacing": 0
|
5703 |
+
},
|
5704 |
+
{
|
5705 |
+
"deletable": "off",
|
5706 |
+
"id": "heading5",
|
5707 |
+
"title": "Heading 5",
|
5708 |
+
"fontFamily": "fira_sans",
|
5709 |
+
"fontFamilyType": "google",
|
5710 |
+
"fontSize": 20,
|
5711 |
+
"fontWeight": 700,
|
5712 |
+
"lineHeight": 1.6,
|
5713 |
+
"letterSpacing": 0,
|
5714 |
+
"tabletFontSize": 19,
|
5715 |
+
"tabletFontWeight": 600,
|
5716 |
+
"tabletLineHeight": 1.5,
|
5717 |
+
"tabletLetterSpacing": 0,
|
5718 |
+
"mobileFontSize": 18,
|
5719 |
+
"mobileFontWeight": 600,
|
5720 |
+
"mobileLineHeight": 1.5,
|
5721 |
+
"mobileLetterSpacing": 0
|
5722 |
+
},
|
5723 |
+
{
|
5724 |
+
"deletable": "off",
|
5725 |
+
"id": "heading6",
|
5726 |
+
"title": "Heading 6",
|
5727 |
+
"fontFamily": "fira_sans",
|
5728 |
+
"fontFamilyType": "google",
|
5729 |
+
"fontSize": 16,
|
5730 |
+
"fontWeight": 400,
|
5731 |
+
"lineHeight": 1.5,
|
5732 |
+
"letterSpacing": 0,
|
5733 |
+
"tabletFontSize": 16,
|
5734 |
+
"tabletFontWeight": 400,
|
5735 |
+
"tabletLineHeight": 1.5,
|
5736 |
+
"tabletLetterSpacing": 0,
|
5737 |
+
"mobileFontSize": 16,
|
5738 |
+
"mobileFontWeight": 400,
|
5739 |
+
"mobileLineHeight": 1.5,
|
5740 |
+
"mobileLetterSpacing": 0
|
5741 |
+
},
|
5742 |
+
{
|
5743 |
+
"deletable": "off",
|
5744 |
+
"id": "button",
|
5745 |
+
"title": "Button",
|
5746 |
+
"fontFamily": "fira_sans",
|
5747 |
+
"fontFamilyType": "google",
|
5748 |
+
"fontSize": 15,
|
5749 |
+
"fontWeight": 700,
|
5750 |
+
"lineHeight": 1.6,
|
5751 |
+
"letterSpacing": 1,
|
5752 |
+
"tabletFontSize": 13,
|
5753 |
+
"tabletFontWeight": 600,
|
5754 |
+
"tabletLineHeight": 1.6,
|
5755 |
+
"tabletLetterSpacing": 1,
|
5756 |
+
"mobileFontSize": 13,
|
5757 |
+
"mobileFontWeight": 600,
|
5758 |
+
"mobileLineHeight": 1.6,
|
5759 |
+
"mobileLetterSpacing": 1
|
5760 |
+
}
|
5761 |
+
]
|
5762 |
+
},
|
5763 |
+
{
|
5764 |
+
"id": "htbprlrkzfekfscuwidkwmdomcfrnvgoakws",
|
5765 |
+
"title": "Samurai",
|
5766 |
+
"colorPalette": [
|
5767 |
+
{ "id": "color1", "hex": "#C19F80" },
|
5768 |
+
{ "id": "color2", "hex": "#0C2117" },
|
5769 |
+
{ "id": "color3", "hex": "#E46931" },
|
5770 |
+
{ "id": "color4", "hex": "#E3FCBF" },
|
5771 |
+
{ "id": "color5", "hex": "#CEC238" },
|
5772 |
+
{ "id": "color6", "hex": "#F5EFDF" },
|
5773 |
+
{ "id": "color7", "hex": "#5C615E" },
|
5774 |
+
{ "id": "color8", "hex": "#FFFFFF" }
|
5775 |
+
],
|
5776 |
+
"fontStyles": [
|
5777 |
+
{
|
5778 |
+
"deletable": "off",
|
5779 |
+
"id": "paragraph",
|
5780 |
+
"title": "Paragraph",
|
5781 |
+
"fontFamily": "comfortaa",
|
5782 |
+
"fontFamilyType": "google",
|
5783 |
+
"fontSize": 16,
|
5784 |
+
"fontWeight": 400,
|
5785 |
+
"lineHeight": 1.9,
|
5786 |
+
"letterSpacing": 0,
|
5787 |
+
"tabletFontSize": 15,
|
5788 |
+
"tabletFontWeight": 400,
|
5789 |
+
"tabletLineHeight": 1.6,
|
5790 |
+
"tabletLetterSpacing": 0,
|
5791 |
+
"mobileFontSize": 15,
|
5792 |
+
"mobileFontWeight": 400,
|
5793 |
+
"mobileLineHeight": 1.6,
|
5794 |
+
"mobileLetterSpacing": 0
|
5795 |
+
},
|
5796 |
+
{
|
5797 |
+
"deletable": "off",
|
5798 |
+
"id": "subtitle",
|
5799 |
+
"title": "Subtitle",
|
5800 |
+
"fontFamily": "comfortaa",
|
5801 |
+
"fontFamilyType": "google",
|
5802 |
+
"fontSize": 17,
|
5803 |
+
"fontWeight": 400,
|
5804 |
+
"lineHeight": 1.8,
|
5805 |
+
"letterSpacing": 0,
|
5806 |
+
"tabletFontSize": 17,
|
5807 |
+
"tabletFontWeight": 300,
|
5808 |
+
"tabletLineHeight": 1.5,
|
5809 |
+
"tabletLetterSpacing": 0,
|
5810 |
+
"mobileFontSize": 17,
|
5811 |
+
"mobileFontWeight": 300,
|
5812 |
+
"mobileLineHeight": 1.5,
|
5813 |
+
"mobileLetterSpacing": 0
|
5814 |
+
},
|
5815 |
+
{
|
5816 |
+
"deletable": "off",
|
5817 |
+
"id": "abovetitle",
|
5818 |
+
"title": "Above Title",
|
5819 |
+
"fontFamily": "comfortaa",
|
5820 |
+
"fontFamilyType": "google",
|
5821 |
+
"fontSize": 13,
|
5822 |
+
"fontWeight": 700,
|
5823 |
+
"lineHeight": 1.5,
|
5824 |
+
"letterSpacing": 1.1,
|
5825 |
+
"tabletFontSize": 13,
|
5826 |
+
"tabletFontWeight": 600,
|
5827 |
+
"tabletLineHeight": 1.5,
|
5828 |
+
"tabletLetterSpacing": 1,
|
5829 |
+
"mobileFontSize": 13,
|
5830 |
+
"mobileFontWeight": 600,
|
5831 |
+
"mobileLineHeight": 1.5,
|
5832 |
+
"mobileLetterSpacing": 1
|
5833 |
+
},
|
5834 |
+
{
|
5835 |
+
"deletable": "off",
|
5836 |
+
"id": "heading1",
|
5837 |
+
"title": "Heading 1",
|
5838 |
+
"fontFamily": "kaushan_script",
|
5839 |
+
"fontFamilyType": "google",
|
5840 |
+
"fontSize": 52,
|
5841 |
+
"fontWeight": 400,
|
5842 |
+
"lineHeight": 1.3,
|
5843 |
+
"letterSpacing": -1.5,
|
5844 |
+
"tabletFontSize": 46,
|
5845 |
+
"tabletFontWeight": 400,
|
5846 |
+
"tabletLineHeight": 1.3,
|
5847 |
+
"tabletLetterSpacing": -1,
|
5848 |
+
"mobileFontSize": 40,
|
5849 |
+
"mobileFontWeight": 400,
|
5850 |
+
"mobileLineHeight": 1.3,
|
5851 |
+
"mobileLetterSpacing": -1
|
5852 |
+
},
|
5853 |
+
{
|
5854 |
+
"deletable": "off",
|
5855 |
+
"id": "heading2",
|
5856 |
+
"title": "Heading 2",
|
5857 |
+
"fontFamily": "kaushan_script",
|
5858 |
+
"fontFamilyType": "google",
|
5859 |
+
"fontSize": 42,
|
5860 |
+
"fontWeight": 400,
|
5861 |
+
"lineHeight": 1.4,
|
5862 |
+
"letterSpacing": -1,
|
5863 |
+
"tabletFontSize": 35,
|
5864 |
+
"tabletFontWeight": 400,
|
5865 |
+
"tabletLineHeight": 1.3,
|
5866 |
+
"tabletLetterSpacing": -0.5,
|
5867 |
+
"mobileFontSize": 29,
|
5868 |
+
"mobileFontWeight": 400,
|
5869 |
+
"mobileLineHeight": 1.3,
|
5870 |
+
"mobileLetterSpacing": -0.5
|
5871 |
+
},
|
5872 |
+
{
|
5873 |
+
"deletable": "off",
|
5874 |
+
"id": "heading3",
|
5875 |
+
"title": "Heading 3",
|
5876 |
+
"fontFamily": "kaushan_script",
|
5877 |
+
"fontFamilyType": "google",
|
5878 |
+
"fontSize": 32,
|
5879 |
+
"fontWeight": 400,
|
5880 |
+
"lineHeight": 1.4,
|
5881 |
+
"letterSpacing": 0,
|
5882 |
+
"tabletFontSize": 27,
|
5883 |
+
"tabletFontWeight": 400,
|
5884 |
+
"tabletLineHeight": 1.3,
|
5885 |
+
"tabletLetterSpacing": 0,
|
5886 |
+
"mobileFontSize": 22,
|
5887 |
+
"mobileFontWeight": 400,
|
5888 |
+
"mobileLineHeight": 1.3,
|
5889 |
+
"mobileLetterSpacing": 0
|
5890 |
+
},
|
5891 |
+
{
|
5892 |
+
"deletable": "off",
|
5893 |
+
"id": "heading4",
|
5894 |
+
"title": "Heading 4",
|
5895 |
+
"fontFamily": "comfortaa",
|
5896 |
+
"fontFamilyType": "google",
|
5897 |
+
"fontSize": 22,
|
5898 |
+
"fontWeight": 700,
|
5899 |
+
"lineHeight": 1.5,
|
5900 |
+
"letterSpacing": 0,
|
5901 |
+
"tabletFontSize": 22,
|
5902 |
+
"tabletFontWeight": 400,
|
5903 |
+
"tabletLineHeight": 1.4,
|
5904 |
+
"tabletLetterSpacing": 0,
|
5905 |
+
"mobileFontSize": 21,
|
5906 |
+
"mobileFontWeight": 400,
|
5907 |
+
"mobileLineHeight": 1.4,
|
5908 |
+
"mobileLetterSpacing": 0
|
5909 |
+
},
|
5910 |
+
{
|
5911 |
+
"deletable": "off",
|
5912 |
+
"id": "heading5",
|
5913 |
+
"title": "Heading 5",
|
5914 |
+
"fontFamily": "comfortaa",
|
5915 |
+
"fontFamilyType": "google",
|
5916 |
+
"fontSize": 20,
|
5917 |
+
"fontWeight": 700,
|
5918 |
+
"lineHeight": 1.6,
|
5919 |
+
"letterSpacing": 0,
|
5920 |
+
"tabletFontSize": 19,
|
5921 |
+
"tabletFontWeight": 600,
|
5922 |
+
"tabletLineHeight": 1.5,
|
5923 |
+
"tabletLetterSpacing": 0,
|
5924 |
+
"mobileFontSize": 18,
|
5925 |
+
"mobileFontWeight": 600,
|
5926 |
+
"mobileLineHeight": 1.5,
|
5927 |
+
"mobileLetterSpacing": 0
|
5928 |
+
},
|
5929 |
+
{
|
5930 |
+
"deletable": "off",
|
5931 |
+
"id": "heading6",
|
5932 |
+
"title": "Heading 6",
|
5933 |
+
"fontFamily": "comfortaa",
|
5934 |
+
"fontFamilyType": "google",
|
5935 |
+
"fontSize": 16,
|
5936 |
+
"fontWeight": 700,
|
5937 |
+
"lineHeight": 1.5,
|
5938 |
+
"letterSpacing": 0,
|
5939 |
+
"tabletFontSize": 16,
|
5940 |
+
"tabletFontWeight": 700,
|
5941 |
+
"tabletLineHeight": 1.5,
|
5942 |
+
"tabletLetterSpacing": 0,
|
5943 |
+
"mobileFontSize": 16,
|
5944 |
+
"mobileFontWeight": 700,
|
5945 |
+
"mobileLineHeight": 1.5,
|
5946 |
+
"mobileLetterSpacing": 0
|
5947 |
+
},
|
5948 |
+
{
|
5949 |
+
"deletable": "off",
|
5950 |
+
"id": "button",
|
5951 |
+
"title": "Button",
|
5952 |
+
"fontFamily": "comfortaa",
|
5953 |
+
"fontFamilyType": "google",
|
5954 |
+
"fontSize": 15,
|
5955 |
+
"fontWeight": 700,
|
5956 |
+
"lineHeight": 1.6,
|
5957 |
+
"letterSpacing": 1,
|
5958 |
+
"tabletFontSize": 13,
|
5959 |
+
"tabletFontWeight": 600,
|
5960 |
+
"tabletLineHeight": 1.6,
|
5961 |
+
"tabletLetterSpacing": 1,
|
5962 |
+
"mobileFontSize": 13,
|
5963 |
+
"mobileFontWeight": 600,
|
5964 |
+
"mobileLineHeight": 1.6,
|
5965 |
+
"mobileLetterSpacing": 1
|
5966 |
+
}
|
5967 |
+
]
|
5968 |
+
},
|
5969 |
+
{
|
5970 |
+
"id": "kldugntsakdckzxhreidncqvgunudghrcuzv",
|
5971 |
+
"title": "Brizy default",
|
5972 |
+
"colorPalette": [
|
5973 |
+
{ "id": "color1", "hex": "#191b21" },
|
5974 |
+
{ "id": "color2", "hex": "#142850" },
|
5975 |
+
{ "id": "color3", "hex": "#239ddb" },
|
5976 |
+
{ "id": "color4", "hex": "#66738d" },
|
5977 |
+
{ "id": "color5", "hex": "#bde1f4" },
|
5978 |
+
{ "id": "color6", "hex": "#eef0f2" },
|
5979 |
+
{ "id": "color7", "hex": "#73777f" },
|
5980 |
+
{ "id": "color8", "hex": "#ffffff" }
|
5981 |
+
],
|
5982 |
+
"fontStyles": [
|
5983 |
+
{
|
5984 |
+
"deletable": "off",
|
5985 |
+
"id": "paragraph",
|
5986 |
+
"title": "Paragraph",
|
5987 |
+
"fontFamily": "noto_serif",
|
5988 |
+
"fontFamilyType": "google",
|
5989 |
+
"fontSize": 16,
|
5990 |
+
"fontWeight": 300,
|
5991 |
+
"lineHeight": 1.7,
|
5992 |
+
"letterSpacing": 0,
|
5993 |
+
"tabletFontSize": 15,
|
5994 |
+
"tabletFontWeight": 300,
|
5995 |
+
"tabletLineHeight": 1.6,
|
5996 |
+
"tabletLetterSpacing": 0,
|
5997 |
+
"mobileFontSize": 15,
|
5998 |
+
"mobileFontWeight": 300,
|
5999 |
+
"mobileLineHeight": 1.6,
|
6000 |
+
"mobileLetterSpacing": 0
|
6001 |
+
},
|
6002 |
+
{
|
6003 |
+
"deletable": "off",
|
6004 |
+
"id": "subtitle",
|
6005 |
+
"title": "Subtitle",
|
6006 |
+
"fontFamily": "noto_serif",
|
6007 |
+
"fontFamilyType": "google",
|
6008 |
+
"fontSize": 18,
|
6009 |
+
"fontWeight": 300,
|
6010 |
+
"lineHeight": 1.5,
|
6011 |
+
"letterSpacing": 0,
|
6012 |
+
"tabletFontSize": 17,
|
6013 |
+
"tabletFontWeight": 300,
|
6014 |
+
"tabletLineHeight": 1.5,
|
6015 |
+
"tabletLetterSpacing": 0,
|
6016 |
+
"mobileFontSize": 17,
|
6017 |
+
"mobileFontWeight": 300,
|
6018 |
+
"mobileLineHeight": 1.5,
|
6019 |
+
"mobileLetterSpacing": 0
|
6020 |
+
},
|
6021 |
+
{
|
6022 |
+
"deletable": "off",
|
6023 |
+
"id": "abovetitle",
|
6024 |
+
"title": "Above Title",
|
6025 |
+
"fontFamily": "montserrat",
|
6026 |
+
"fontFamilyType": "google",
|
6027 |
+
"fontSize": 16,
|
6028 |
+
"fontWeight": 400,
|
6029 |
+
"lineHeight": 1.7,
|
6030 |
+
"letterSpacing": 2,
|
6031 |
+
"tabletFontSize": 15,
|
6032 |
+
"tabletFontWeight": 400,
|
6033 |
+
"tabletLineHeight": 1.7,
|
6034 |
+
"tabletLetterSpacing": 2,
|
6035 |
+
"mobileFontSize": 13,
|
6036 |
+
"mobileFontWeight": 400,
|
6037 |
+
"mobileLineHeight": 1.7,
|
6038 |
+
"mobileLetterSpacing": 2
|
6039 |
+
},
|
6040 |
+
{
|
6041 |
+
"deletable": "off",
|
6042 |
+
"id": "heading1",
|
6043 |
+
"title": "Heading 1",
|
6044 |
+
"fontFamily": "montserrat",
|
6045 |
+
"fontFamilyType": "google",
|
6046 |
+
"fontSize": 56,
|
6047 |
+
"fontWeight": 200,
|
6048 |
+
"lineHeight": 1.3,
|
6049 |
+
"letterSpacing": -1.5,
|
6050 |
+
"tabletFontSize": 40,
|
6051 |
+
"tabletFontWeight": 200,
|
6052 |
+
"tabletLineHeight": 1.3,
|
6053 |
+
"tabletLetterSpacing": -1,
|
6054 |
+
"mobileFontSize": 34,
|
6055 |
+
"mobileFontWeight": 200,
|
6056 |
+
"mobileLineHeight": 1.3,
|
6057 |
+
"mobileLetterSpacing": -1
|
6058 |
+
},
|
6059 |
+
{
|
6060 |
+
"deletable": "off",
|
6061 |
+
"id": "heading2",
|
6062 |
+
"title": "Heading 2",
|
6063 |
+
"fontFamily": "montserrat",
|
6064 |
+
"fontFamilyType": "google",
|
6065 |
+
"fontSize": 42,
|
6066 |
+
"fontWeight": 700,
|
6067 |
+
"lineHeight": 1.3,
|
6068 |
+
"letterSpacing": -1.5,
|
6069 |
+
"tabletFontSize": 35,
|
6070 |
+
"tabletFontWeight": 700,
|
6071 |
+
"tabletLineHeight": 1.3,
|
6072 |
+
"tabletLetterSpacing": -0.5,
|
6073 |
+
"mobileFontSize": 29,
|
6074 |
+
"mobileFontWeight": 700,
|
6075 |
+
"mobileLineHeight": 1.3,
|
6076 |
+
"mobileLetterSpacing": -0.5
|
6077 |
+
},
|
6078 |
+
{
|
6079 |
+
"deletable": "off",
|
6080 |
+
"id": "heading3",
|
6081 |
+
"title": "Heading 3",
|
6082 |
+
"fontFamily": "montserrat",
|
6083 |
+
"fontFamilyType": "google",
|
6084 |
+
"fontSize": 32,
|
6085 |
+
"fontWeight": 600,
|
6086 |
+
"lineHeight": 1.3,
|
6087 |
+
"letterSpacing": -1,
|
6088 |
+
"tabletFontSize": 27,
|
6089 |
+
"tabletFontWeight": 600,
|
6090 |
+
"tabletLineHeight": 1.3,
|
6091 |
+
"tabletLetterSpacing": 0,
|
6092 |
+
"mobileFontSize": 22,
|
6093 |
+
"mobileFontWeight": 600,
|
6094 |
+
"mobileLineHeight": 1.3,
|
6095 |
+
"mobileLetterSpacing": 0
|
6096 |
+
},
|
6097 |
+
{
|
6098 |
+
"deletable": "off",
|
6099 |
+
"id": "heading4",
|
6100 |
+
"title": "Heading 4",
|
6101 |
+
"fontFamily": "montserrat",
|
6102 |
+
"fontFamilyType": "google",
|
6103 |
+
"fontSize": 26,
|
6104 |
+
"fontWeight": 500,
|
6105 |
+
"lineHeight": 1.4,
|
6106 |
+
"letterSpacing": -1,
|
6107 |
+
"tabletFontSize": 24,
|
6108 |
+
"tabletFontWeight": 500,
|
6109 |
+
"tabletLineHeight": 1.4,
|
6110 |
+
"tabletLetterSpacing": 0,
|
6111 |
+
"mobileFontSize": 21,
|
6112 |
+
"mobileFontWeight": 500,
|
6113 |
+
"mobileLineHeight": 1.4,
|
6114 |
+
"mobileLetterSpacing": 0
|
6115 |
+
},
|
6116 |
+
{
|
6117 |
+
"deletable": "off",
|
6118 |
+
"id": "heading5",
|
6119 |
+
"title": "Heading 5",
|
6120 |
+
"fontFamily": "montserrat",
|
6121 |
+
"fontFamilyType": "google",
|
6122 |
+
"fontSize": 20,
|
6123 |
+
"fontWeight": 500,
|
6124 |
+
"lineHeight": 1.5,
|
6125 |
+
"letterSpacing": 0,
|
6126 |
+
"tabletFontSize": 19,
|
6127 |
+
"tabletFontWeight": 500,
|
6128 |
+
"tabletLineHeight": 1.4,
|
6129 |
+
"tabletLetterSpacing": 0,
|
6130 |
+
"mobileFontSize": 18,
|
6131 |
+
"mobileFontWeight": 500,
|
6132 |
+
"mobileLineHeight": 1.4,
|
6133 |
+
"mobileLetterSpacing": 0
|
6134 |
+
},
|
6135 |
+
{
|
6136 |
+
"deletable": "off",
|
6137 |
+
"id": "heading6",
|
6138 |
+
"title": "Heading 6",
|
6139 |
+
"fontFamily": "montserrat",
|
6140 |
+
"fontFamilyType": "google",
|
6141 |
+
"fontSize": 17,
|
6142 |
+
"fontWeight": 500,
|
6143 |
+
"lineHeight": 1.5,
|
6144 |
+
"letterSpacing": 0,
|
6145 |
+
"tabletFontSize": 16,
|
6146 |
+
"tabletFontWeight": 500,
|
6147 |
+
"tabletLineHeight": 1.4,
|
6148 |
+
"tabletLetterSpacing": 0,
|
6149 |
+
"mobileFontSize": 16,
|
6150 |
+
"mobileFontWeight": 500,
|
6151 |
+
"mobileLineHeight": 1.4,
|
6152 |
+
"mobileLetterSpacing": 0
|
6153 |
+
},
|
6154 |
+
{
|
6155 |
+
"deletable": "off",
|
6156 |
+
"id": "button",
|
6157 |
+
"title": "Button",
|
6158 |
+
"fontFamily": "montserrat",
|
6159 |
+
"fontFamilyType": "google",
|
6160 |
+
"fontSize": 12,
|
6161 |
+
"fontWeight": 600,
|
6162 |
+
"lineHeight": 1.8,
|
6163 |
+
"letterSpacing": 3,
|
6164 |
+
"tabletFontSize": 12,
|
6165 |
+
"tabletFontWeight": 600,
|
6166 |
+
"tabletLineHeight": 1.8,
|
6167 |
+
"tabletLetterSpacing": 3,
|
6168 |
+
"mobileFontSize": 12,
|
6169 |
+
"mobileFontWeight": 600,
|
6170 |
+
"mobileLineHeight": 1.8,
|
6171 |
+
"mobileLetterSpacing": 3
|
6172 |
+
}
|
6173 |
+
]
|
6174 |
+
}
|
6175 |
+
],
|
6176 |
+
|
6177 |
+
"extraFontStyles": [],
|
6178 |
+
"font": "lato",
|
6179 |
+
"fonts": {
|
6180 |
+
"config": {
|
6181 |
+
"data": [
|
6182 |
+
{
|
6183 |
+
"kind": "webfonts#webfont",
|
6184 |
+
"family": "Lato",
|
6185 |
+
"category": "sans-serif",
|
6186 |
+
"variants": [
|
6187 |
+
"100",
|
6188 |
+
"100italic",
|
6189 |
+
"300",
|
6190 |
+
"300italic",
|
6191 |
+
"regular",
|
6192 |
+
"italic",
|
6193 |
+
"700",
|
6194 |
+
"700italic",
|
6195 |
+
"900",
|
6196 |
+
"900italic"
|
6197 |
+
],
|
6198 |
+
"subsets": ["latin-ext", "latin"],
|
6199 |
+
"version": "v15",
|
6200 |
+
"lastModified": "2019-03-26",
|
6201 |
+
"files": {
|
6202 |
+
"100": "http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf",
|
6203 |
+
"300": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf",
|
6204 |
+
"700": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf",
|
6205 |
+
"900": "http://fonts.gstatic.com/s/lato/v15/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf",
|
6206 |
+
"100italic": "http://fonts.gstatic.com/s/lato/v15/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf",
|
6207 |
+
"300italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf",
|
6208 |
+
"regular": "http://fonts.gstatic.com/s/lato/v15/S6uyw4BMUTPHvxk6XweuBCY.ttf",
|
6209 |
+
"italic": "http://fonts.gstatic.com/s/lato/v15/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf",
|
6210 |
+
"700italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf",
|
6211 |
+
"900italic": "http://fonts.gstatic.com/s/lato/v15/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"
|
6212 |
+
},
|
6213 |
+
"brizyId": "uzrpsocdxtgrkbxjjxkchqcybpvpzsuvdlji"
|
6214 |
+
},
|
6215 |
+
{
|
6216 |
+
"kind": "webfonts#webfont",
|
6217 |
+
"family": "Overpass",
|
6218 |
+
"category": "sans-serif",
|
6219 |
+
"variants": [
|
6220 |
+
"100",
|
6221 |
+
"100italic",
|
6222 |
+
"200",
|
6223 |
+
"200italic",
|
6224 |
+
"300",
|
6225 |
+
"300italic",
|
6226 |
+
"regular",
|
6227 |
+
"italic",
|
6228 |
+
"600",
|
6229 |
+
"600italic",
|
6230 |
+
"700",
|
6231 |
+
"700italic",
|
6232 |
+
"800",
|
6233 |
+
"800italic",
|
6234 |
+
"900",
|
6235 |
+
"900italic"
|
6236 |
+
],
|
6237 |
+
"subsets": ["latin", "latin-ext"],
|
6238 |
+
"version": "v4",
|
6239 |
+
"lastModified": "2019-07-17",
|
6240 |
+
"files": {
|
6241 |
+
"100": "http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf",
|
6242 |
+
"200": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf",
|
6243 |
+
"300": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf",
|
6244 |
+
"600": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf",
|
6245 |
+
"700": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf",
|
6246 |
+
"800": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf",
|
6247 |
+
"900": "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf",
|
6248 |
+
"100italic": "http://fonts.gstatic.com/s/overpass/v4/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf",
|
6249 |
+
"200italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf",
|
6250 |
+
"300italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf",
|
6251 |
+
"regular": "http://fonts.gstatic.com/s/overpass/v4/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf",
|
6252 |
+
"italic": "http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf",
|
6253 |
+
"600italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf",
|
6254 |
+
"700italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf",
|
6255 |
+
"800italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf",
|
6256 |
+
"900italic": "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"
|
6257 |
+
},
|
6258 |
+
"brizyId": "qwhwsomltrpyogspgbomkxquvqsqfdlvcnfo"
|
6259 |
+
},
|
6260 |
+
{
|
6261 |
+
"kind": "webfonts#webfont",
|
6262 |
+
"family": "Red Hat Text",
|
6263 |
+
"category": "sans-serif",
|
6264 |
+
"variants": [
|
6265 |
+
"regular",
|
6266 |
+
"italic",
|
6267 |
+
"500",
|
6268 |
+
"500italic",
|
6269 |
+
"700",
|
6270 |
+
"700italic"
|
6271 |
+
],
|
6272 |
+
"subsets": ["latin", "latin-ext"],
|
6273 |
+
"version": "v1",
|
6274 |
+
"lastModified": "2019-07-26",
|
6275 |
+
"files": {
|
6276 |
+
"500": "http://fonts.gstatic.com/s/redhattext/v1/RrQIbohi_ic6B3yVSzGBrMxYm4QIG-eFNVmULg.ttf",
|
6277 |
+
"700": "http://fonts.gstatic.com/s/redhattext/v1/RrQIbohi_ic6B3yVSzGBrMxY04IIG-eFNVmULg.ttf",
|
6278 |
+
"regular": "http://fonts.gstatic.com/s/redhattext/v1/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf",
|
6279 |
+
"italic": "http://fonts.gstatic.com/s/redhattext/v1/RrQJbohi_ic6B3yVSzGBrMxQbacoMcmJPECN.ttf",
|
6280 |
+
"500italic": "http://fonts.gstatic.com/s/redhattext/v1/RrQKbohi_ic6B3yVSzGBrMxQbZ_cGO2BF1yELmgy.ttf",
|
6281 |
+
"700italic": "http://fonts.gstatic.com/s/redhattext/v1/RrQKbohi_ic6B3yVSzGBrMxQbZ-UHu2BF1yELmgy.ttf"
|
6282 |
+
},
|
6283 |
+
"brizyId": "eytgthrgfzlrrzxlhynabspndabldgdbdjnm"
|
6284 |
+
},
|
6285 |
+
{
|
6286 |
+
"kind": "webfonts#webfont",
|
6287 |
+
"family": "DM Serif Text",
|
6288 |
+
"category": "serif",
|
6289 |
+
"variants": ["regular", "italic"],
|
6290 |
+
"subsets": ["latin", "latin-ext"],
|
6291 |
+
"version": "v3",
|
6292 |
+
"lastModified": "2019-07-16",
|
6293 |
+
"files": {
|
6294 |
+
"regular": "http://fonts.gstatic.com/s/dmseriftext/v3/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf",
|
6295 |
+
"italic": "http://fonts.gstatic.com/s/dmseriftext/v3/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf"
|
6296 |
+
},
|
6297 |
+
"brizyId": "pujmflqmocbjojknwlnidilgqedjzqftpnrv"
|
6298 |
+
},
|
6299 |
+
{
|
6300 |
+
"kind": "webfonts#webfont",
|
6301 |
+
"family": "Blinker",
|
6302 |
+
"category": "sans-serif",
|
6303 |
+
"variants": [
|
6304 |
+
"100",
|
6305 |
+
"200",
|
6306 |
+
"300",
|
6307 |
+
"regular",
|
6308 |
+
"600",
|
6309 |
+
"700",
|
6310 |
+
"800",
|
6311 |
+
"900"
|
6312 |
+
],
|
6313 |
+
"subsets": ["latin", "latin-ext"],
|
6314 |
+
"version": "v1",
|
6315 |
+
"lastModified": "2019-07-26",
|
6316 |
+
"files": {
|
6317 |
+
"100": "http://fonts.gstatic.com/s/blinker/v1/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf",
|
6318 |
+
"200": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf",
|
6319 |
+
"300": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf",
|
6320 |
+
"600": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf",
|
6321 |
+
"700": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf",
|
6322 |
+
"800": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf",
|
6323 |
+
"900": "http://fonts.gstatic.com/s/blinker/v1/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf",
|
6324 |
+
"regular": "http://fonts.gstatic.com/s/blinker/v1/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf"
|
6325 |
+
},
|
6326 |
+
"brizyId": "yhkoopjikembswaygkzktfmiiashwjcrvbxr"
|
6327 |
+
},
|
6328 |
+
{
|
6329 |
+
"kind": "webfonts#webfont",
|
6330 |
+
"family": "Aleo",
|
6331 |
+
"category": "serif",
|
6332 |
+
"variants": [
|
6333 |
+
"300",
|
6334 |
+
"300italic",
|
6335 |
+
"regular",
|
6336 |
+
"italic",
|
6337 |
+
"700",
|
6338 |
+
"700italic"
|
6339 |
+
],
|
6340 |
+
"subsets": ["latin", "latin-ext"],
|
6341 |
+
"version": "v3",
|
6342 |
+
"lastModified": "2019-07-16",
|
6343 |
+
"files": {
|
6344 |
+
"300": "http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syKbr9DVDno985KM.ttf",
|
6345 |
+
"700": "http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syLbs9DVDno985KM.ttf",
|
6346 |
+
"300italic": "http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf",
|
6347 |
+
"regular": "http://fonts.gstatic.com/s/aleo/v3/c4mv1nF8G8_s8ArD0D1ogoY.ttf",
|
6348 |
+
"italic": "http://fonts.gstatic.com/s/aleo/v3/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf",
|
6349 |
+
"700italic": "http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"
|
6350 |
+
},
|
6351 |
+
"brizyId": "ucgecsrbcjkpsfctgzwsocokuydcdgiubroh"
|
6352 |
+
},
|
6353 |
+
{
|
6354 |
+
"kind": "webfonts#webfont",
|
6355 |
+
"family": "Nunito",
|
6356 |
+
"category": "sans-serif",
|
6357 |
+
"variants": [
|
6358 |
+
"200",
|
6359 |
+
"200italic",
|
6360 |
+
"300",
|
6361 |
+
"300italic",
|
6362 |
+
"regular",
|
6363 |
+
"italic",
|
6364 |
+
"600",
|
6365 |
+
"600italic",
|
6366 |
+
"700",
|
6367 |
+
"700italic",
|
6368 |
+
"800",
|
6369 |
+
"800italic",
|
6370 |
+
"900",
|
6371 |
+
"900italic"
|
6372 |
+
],
|
6373 |
+
"subsets": ["latin", "vietnamese", "latin-ext"],
|
6374 |
+
"version": "v11",
|
6375 |
+
"lastModified": "2019-07-22",
|
6376 |
+
"files": {
|
6377 |
+
"200": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf",
|
6378 |
+
"300": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf",
|
6379 |
+
"600": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf",
|
6380 |
+
"700": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf",
|
6381 |
+
"800": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf",
|
6382 |
+
"900": "http://fonts.gstatic.com/s/nunito/v11/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf",
|
6383 |
+
"200italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf",
|
6384 |
+
"300italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf",
|
6385 |
+
"regular": "http://fonts.gstatic.com/s/nunito/v11/XRXV3I6Li01BKof4MuyAbsrVcA.ttf",
|
6386 |
+
"italic": "http://fonts.gstatic.com/s/nunito/v11/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf",
|
6387 |
+
"600italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf",
|
6388 |
+
"700italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf",
|
6389 |
+
"800italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf",
|
6390 |
+
"900italic": "http://fonts.gstatic.com/s/nunito/v11/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf"
|
6391 |
+
},
|
6392 |
+
"brizyId": "ppzycxqtiwtmjnfpbfluoynrnnfviuerjczz"
|
6393 |
+
},
|
6394 |
+
{
|
6395 |
+
"kind": "webfonts#webfont",
|
6396 |
+
"family": "Knewave",
|
6397 |
+
"category": "display",
|
6398 |
+
"variants": ["regular"],
|
6399 |
+
"subsets": ["latin", "latin-ext"],
|
6400 |
+
"version": "v8",
|
6401 |
+
"lastModified": "2019-07-16",
|
6402 |
+
"files": {
|
6403 |
+
"regular": "http://fonts.gstatic.com/s/knewave/v8/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"
|
6404 |
+
},
|
6405 |
+
"brizyId": "jojwyelvgkjknbgrosxcdphkpqfcczzdlcen"
|
6406 |
+
},
|
6407 |
+
{
|
6408 |
+
"kind": "webfonts#webfont",
|
6409 |
+
"family": "Palanquin",
|
6410 |
+
"category": "sans-serif",
|
6411 |
+
"variants": ["100", "200", "300", "regular", "500", "600", "700"],
|
6412 |
+
"subsets": ["devanagari", "latin", "latin-ext"],
|
6413 |
+
"version": "v5",
|
6414 |
+
"lastModified": "2019-07-16",
|
6415 |
+
"files": {
|
6416 |
+
"100": "http://fonts.gstatic.com/s/palanquin/v5/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf",
|
6417 |
+
"200": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf",
|
6418 |
+
"300": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf",
|
6419 |
+
"500": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf",
|
6420 |
+
"600": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf",
|
6421 |
+
"700": "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf",
|
6422 |
+
"regular": "http://fonts.gstatic.com/s/palanquin/v5/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf"
|
6423 |
+
},
|
6424 |
+
"brizyId": "xnikbaszrjutnnfixmtprduwstoziivqiflp"
|
6425 |
+
},
|
6426 |
+
{
|
6427 |
+
"kind": "webfonts#webfont",
|
6428 |
+
"family": "Palanquin Dark",
|
6429 |
+
"category": "sans-serif",
|
6430 |
+
"variants": ["regular", "500", "600", "700"],
|
6431 |
+
"subsets": ["devanagari", "latin", "latin-ext"],
|
6432 |
+
"version": "v6",
|
6433 |
+
"lastModified": "2019-07-16",
|
6434 |
+
"files": {
|
6435 |
+
"500": "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf",
|
6436 |
+
"600": "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf",
|
6437 |
+
"700": "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf",
|
6438 |
+
"regular": "http://fonts.gstatic.com/s/palanquindark/v6/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf"
|
6439 |
+
},
|
6440 |
+
"brizyId": "gqzfchsrosvxegeymkyugyofaztsitibprrf"
|
6441 |
+
},
|
6442 |
+
{
|
6443 |
+
"kind": "webfonts#webfont",
|
6444 |
+
"family": "Roboto",
|
6445 |
+
"category": "sans-serif",
|
6446 |
+
"variants": [
|
6447 |
+
"100",
|
6448 |
+
"100italic",
|
6449 |
+
"300",
|
6450 |
+
"300italic",
|
6451 |
+
"regular",
|
6452 |
+
"italic",
|
6453 |
+
"500",
|
6454 |
+
"500italic",
|
6455 |
+
"700",
|
6456 |
+
"700italic",
|
6457 |
+
"900",
|
6458 |
+
"900italic"
|
6459 |
+
],
|
6460 |
+
"subsets": [
|
6461 |
+
"greek-ext",
|
6462 |
+
"latin",
|
6463 |
+
"cyrillic-ext",
|
6464 |
+
"vietnamese",
|
6465 |
+
"latin-ext",
|
6466 |
+
"greek",
|
6467 |
+
"cyrillic"
|
6468 |
+
],
|
6469 |
+
"version": "v20",
|
6470 |
+
"lastModified": "2019-07-24",
|
6471 |
+
"files": {
|
6472 |
+
"100": "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf",
|
6473 |
+
"300": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf",
|
6474 |
+
"500": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf",
|
6475 |
+
"700": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf",
|
6476 |
+
"900": "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf",
|
6477 |
+
"100italic": "http://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf",
|
6478 |
+
"300italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf",
|
6479 |
+
"regular": "http://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf",
|
6480 |
+
"italic": "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf",
|
6481 |
+
"500italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf",
|
6482 |
+
"700italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf",
|
6483 |
+
"900italic": "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"
|
6484 |
+
},
|
6485 |
+
"brizyId": "wrqenoprsynrjiyxmfoeuwqddlnomrxemeec"
|
6486 |
+
},
|
6487 |
+
{
|
6488 |
+
"kind": "webfonts#webfont",
|
6489 |
+
"family": "Oswald",
|
6490 |
+
"category": "sans-serif",
|
6491 |
+
"variants": ["200", "300", "regular", "500", "600", "700"],
|
6492 |
+
"subsets": [
|
6493 |
+
"latin",
|
6494 |
+
"cyrillic-ext",
|
6495 |
+
"vietnamese",
|
6496 |
+
"latin-ext",
|
6497 |
+
"cyrillic"
|
6498 |
+
],
|
6499 |
+
"version": "v24",
|
6500 |
+
"lastModified": "2019-07-23",
|
6501 |
+
"files": {
|
6502 |
+
"200": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf",
|
6503 |
+
"300": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf",
|
6504 |
+
"500": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf",
|
6505 |
+
"600": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf",
|
6506 |
+
"700": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf",
|
6507 |
+
"regular": "http://fonts.gstatic.com/s/oswald/v24/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf"
|
6508 |
+
},
|
6509 |
+
"brizyId": "ehiobdhupkijoltxyucnkenojglortpsupmp"
|
6510 |
+
},
|
6511 |
+
{
|
6512 |
+
"kind": "webfonts#webfont",
|
6513 |
+
"family": "Oxygen",
|
6514 |
+
"category": "sans-serif",
|
6515 |
+
"variants": ["300", "regular", "700"],
|
6516 |
+
"subsets": ["latin", "latin-ext"],
|
6517 |
+
"version": "v9",
|
6518 |
+
"lastModified": "2019-07-22",
|
6519 |
+
"files": {
|
6520 |
+
"300": "http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf",
|
6521 |
+
"700": "http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf",
|
6522 |
+
"regular": "http://fonts.gstatic.com/s/oxygen/v9/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf"
|
6523 |
+
},
|
6524 |
+
"brizyId": "gzhhqjoyiaozuhrmbylqeknkdaqtxfdynaqt"
|
6525 |
+
},
|
6526 |
+
{
|
6527 |
+
"kind": "webfonts#webfont",
|
6528 |
+
"family": "Playfair Display",
|
6529 |
+
"category": "serif",
|
6530 |
+
"variants": [
|
6531 |
+
"regular",
|
6532 |
+
"italic",
|
6533 |
+
"700",
|
6534 |
+
"700italic",
|
6535 |
+
"900",
|
6536 |
+
"900italic"
|
6537 |
+
],
|
6538 |
+
"subsets": ["latin", "vietnamese", "latin-ext", "cyrillic"],
|
6539 |
+
"version": "v15",
|
6540 |
+
"lastModified": "2019-07-22",
|
6541 |
+
"files": {
|
6542 |
+
"700": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf",
|
6543 |
+
"900": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf",
|
6544 |
+
"regular": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf",
|
6545 |
+
"italic": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf",
|
6546 |
+
"700italic": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf",
|
6547 |
+
"900italic": "http://fonts.gstatic.com/s/playfairdisplay/v15/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf"
|
6548 |
+
},
|
6549 |
+
"brizyId": "bvbbabnggnnjzvtleuwdrnfuvssxrgeovjan"
|
6550 |
+
},
|
6551 |
+
{
|
6552 |
+
"kind": "webfonts#webfont",
|
6553 |
+
"family": "Fira Sans",
|
6554 |
+
"category": "sans-serif",
|
6555 |
+
"variants": [
|
6556 |
+
"100",
|
6557 |
+
"100italic",
|
6558 |
+
"200",
|
6559 |
+
"200italic",
|
6560 |
+
"300",
|
6561 |
+
"300italic",
|
6562 |
+
"regular",
|
6563 |
+
"italic",
|
6564 |
+
"500",
|
6565 |
+
"500italic",
|
6566 |
+
"600",
|
6567 |
+
"600italic",
|
6568 |
+
"700",
|
6569 |
+
"700italic",
|
6570 |
+
"800",
|
6571 |
+
"800italic",
|
6572 |
+
"900",
|
6573 |
+
"900italic"
|
6574 |
+
],
|
6575 |
+
"subsets": [
|
6576 |
+
"greek-ext",
|
6577 |
+
"latin",
|
6578 |
+
"cyrillic-ext",
|
6579 |
+
"vietnamese",
|
6580 |
+
"latin-ext",
|
6581 |
+
"greek",
|
6582 |
+
"cyrillic"
|
6583 |
+
],
|
6584 |
+
"version": "v10",
|
6585 |
+
"lastModified": "2019-07-22",
|
6586 |
+
"files": {
|
6587 |
+
"100": "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf",
|
6588 |
+
"200": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf",
|
6589 |
+
"300": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf",
|
6590 |
+
"500": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf",
|
6591 |
+
"600": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf",
|
6592 |
+
"700": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf",
|
6593 |
+
"800": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf",
|
6594 |
+
"900": "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf",
|
6595 |
+
"100italic": "http://fonts.gstatic.com/s/firasans/v10/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf",
|
6596 |
+
"200italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf",
|
6597 |
+
"300italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf",
|
6598 |
+
"regular": "http://fonts.gstatic.com/s/firasans/v10/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf",
|
6599 |
+
"italic": "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf",
|
6600 |
+
"500italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf",
|
6601 |
+
"600italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf",
|
6602 |
+
"700italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf",
|
6603 |
+
"800italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf",
|
6604 |
+
"900italic": "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf"
|
6605 |
+
},
|
6606 |
+
"brizyId": "wndeuiwznzaqgsugjnojbhzjhjwtryegciis"
|
6607 |
+
},
|
6608 |
+
{
|
6609 |
+
"kind": "webfonts#webfont",
|
6610 |
+
"family": "Abril Fatface",
|
6611 |
+
"category": "display",
|
6612 |
+
"variants": ["regular"],
|
6613 |
+
"subsets": ["latin", "latin-ext"],
|
6614 |
+
"version": "v11",
|
6615 |
+
"lastModified": "2019-07-17",
|
6616 |
+
"files": {
|
6617 |
+
"regular": "http://fonts.gstatic.com/s/abrilfatface/v11/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf"
|
6618 |
+
},
|
6619 |
+
"brizyId": "fbyhozjmiqseimmgxerwiucacmaaljqitrdc"
|
6620 |
+
},
|
6621 |
+
{
|
6622 |
+
"kind": "webfonts#webfont",
|
6623 |
+
"family": "Comfortaa",
|
6624 |
+
"category": "display",
|
6625 |
+
"variants": ["300", "regular", "500", "600", "700"],
|
6626 |
+
"subsets": [
|
6627 |
+
"latin",
|
6628 |
+
"cyrillic-ext",
|
6629 |
+
"vietnamese",
|
6630 |
+
"latin-ext",
|
6631 |
+
"greek",
|
6632 |
+
"cyrillic"
|
6633 |
+
],
|
6634 |
+
"version": "v23",
|
6635 |
+
"lastModified": "2019-07-17",
|
6636 |
+
"files": {
|
6637 |
+
"300": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf",
|
6638 |
+
"500": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf",
|
6639 |
+
"600": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf",
|
6640 |
+
"700": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf",
|
6641 |
+
"regular": "http://fonts.gstatic.com/s/comfortaa/v23/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf"
|
6642 |
+
},
|
6643 |
+
"brizyId": "plspcdzrrelkhthvkmoocpwrtltvuzqcyraw"
|
6644 |
+
},
|
6645 |
+
{
|
6646 |
+
"kind": "webfonts#webfont",
|
6647 |
+
"family": "Kaushan Script",
|
6648 |
+
"category": "handwriting",
|
6649 |
+
"variants": ["regular"],
|
6650 |
+
"subsets": ["latin", "latin-ext"],
|
6651 |
+
"version": "v8",
|
6652 |
+
"lastModified": "2019-07-17",
|
6653 |
+
"files": {
|
6654 |
+
"regular": "http://fonts.gstatic.com/s/kaushanscript/v8/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"
|
6655 |
+
},
|
6656 |
+
"brizyId": "simpmqjphttgbnwqaobwxuxoavrdlbpdjgzc"
|
6657 |
+
}
|
6658 |
+
]
|
6659 |
+
}
|
6660 |
+
}
|
6661 |
+
}
|
6662 |
+
'],
|
6663 |
+
['{"selectedKit":"vnexmlshkihvcgsxmozgxzzdwsyvolvmhtne","selectedStyle":"kldugntsakdckzxhreidncqvgunudghrcuzv","styles":[{"id":"bahcadtpvdhdphmhymrsgrwobyzhxcdzytyx","title":"Overpass","colorPalette":[{"id":"color1","hex":"#191b21"},{"id":"color2","hex":"#1b2f57"},{"id":"color3","hex":"#f16002"},{"id":"color4","hex":"#66738d"},{"id":"color5","hex":"#bde1f4"},{"id":"color6","hex":"#eef0f2"},{"id":"color7","hex":"#73777f"},{"id":"color8","hex":"#ffffff"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"noto_serif","fontSize":18,"fontWeight":300,"lineHeight":1.5,"letterSpacing":0,"mobileFontSize":17,"mobileFontWeight":300,"mobileLineHeight":1.5,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"montserrat","fontSize":16,"fontWeight":400,"lineHeight":1.7,"letterSpacing":2,"mobileFontSize":13,"mobileFontWeight":400,"mobileLineHeight":1.7,"mobileLetterSpacing":2,"fontFamilyType":"google"},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"montserrat","fontSize":56,"fontWeight":200,"lineHeight":1.3,"letterSpacing":-1.5,"mobileFontSize":34,"mobileFontWeight":200,"mobileLineHeight":1.3,"mobileLetterSpacing":-1,"fontFamilyType":"google"},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"montserrat","fontSize":42,"fontWeight":700,"lineHeight":1.3,"letterSpacing":-1.5,"mobileFontSize":29,"mobileFontWeight":700,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5,"fontFamilyType":"google"},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"montserrat","fontSize":32,"fontWeight":600,"lineHeight":1.3,"letterSpacing":-1,"mobileFontSize":22,"mobileFontWeight":600,"mobileLineHeight":1.3,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"montserrat","fontSize":26,"fontWeight":500,"lineHeight":1.4,"letterSpacing":-1,"mobileFontSize":21,"mobileFontWeight":500,"mobileLineHeight":1.4,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"montserrat","fontSize":20,"fontWeight":500,"lineHeight":1.5,"letterSpacing":0,"mobileFontSize":18,"mobileFontWeight":500,"mobileLineHeight":1.4,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"montserrat","fontSize":17,"fontWeight":500,"lineHeight":1.5,"letterSpacing":0,"mobileFontSize":16,"mobileFontWeight":500,"mobileLineHeight":1.4,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"off","id":"button","title":"Button","fontFamily":"montserrat","fontSize":12,"fontWeight":600,"lineHeight":1.8,"letterSpacing":3,"mobileFontSize":12,"mobileFontWeight":600,"mobileLineHeight":1.8,"mobileLetterSpacing":3,"fontFamilyType":"google"}]},{"id":"oilxrtjxgdgosmgudtgrezwpzxjlfumgppro","title":"Magazine","colorPalette":[{"id":"color1","hex":"#182E43"},{"id":"color2","hex":"#061726"},{"id":"color3","hex":"#1176C1"},{"id":"color4","hex":"#EDB2CB"},{"id":"color5","hex":"#B5D1E6"},{"id":"color6","hex":"#FBF1FA"},{"id":"color7","hex":"#5B6067"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":500,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":13,"fontWeight":600,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"dm_serif_text","fontFamilyType":"google","fontSize":46,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":40,"tabletFontWeight":600,"tabletLineHeight":1.3,"tabletLetterSpacing":-1.5,"mobileFontSize":36,"mobileFontWeight":600,"mobileLineHeight":1.3,"mobileLetterSpacing":-1.5},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"dm_serif_text","fontFamilyType":"google","fontSize":36,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.2,"tabletLetterSpacing":-1,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"dm_serif_text","fontFamilyType":"google","fontSize":28,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-0.5,"tabletFontSize":27,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":23,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":22,"fontWeight":500,"lineHeight":1.5,"letterSpacing":-0.5,"tabletFontSize":20,"tabletFontWeight":500,"tabletLineHeight":1.4,"tabletLetterSpacing":-0.5,"mobileFontSize":20,"mobileFontWeight":500,"mobileLineHeight":1.4,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":20,"fontWeight":500,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":18,"tabletFontWeight":500,"tabletLineHeight":1.5,"tabletLetterSpacing":-0.5,"mobileFontSize":18,"mobileFontWeight":500,"mobileLineHeight":1.5,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":16,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":700,"tabletLineHeight":1.5,"tabletLetterSpacing":-0.5,"mobileFontSize":16,"mobileFontWeight":700,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"red_hat_text","fontFamilyType":"google","fontSize":15,"fontWeight":500,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":14,"tabletFontWeight":500,"tabletLineHeight":1.6,"tabletLetterSpacing":1,"mobileFontSize":14,"mobileFontWeight":500,"mobileLineHeight":1.6,"mobileLetterSpacing":1}]},{"id":"abzxtmjekuwdhhhchiwlaovkxyvspfffueiy","title":"Graceful","colorPalette":[{"id":"color1","hex":"#A276AF"},{"id":"color2","hex":"#1E1B2D"},{"id":"color3","hex":"#7F69F4"},{"id":"color4","hex":"#F7CECA"},{"id":"color5","hex":"#C1B8EF"},{"id":"color6","hex":"#F2EAE7"},{"id":"color7","hex":"#67656D"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"blinker","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"blinker","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"blinker","fontFamilyType":"google","fontSize":13,"fontWeight":600,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"aleo","fontFamilyType":"google","fontSize":46,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":40,"tabletFontWeight":400,"tabletLineHeight":1.2,"tabletLetterSpacing":-1.5,"mobileFontSize":34,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"aleo","fontFamilyType":"google","fontSize":36,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"aleo","fontFamilyType":"google","fontSize":28,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":25,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":22,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"blinker","fontFamilyType":"google","fontSize":22,"fontWeight":600,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":22,"tabletFontWeight":600,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":21,"mobileFontWeight":600,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"blinker","fontFamilyType":"google","fontSize":20,"fontWeight":600,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":18,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"blinker","fontFamilyType":"google","fontSize":16,"fontWeight":600,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"blinker","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":14,"tabletFontWeight":600,"tabletLineHeight":1.6,"tabletLetterSpacing":0.5,"mobileFontSize":15,"mobileFontWeight":600,"mobileLineHeight":1.6,"mobileLetterSpacing":0.5}]},{"id":"aqmryzjisyyemvyjbrxjhiadzqxjumfplivm","title":"Ashen","colorPalette":[{"id":"color1","hex":"#B23730"},{"id":"color2","hex":"#200F11"},{"id":"color3","hex":"#B2305E"},{"id":"color4","hex":"#FFDCD0"},{"id":"color5","hex":"#FF7547"},{"id":"color6","hex":"#F5F4F0"},{"id":"color7","hex":"#7F7979"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"nunito","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":15,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":15,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"nunito","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"nunito","fontFamilyType":"google","fontSize":13,"fontWeight":700,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"knewave","fontFamilyType":"google","fontSize":46,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":40,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-1,"mobileFontSize":34,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"knewave","fontFamilyType":"google","fontSize":36,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":33,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"knewave","fontFamilyType":"google","fontSize":28,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":25,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":22,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"nunito","fontFamilyType":"google","fontSize":22,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":700,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":19,"mobileFontWeight":700,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"nunito","fontFamilyType":"google","fontSize":20,"fontWeight":700,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":700,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":700,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"nunito","fontFamilyType":"google","fontSize":16,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"nunito","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":14,"tabletFontWeight":700,"tabletLineHeight":1.6,"tabletLetterSpacing":1,"mobileFontSize":14,"mobileFontWeight":700,"mobileLineHeight":1.6,"mobileLetterSpacing":1}]},{"id":"zxpsijgmzwoaiyprcqztjwwjpraeizvtyibq","title":"Oblivion","colorPalette":[{"id":"color1","hex":"#5C823F"},{"id":"color2","hex":"#26232A"},{"id":"color3","hex":"#60B420"},{"id":"color4","hex":"#ECD7F2"},{"id":"color5","hex":"#9E47DA"},{"id":"color6","hex":"#EAF6E3"},{"id":"color7","hex":"#6F6D70"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"palanquin","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":15,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":15,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"palanquin","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":300,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":300,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"palanquin","fontFamilyType":"google","fontSize":13,"fontWeight":700,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"palanquin_dark","fontFamilyType":"google","fontSize":46,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":40,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-1,"mobileFontSize":34,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"palanquin_dark","fontFamilyType":"google","fontSize":36,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"palanquin_dark","fontFamilyType":"google","fontSize":28,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":27,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":22,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"palanquin_dark","fontFamilyType":"google","fontSize":22,"fontWeight":400,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":22,"tabletFontWeight":400,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":21,"mobileFontWeight":400,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"palanquin_dark","fontFamilyType":"google","fontSize":20,"fontWeight":400,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"palanquin","fontFamilyType":"google","fontSize":16,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":700,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":700,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"palanquin","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":0.5,"tabletFontSize":15,"tabletFontWeight":700,"tabletLineHeight":1.6,"tabletLetterSpacing":0.5,"mobileFontSize":15,"mobileFontWeight":700,"mobileLineHeight":1.6,"mobileLetterSpacing":0.5}]},{"id":"mnidlkbkoxwoaofhmdrlgawecfhbpxbtgies","title":"Droid","colorPalette":[{"id":"color1","hex":"#8E53A7"},{"id":"color2","hex":"#242643"},{"id":"color3","hex":"#4157CB"},{"id":"color4","hex":"#F8A392"},{"id":"color5","hex":"#FFE0DA"},{"id":"color6","hex":"#F3EEF0"},{"id":"color7","hex":"#5D5E64"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"roboto","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":15,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":15,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"roboto","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":300,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":300,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"roboto","fontFamilyType":"google","fontSize":13,"fontWeight":700,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"oswald","fontFamilyType":"google","fontSize":46,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":40,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-1,"mobileFontSize":34,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"oswald","fontFamilyType":"google","fontSize":36,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"oswald","fontFamilyType":"google","fontSize":28,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":27,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":22,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"roboto","fontFamilyType":"google","fontSize":22,"fontWeight":400,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":22,"tabletFontWeight":400,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":21,"mobileFontWeight":400,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"roboto","fontFamilyType":"google","fontSize":20,"fontWeight":400,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"roboto","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"roboto","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.6,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.6,"mobileLetterSpacing":1}]},{"id":"xjgeewgibkkurlxnmtsozeucbcpwixyncglc","title":"Exquisite","colorPalette":[{"id":"color1","hex":"#0D1B71"},{"id":"color2","hex":"#1D1F3A"},{"id":"color3","hex":"#C63160"},{"id":"color4","hex":"#FCD1CE"},{"id":"color5","hex":"#9DE1EC"},{"id":"color6","hex":"#EFF1FA"},{"id":"color7","hex":"#575864"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"oxygen","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":15,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":15,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"oxygen","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":300,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":300,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"oxygen","fontFamilyType":"google","fontSize":13,"fontWeight":700,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"playfair_display","fontFamilyType":"google","fontSize":52,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":46,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-1,"mobileFontSize":40,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"playfair_display","fontFamilyType":"google","fontSize":42,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"playfair_display","fontFamilyType":"google","fontSize":29,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":26,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":23,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"oxygen","fontFamilyType":"google","fontSize":22,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":22,"tabletFontWeight":600,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":21,"mobileFontWeight":600,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"oxygen","fontFamilyType":"google","fontSize":20,"fontWeight":700,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"oxygen","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"oxygen","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.6,"mobileLetterSpacing":0}]},{"id":"vysgrrxdqidobgfkzbvkkeaskxzmqpmadwrw","title":"Chubby","colorPalette":[{"id":"color1","hex":"#42497D"},{"id":"color2","hex":"#181A34"},{"id":"color3","hex":"#4853BB"},{"id":"color4","hex":"#98D8F3"},{"id":"color5","hex":"#D2D6FD"},{"id":"color6","hex":"#EDF4F5"},{"id":"color7","hex":"#80818D"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":15,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":15,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":300,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":300,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":13,"fontWeight":700,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"abril_fatface","fontFamilyType":"google","fontSize":52,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":46,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-1,"mobileFontSize":40,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"abril_fatface","fontFamilyType":"google","fontSize":42,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"abril_fatface","fontFamilyType":"google","fontSize":32,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":27,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":22,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":22,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":22,"tabletFontWeight":400,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":21,"mobileFontWeight":400,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":20,"fontWeight":700,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":400,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":400,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"fira_sans","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.6,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.6,"mobileLetterSpacing":1}]},{"id":"htbprlrkzfekfscuwidkwmdomcfrnvgoakws","title":"Samurai","colorPalette":[{"id":"color1","hex":"#C19F80"},{"id":"color2","hex":"#0C2117"},{"id":"color3","hex":"#E46931"},{"id":"color4","hex":"#E3FCBF"},{"id":"color5","hex":"#CEC238"},{"id":"color6","hex":"#F5EFDF"},{"id":"color7","hex":"#5C615E"},{"id":"color8","hex":"#FFFFFF"}],"fontStyles":[{"deletable":"off","id":"paragraph","title":"Paragraph","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":16,"fontWeight":400,"lineHeight":1.9,"letterSpacing":0,"tabletFontSize":15,"tabletFontWeight":400,"tabletLineHeight":1.6,"tabletLetterSpacing":0,"mobileFontSize":15,"mobileFontWeight":400,"mobileLineHeight":1.6,"mobileLetterSpacing":0},{"deletable":"off","id":"subtitle","title":"Subtitle","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":17,"fontWeight":400,"lineHeight":1.8,"letterSpacing":0,"tabletFontSize":17,"tabletFontWeight":300,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":17,"mobileFontWeight":300,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"abovetitle","title":"Above Title","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":13,"fontWeight":700,"lineHeight":1.5,"letterSpacing":1.1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":1},{"deletable":"off","id":"heading1","title":"Heading 1","fontFamily":"kaushan_script","fontFamilyType":"google","fontSize":52,"fontWeight":400,"lineHeight":1.3,"letterSpacing":-1.5,"tabletFontSize":46,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-1,"mobileFontSize":40,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-1},{"deletable":"off","id":"heading2","title":"Heading 2","fontFamily":"kaushan_script","fontFamilyType":"google","fontSize":42,"fontWeight":400,"lineHeight":1.4,"letterSpacing":-1,"tabletFontSize":35,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":-0.5,"mobileFontSize":29,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":-0.5},{"deletable":"off","id":"heading3","title":"Heading 3","fontFamily":"kaushan_script","fontFamilyType":"google","fontSize":32,"fontWeight":400,"lineHeight":1.4,"letterSpacing":0,"tabletFontSize":27,"tabletFontWeight":400,"tabletLineHeight":1.3,"tabletLetterSpacing":0,"mobileFontSize":22,"mobileFontWeight":400,"mobileLineHeight":1.3,"mobileLetterSpacing":0},{"deletable":"off","id":"heading4","title":"Heading 4","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":22,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":22,"tabletFontWeight":400,"tabletLineHeight":1.4,"tabletLetterSpacing":0,"mobileFontSize":21,"mobileFontWeight":400,"mobileLineHeight":1.4,"mobileLetterSpacing":0},{"deletable":"off","id":"heading5","title":"Heading 5","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":20,"fontWeight":700,"lineHeight":1.6,"letterSpacing":0,"tabletFontSize":19,"tabletFontWeight":600,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":18,"mobileFontWeight":600,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"heading6","title":"Heading 6","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":16,"fontWeight":700,"lineHeight":1.5,"letterSpacing":0,"tabletFontSize":16,"tabletFontWeight":700,"tabletLineHeight":1.5,"tabletLetterSpacing":0,"mobileFontSize":16,"mobileFontWeight":700,"mobileLineHeight":1.5,"mobileLetterSpacing":0},{"deletable":"off","id":"button","title":"Button","fontFamily":"comfortaa","fontFamilyType":"google","fontSize":15,"fontWeight":700,"lineHeight":1.6,"letterSpacing":1,"tabletFontSize":13,"tabletFontWeight":600,"tabletLineHeight":1.6,"tabletLetterSpacing":1,"mobileFontSize":13,"mobileFontWeight":600,"mobileLineHeight":1.6,"mobileLetterSpacing":1}]}],"extraFontStyles":[{"deletable":"on","id":"tttnkptilk","title":"New Style #10","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"chzpengljn","title":"New Style #11","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"wikcnikpes","title":"New Style #12","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"yzgcnhyvqx","title":"New Style #13","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"nyicioozsc","title":"New Style #14","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"vlmuhsooxc","title":"New Style #15","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"oqdegbisiu","title":"New Style #16","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"cesbmwfdvv","title":"New Style #17","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"lojcwzqrab","title":"New Style #18","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"uunaxswmrv","title":"New Style #19","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"drtntrvbif","title":"New Style #20","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"fepvvoulni","title":"New Style #21","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"ftgfemhmvb","title":"New Style #22","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"uudjnodkdx","title":"New Style #23","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"nyriqmsizl","title":"New Style #24","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"rrcylgoslk","title":"New Style #25","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"ykikdqwmet","title":"New Style #26","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"deleted":true,"fontFamilyType":"google"},{"deletable":"on","id":"kqanseuvov","title":"Status Button","fontFamily":"roboto","fontSize":15,"fontWeight":300,"lineHeight":1,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"fontFamilyType":"google"},{"deletable":"on","id":"eepmagkqne","title":"New Style #28","fontFamily":"roboto","fontSize":18,"fontWeight":300,"lineHeight":1.7,"letterSpacing":1,"mobileFontSize":15,"mobileFontWeight":300,"mobileLineHeight":1.6,"mobileLetterSpacing":0,"fontFamilyType":"google"}],"font":"lato","fonts":{"config":{"data":[{"kind":"webfonts#webfont","family":"Lato","category":"sans-serif","variants":["100","100italic","300","300italic","regular","italic","700","700italic","900","900italic"],"subsets":["latin-ext","latin"],"version":"v15","lastModified":"2019-03-26","files":{"100":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf","300":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf","700":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf","900":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf","100italic":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf","300italic":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6uyw4BMUTPHvxk6XweuBCY.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf","900italic":"http:\/\/fonts.gstatic.com\/s\/lato\/v15\/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf"},"brizyId":"uzrpsocdxtgrkbxjjxkchqcybpvpzsuvdlji"},{"kind":"webfonts#webfont","family":"Overpass","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","regular","italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subsets":["latin","latin-ext"],"version":"v4","lastModified":"2019-07-17","files":{"100":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf","200":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf","300":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf","600":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf","700":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf","800":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf","900":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf","100italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf","200italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf","300italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf","600italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf","800italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf","900italic":"http:\/\/fonts.gstatic.com\/s\/overpass\/v4\/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf"},"brizyId":"qwhwsomltrpyogspgbomkxquvqsqfdlvcnfo"},{"kind":"webfonts#webfont","family":"Red Hat Text","category":"sans-serif","variants":["regular","italic","500","500italic","700","700italic"],"subsets":["latin","latin-ext"],"version":"v1","lastModified":"2019-07-26","files":{"500":"http:\/\/fonts.gstatic.com\/s\/redhattext\/v1\/RrQIbohi_ic6B3yVSzGBrMxYm4QIG-eFNVmULg.ttf","700":"http:\/\/fonts.gstatic.com\/s\/redhattext\/v1\/RrQIbohi_ic6B3yVSzGBrMxY04IIG-eFNVmULg.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/redhattext\/v1\/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/redhattext\/v1\/RrQJbohi_ic6B3yVSzGBrMxQbacoMcmJPECN.ttf","500italic":"http:\/\/fonts.gstatic.com\/s\/redhattext\/v1\/RrQKbohi_ic6B3yVSzGBrMxQbZ_cGO2BF1yELmgy.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/redhattext\/v1\/RrQKbohi_ic6B3yVSzGBrMxQbZ-UHu2BF1yELmgy.ttf"},"brizyId":"eytgthrgfzlrrzxlhynabspndabldgdbdjnm"},{"kind":"webfonts#webfont","family":"DM Serif Text","category":"serif","variants":["regular","italic"],"subsets":["latin","latin-ext"],"version":"v3","lastModified":"2019-07-16","files":{"regular":"http:\/\/fonts.gstatic.com\/s\/dmseriftext\/v3\/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/dmseriftext\/v3\/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf"},"brizyId":"pujmflqmocbjojknwlnidilgqedjzqftpnrv"},{"kind":"webfonts#webfont","family":"Blinker","category":"sans-serif","variants":["100","200","300","regular","600","700","800","900"],"subsets":["latin","latin-ext"],"version":"v1","lastModified":"2019-07-26","files":{"100":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf","200":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf","300":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf","600":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf","700":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf","800":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf","900":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/blinker\/v1\/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf"},"brizyId":"yhkoopjikembswaygkzktfmiiashwjcrvbxr"},{"kind":"webfonts#webfont","family":"Aleo","category":"serif","variants":["300","300italic","regular","italic","700","700italic"],"subsets":["latin","latin-ext"],"version":"v3","lastModified":"2019-07-16","files":{"300":"http:\/\/fonts.gstatic.com\/s\/aleo\/v3\/c4mg1nF8G8_syKbr9DVDno985KM.ttf","700":"http:\/\/fonts.gstatic.com\/s\/aleo\/v3\/c4mg1nF8G8_syLbs9DVDno985KM.ttf","300italic":"http:\/\/fonts.gstatic.com\/s\/aleo\/v3\/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/aleo\/v3\/c4mv1nF8G8_s8ArD0D1ogoY.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/aleo\/v3\/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/aleo\/v3\/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf"},"brizyId":"ucgecsrbcjkpsfctgzwsocokuydcdgiubroh"},{"kind":"webfonts#webfont","family":"Nunito","category":"sans-serif","variants":["200","200italic","300","300italic","regular","italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subsets":["latin","vietnamese","latin-ext"],"version":"v11","lastModified":"2019-07-22","files":{"200":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf","300":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf","600":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf","700":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf","800":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf","900":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf","200italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf","300italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXV3I6Li01BKof4MuyAbsrVcA.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf","600italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf","800italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf","900italic":"http:\/\/fonts.gstatic.com\/s\/nunito\/v11\/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf"},"brizyId":"ppzycxqtiwtmjnfpbfluoynrnnfviuerjczz"},{"kind":"webfonts#webfont","family":"Knewave","category":"display","variants":["regular"],"subsets":["latin","latin-ext"],"version":"v8","lastModified":"2019-07-16","files":{"regular":"http:\/\/fonts.gstatic.com\/s\/knewave\/v8\/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf"},"brizyId":"jojwyelvgkjknbgrosxcdphkpqfcczzdlcen"},{"kind":"webfonts#webfont","family":"Palanquin","category":"sans-serif","variants":["100","200","300","regular","500","600","700"],"subsets":["devanagari","latin","latin-ext"],"version":"v5","lastModified":"2019-07-16","files":{"100":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf","200":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf","300":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf","500":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf","600":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf","700":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/palanquin\/v5\/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf"},"brizyId":"xnikbaszrjutnnfixmtprduwstoziivqiflp"},{"kind":"webfonts#webfont","family":"Palanquin Dark","category":"sans-serif","variants":["regular","500","600","700"],"subsets":["devanagari","latin","latin-ext"],"version":"v6","lastModified":"2019-07-16","files":{"500":"http:\/\/fonts.gstatic.com\/s\/palanquindark\/v6\/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf","600":"http:\/\/fonts.gstatic.com\/s\/palanquindark\/v6\/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf","700":"http:\/\/fonts.gstatic.com\/s\/palanquindark\/v6\/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/palanquindark\/v6\/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf"},"brizyId":"gqzfchsrosvxegeymkyugyofaztsitibprrf"},{"kind":"webfonts#webfont","family":"Roboto","category":"sans-serif","variants":["100","100italic","300","300italic","regular","italic","500","500italic","700","700italic","900","900italic"],"subsets":["greek-ext","latin","cyrillic-ext","vietnamese","latin-ext","greek","cyrillic"],"version":"v20","lastModified":"2019-07-24","files":{"100":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf","300":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf","500":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf","700":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf","900":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf","100italic":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf","300italic":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf","500italic":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf","900italic":"http:\/\/fonts.gstatic.com\/s\/roboto\/v20\/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf"},"brizyId":"wrqenoprsynrjiyxmfoeuwqddlnomrxemeec"},{"kind":"webfonts#webfont","family":"Oswald","category":"sans-serif","variants":["200","300","regular","500","600","700"],"subsets":["latin","cyrillic-ext","vietnamese","latin-ext","cyrillic"],"version":"v24","lastModified":"2019-07-23","files":{"200":"http:\/\/fonts.gstatic.com\/s\/oswald\/v24\/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf","300":"http:\/\/fonts.gstatic.com\/s\/oswald\/v24\/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf","500":"http:\/\/fonts.gstatic.com\/s\/oswald\/v24\/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf","600":"http:\/\/fonts.gstatic.com\/s\/oswald\/v24\/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf","700":"http:\/\/fonts.gstatic.com\/s\/oswald\/v24\/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/oswald\/v24\/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf"},"brizyId":"ehiobdhupkijoltxyucnkenojglortpsupmp"},{"kind":"webfonts#webfont","family":"Oxygen","category":"sans-serif","variants":["300","regular","700"],"subsets":["latin","latin-ext"],"version":"v9","lastModified":"2019-07-22","files":{"300":"http:\/\/fonts.gstatic.com\/s\/oxygen\/v9\/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf","700":"http:\/\/fonts.gstatic.com\/s\/oxygen\/v9\/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/oxygen\/v9\/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf"},"brizyId":"gzhhqjoyiaozuhrmbylqeknkdaqtxfdynaqt"},{"kind":"webfonts#webfont","family":"Playfair Display","category":"serif","variants":["regular","italic","700","700italic","900","900italic"],"subsets":["latin","vietnamese","latin-ext","cyrillic"],"version":"v15","lastModified":"2019-07-22","files":{"700":"http:\/\/fonts.gstatic.com\/s\/playfairdisplay\/v15\/nuFlD-vYSZviVYUb_rj3ij__anPXBYf9pWkU5xxiJKY.ttf","900":"http:\/\/fonts.gstatic.com\/s\/playfairdisplay\/v15\/nuFlD-vYSZviVYUb_rj3ij__anPXBb__pWkU5xxiJKY.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/playfairdisplay\/v15\/nuFiD-vYSZviVYUb_rj3ij__anPXPTvSgWE_-xU.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/playfairdisplay\/v15\/nuFkD-vYSZviVYUb_rj3ij__anPXDTnYhUM66xV7PQ.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/playfairdisplay\/v15\/nuFnD-vYSZviVYUb_rj3ij__anPXDTngOWwe4z5nNKaV_w.ttf","900italic":"http:\/\/fonts.gstatic.com\/s\/playfairdisplay\/v15\/nuFnD-vYSZviVYUb_rj3ij__anPXDTngAW4e4z5nNKaV_w.ttf"},"brizyId":"bvbbabnggnnjzvtleuwdrnfuvssxrgeovjan"},{"kind":"webfonts#webfont","family":"Fira Sans","category":"sans-serif","variants":["100","100italic","200","200italic","300","300italic","regular","italic","500","500italic","600","600italic","700","700italic","800","800italic","900","900italic"],"subsets":["greek-ext","latin","cyrillic-ext","vietnamese","latin-ext","greek","cyrillic"],"version":"v10","lastModified":"2019-07-22","files":{"100":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf","200":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf","300":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf","500":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf","600":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf","700":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf","800":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf","900":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf","100italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf","200italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf","300italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf","italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf","500italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf","600italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf","700italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf","800italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf","900italic":"http:\/\/fonts.gstatic.com\/s\/firasans\/v10\/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf"},"brizyId":"wndeuiwznzaqgsugjnojbhzjhjwtryegciis"},{"kind":"webfonts#webfont","family":"Abril Fatface","category":"display","variants":["regular"],"subsets":["latin","latin-ext"],"version":"v11","lastModified":"2019-07-17","files":{"regular":"http:\/\/fonts.gstatic.com\/s\/abrilfatface\/v11\/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf"},"brizyId":"fbyhozjmiqseimmgxerwiucacmaaljqitrdc"},{"kind":"webfonts#webfont","family":"Comfortaa","category":"display","variants":["300","regular","500","600","700"],"subsets":["latin","cyrillic-ext","vietnamese","latin-ext","greek","cyrillic"],"version":"v23","lastModified":"2019-07-17","files":{"300":"http:\/\/fonts.gstatic.com\/s\/comfortaa\/v23\/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf","500":"http:\/\/fonts.gstatic.com\/s\/comfortaa\/v23\/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf","600":"http:\/\/fonts.gstatic.com\/s\/comfortaa\/v23\/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf","700":"http:\/\/fonts.gstatic.com\/s\/comfortaa\/v23\/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf","regular":"http:\/\/fonts.gstatic.com\/s\/comfortaa\/v23\/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf"},"brizyId":"plspcdzrrelkhthvkmoocpwrtltvuzqcyraw"},{"kind":"webfonts#webfont","family":"Kaushan Script","category":"handwriting","variants":["regular"],"subsets":["latin","latin-ext"],"version":"v8","lastModified":"2019-07-17","files":{"regular":"http:\/\/fonts.gstatic.com\/s\/kaushanscript\/v8\/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf"},"brizyId":"simpmqjphttgbnwqaobwxuxoavrdlbpdjgzc"}]}}}']
|
6664 |
+
];
|
6665 |
+
}
|
6666 |
+
|
6667 |
+
/**
|
6668 |
+
* @throws \Exception
|
6669 |
+
*/
|
6670 |
+
public function testInvalidExecuteContext()
|
6671 |
+
{
|
6672 |
+
$this->expectException(\Exception::class);
|
6673 |
+
$context = new DataToProjectContext("", "./tests/_data/editor-build");
|
6674 |
+
$transformer = new DataToProjectTransformer();
|
6675 |
+
$transformer->execute($context);
|
6676 |
+
}
|
6677 |
+
|
6678 |
+
/**
|
6679 |
+
* @dataProvider oldDataProvider
|
6680 |
+
*/
|
6681 |
+
public function testExecute($json)
|
6682 |
+
{
|
6683 |
+
$context = new DataToProjectContext(json_decode($json), "./tests/_data/editor-build");
|
6684 |
+
$this->internalExecute($context);
|
6685 |
+
}
|
6686 |
+
|
6687 |
+
/**
|
6688 |
+
* @dataProvider brokenDataProvider
|
6689 |
+
*/
|
6690 |
+
public function testExecute2($json)
|
6691 |
+
{
|
6692 |
+
$context = new DataToProjectContext(json_decode($json), "./tests/_data/editor-build2");
|
6693 |
+
$this->internalExecute2($json, $context);
|
6694 |
+
}
|
6695 |
+
|
6696 |
+
/**
|
6697 |
+
* @param $array
|
6698 |
+
* @param $property
|
6699 |
+
* @param $value
|
6700 |
+
*/
|
6701 |
+
private function assertObjectsFromArrayHasProperty($array, $property, $value, $message = "does not have property")
|
6702 |
+
{
|
6703 |
+
$existed = false;
|
6704 |
+
foreach ($array as $data) {
|
6705 |
+
if (is_object($data) && isset($data->$property) && $data->$property === $value) {
|
6706 |
+
$existed = true;
|
6707 |
+
}
|
6708 |
+
}
|
6709 |
+
|
6710 |
+
$this->assertTrue($existed, $message);
|
6711 |
+
}
|
6712 |
+
|
6713 |
+
/**
|
6714 |
+
* @param $json
|
6715 |
+
* @param DataToProjectContext $context
|
6716 |
+
*/
|
6717 |
+
protected function internalExecute(DataToProjectContext $context): void
|
6718 |
+
{
|
6719 |
+
$transformer = new FixDataToProjectTransformer();
|
6720 |
+
|
6721 |
+
$data = $transformer->execute($context);
|
6722 |
+
|
6723 |
+
$this->assertEquals($context->getData(), $data, "It should be equal");
|
6724 |
+
}
|
6725 |
+
|
6726 |
+
/**
|
6727 |
+
* @param $json
|
6728 |
+
* @param DataToProjectContext $context
|
6729 |
+
* @throws \Exception
|
6730 |
+
*/
|
6731 |
+
protected function internalExecute2($json, DataToProjectContext $context): void
|
6732 |
+
{
|
6733 |
+
$transformer = new FixDataToProjectTransformer();
|
6734 |
+
|
6735 |
+
$data = $transformer->execute($context);
|
6736 |
+
|
6737 |
+
$this->assertObjectsFromArrayHasProperty($data->styles, "id", $data->selectedStyle, "The style " . $data->selectedStyle . " is missing from styles");
|
6738 |
+
|
6739 |
+
$oldData = json_decode($json);
|
6740 |
+
|
6741 |
+
foreach ($oldData->styles as $style) {
|
6742 |
+
$styleId = $style->id;
|
6743 |
+
$this->assertObjectsFromArrayHasProperty($data->styles, "id", $styleId, "The style " . $styleId . " is missing from styles");
|
6744 |
+
}
|
6745 |
+
}
|
6746 |
+
}
|
6747 |
+
|
vendor/composer/autoload_real.php
CHANGED
@@ -2,7 +2,7 @@
|
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
-
class
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
@@ -19,15 +19,15 @@ class ComposerAutoloaderInit2ae0bf81df0624ae3235ae72960f5e67
|
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
-
spl_autoload_register(array('
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
-
spl_autoload_unregister(array('
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
-
call_user_func(\Composer\Autoload\
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
@@ -48,19 +48,19 @@ class ComposerAutoloaderInit2ae0bf81df0624ae3235ae72960f5e67
|
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
-
$includeFiles = Composer\Autoload\
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
-
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
-
function
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
2 |
|
3 |
// autoload_real.php @generated by Composer
|
4 |
|
5 |
+
class ComposerAutoloaderInitc8fdf561a12247167c5b8e6286092b12
|
6 |
{
|
7 |
private static $loader;
|
8 |
|
19 |
return self::$loader;
|
20 |
}
|
21 |
|
22 |
+
spl_autoload_register(array('ComposerAutoloaderInitc8fdf561a12247167c5b8e6286092b12', 'loadClassLoader'), true, true);
|
23 |
self::$loader = $loader = new \Composer\Autoload\ClassLoader();
|
24 |
+
spl_autoload_unregister(array('ComposerAutoloaderInitc8fdf561a12247167c5b8e6286092b12', 'loadClassLoader'));
|
25 |
|
26 |
$useStaticLoader = PHP_VERSION_ID >= 50600 && !defined('HHVM_VERSION') && (!function_exists('zend_loader_file_encoded') || !zend_loader_file_encoded());
|
27 |
if ($useStaticLoader) {
|
28 |
require_once __DIR__ . '/autoload_static.php';
|
29 |
|
30 |
+
call_user_func(\Composer\Autoload\ComposerStaticInitc8fdf561a12247167c5b8e6286092b12::getInitializer($loader));
|
31 |
} else {
|
32 |
$map = require __DIR__ . '/autoload_namespaces.php';
|
33 |
foreach ($map as $namespace => $path) {
|
48 |
$loader->register(true);
|
49 |
|
50 |
if ($useStaticLoader) {
|
51 |
+
$includeFiles = Composer\Autoload\ComposerStaticInitc8fdf561a12247167c5b8e6286092b12::$files;
|
52 |
} else {
|
53 |
$includeFiles = require __DIR__ . '/autoload_files.php';
|
54 |
}
|
55 |
foreach ($includeFiles as $fileIdentifier => $file) {
|
56 |
+
composerRequirec8fdf561a12247167c5b8e6286092b12($fileIdentifier, $file);
|
57 |
}
|
58 |
|
59 |
return $loader;
|
60 |
}
|
61 |
}
|
62 |
|
63 |
+
function composerRequirec8fdf561a12247167c5b8e6286092b12($fileIdentifier, $file)
|
64 |
{
|
65 |
if (empty($GLOBALS['__composer_autoload_files'][$fileIdentifier])) {
|
66 |
require $file;
|
vendor/composer/autoload_static.php
CHANGED
@@ -4,7 +4,7 @@
|
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
-
class
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'8ec4222c68e580a23520eef4abe4380f' => __DIR__ . '/..' . '/shortpixel/shortpixel-php/lib/ShortPixel.php',
|
@@ -52,9 +52,9 @@ class ComposerStaticInit2ae0bf81df0624ae3235ae72960f5e67
|
|
52 |
public static function getInitializer(ClassLoader $loader)
|
53 |
{
|
54 |
return \Closure::bind(function () use ($loader) {
|
55 |
-
$loader->prefixLengthsPsr4 =
|
56 |
-
$loader->prefixDirsPsr4 =
|
57 |
-
$loader->prefixesPsr0 =
|
58 |
|
59 |
}, null, ClassLoader::class);
|
60 |
}
|
4 |
|
5 |
namespace Composer\Autoload;
|
6 |
|
7 |
+
class ComposerStaticInitc8fdf561a12247167c5b8e6286092b12
|
8 |
{
|
9 |
public static $files = array (
|
10 |
'8ec4222c68e580a23520eef4abe4380f' => __DIR__ . '/..' . '/shortpixel/shortpixel-php/lib/ShortPixel.php',
|
52 |
public static function getInitializer(ClassLoader $loader)
|
53 |
{
|
54 |
return \Closure::bind(function () use ($loader) {
|
55 |
+
$loader->prefixLengthsPsr4 = ComposerStaticInitc8fdf561a12247167c5b8e6286092b12::$prefixLengthsPsr4;
|
56 |
+
$loader->prefixDirsPsr4 = ComposerStaticInitc8fdf561a12247167c5b8e6286092b12::$prefixDirsPsr4;
|
57 |
+
$loader->prefixesPsr0 = ComposerStaticInitc8fdf561a12247167c5b8e6286092b12::$prefixesPsr0;
|
58 |
|
59 |
}, null, ClassLoader::class);
|
60 |
}
|
vendor/composer/installed.json
CHANGED
@@ -1,23 +1,23 @@
|
|
1 |
[
|
2 |
{
|
3 |
"name": "bagrinsergiu/brizy-migration-utils",
|
4 |
-
"version": "1.
|
5 |
-
"version_normalized": "1.
|
6 |
"source": {
|
7 |
"type": "git",
|
8 |
"url": "git@github.com:bagrinsergiu/brizy-migration-utils.git",
|
9 |
-
"reference": "
|
10 |
},
|
11 |
"dist": {
|
12 |
"type": "zip",
|
13 |
-
"url": "https://api.github.com/repos/bagrinsergiu/brizy-migration-utils/zipball/
|
14 |
-
"reference": "
|
15 |
"shasum": ""
|
16 |
},
|
17 |
"require-dev": {
|
18 |
"phpunit/phpunit": "8.2.1"
|
19 |
},
|
20 |
-
"time": "2019-10-
|
21 |
"type": "library",
|
22 |
"installation-source": "dist",
|
23 |
"autoload": {
|
@@ -38,7 +38,7 @@
|
|
38 |
],
|
39 |
"description": "Data migration utils",
|
40 |
"support": {
|
41 |
-
"source": "https://github.com/bagrinsergiu/brizy-migration-utils/tree/1.
|
42 |
"issues": "https://github.com/bagrinsergiu/brizy-migration-utils/issues"
|
43 |
}
|
44 |
},
|
1 |
[
|
2 |
{
|
3 |
"name": "bagrinsergiu/brizy-migration-utils",
|
4 |
+
"version": "1.3",
|
5 |
+
"version_normalized": "1.3.0.0",
|
6 |
"source": {
|
7 |
"type": "git",
|
8 |
"url": "git@github.com:bagrinsergiu/brizy-migration-utils.git",
|
9 |
+
"reference": "22f262e2abc0c5e98826e726813abc8be57406ab"
|
10 |
},
|
11 |
"dist": {
|
12 |
"type": "zip",
|
13 |
+
"url": "https://api.github.com/repos/bagrinsergiu/brizy-migration-utils/zipball/22f262e2abc0c5e98826e726813abc8be57406ab",
|
14 |
+
"reference": "22f262e2abc0c5e98826e726813abc8be57406ab",
|
15 |
"shasum": ""
|
16 |
},
|
17 |
"require-dev": {
|
18 |
"phpunit/phpunit": "8.2.1"
|
19 |
},
|
20 |
+
"time": "2019-10-10T07:44:31+00:00",
|
21 |
"type": "library",
|
22 |
"installation-source": "dist",
|
23 |
"autoload": {
|
38 |
],
|
39 |
"description": "Data migration utils",
|
40 |
"support": {
|
41 |
+
"source": "https://github.com/bagrinsergiu/brizy-migration-utils/tree/1.3",
|
42 |
"issues": "https://github.com/bagrinsergiu/brizy-migration-utils/issues"
|
43 |
}
|
44 |
},
|