Browse Source

Low Fi: Add theme (#7652)

Takashi Irie 1 year ago
parent
commit
e3124941c9
57 changed files with 1911 additions and 0 deletions
  1. BIN
      lowfi/assets/fonts/amatic-sc_normal_400.ttf
  2. BIN
      lowfi/assets/fonts/amatic-sc_normal_700.ttf
  3. BIN
      lowfi/assets/fonts/josefin-sans_italic_100.ttf
  4. BIN
      lowfi/assets/fonts/josefin-sans_italic_200.ttf
  5. BIN
      lowfi/assets/fonts/josefin-sans_italic_300.ttf
  6. BIN
      lowfi/assets/fonts/josefin-sans_italic_400.ttf
  7. BIN
      lowfi/assets/fonts/josefin-sans_italic_500.ttf
  8. BIN
      lowfi/assets/fonts/josefin-sans_italic_600.ttf
  9. BIN
      lowfi/assets/fonts/josefin-sans_italic_700.ttf
  10. BIN
      lowfi/assets/fonts/josefin-sans_normal_100.ttf
  11. BIN
      lowfi/assets/fonts/josefin-sans_normal_200.ttf
  12. BIN
      lowfi/assets/fonts/josefin-sans_normal_300.ttf
  13. BIN
      lowfi/assets/fonts/josefin-sans_normal_400.ttf
  14. BIN
      lowfi/assets/fonts/josefin-sans_normal_500.ttf
  15. BIN
      lowfi/assets/fonts/josefin-sans_normal_600.ttf
  16. BIN
      lowfi/assets/fonts/josefin-sans_normal_700.ttf
  17. BIN
      lowfi/assets/images/header-image-amethyst.jpg
  18. BIN
      lowfi/assets/images/header-image-beach.jpg
  19. BIN
      lowfi/assets/images/header-image-dusk.jpg
  20. BIN
      lowfi/assets/images/header-image-lush.jpg
  21. BIN
      lowfi/assets/images/header-image-night.jpg
  22. BIN
      lowfi/assets/images/header-image-wheat.jpg
  23. BIN
      lowfi/assets/images/texture.png
  24. 60 0
      lowfi/functions.php
  25. 63 0
      lowfi/parts/comments.html
  26. 1 0
      lowfi/parts/footer.html
  27. 1 0
      lowfi/parts/header.html
  28. 41 0
      lowfi/patterns/footer.php
  29. 26 0
      lowfi/patterns/header-amethyst.php
  30. 26 0
      lowfi/patterns/header-beach.php
  31. 26 0
      lowfi/patterns/header-dusk.php
  32. 26 0
      lowfi/patterns/header-lush.php
  33. 26 0
      lowfi/patterns/header-night.php
  34. 27 0
      lowfi/patterns/header-wheat.php
  35. 35 0
      lowfi/patterns/hidden-404.php
  36. 35 0
      lowfi/patterns/hidden-archive.php
  37. 27 0
      lowfi/patterns/hidden-index.php
  38. 33 0
      lowfi/patterns/hidden-page.php
  39. 42 0
      lowfi/patterns/hidden-post-list.php
  40. 11 0
      lowfi/patterns/hidden-search-field.php
  41. 35 0
      lowfi/patterns/hidden-search.php
  42. 65 0
      lowfi/patterns/hidden-single.php
  43. 53 0
      lowfi/readme.txt
  44. BIN
      lowfi/screenshot.png
  45. 64 0
      lowfi/style.css
  46. 26 0
      lowfi/styles/amethyst.json
  47. 26 0
      lowfi/styles/dusk.json
  48. 26 0
      lowfi/styles/lush.json
  49. 26 0
      lowfi/styles/night.json
  50. 26 0
      lowfi/styles/wheat.json
  51. 1 0
      lowfi/templates/404.html
  52. 1 0
      lowfi/templates/archive.html
  53. 1 0
      lowfi/templates/index.html
  54. 1 0
      lowfi/templates/page.html
  55. 1 0
      lowfi/templates/search.html
  56. 1 0
      lowfi/templates/single.html
  57. 1052 0
      lowfi/theme.json

BIN
lowfi/assets/fonts/amatic-sc_normal_400.ttf


BIN
lowfi/assets/fonts/amatic-sc_normal_700.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_100.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_200.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_300.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_400.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_500.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_600.ttf


BIN
lowfi/assets/fonts/josefin-sans_italic_700.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_100.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_200.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_300.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_400.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_500.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_600.ttf


BIN
lowfi/assets/fonts/josefin-sans_normal_700.ttf


BIN
lowfi/assets/images/header-image-amethyst.jpg


BIN
lowfi/assets/images/header-image-beach.jpg


BIN
lowfi/assets/images/header-image-dusk.jpg


BIN
lowfi/assets/images/header-image-lush.jpg


BIN
lowfi/assets/images/header-image-night.jpg


BIN
lowfi/assets/images/header-image-wheat.jpg


BIN
lowfi/assets/images/texture.png


+ 60 - 0
lowfi/functions.php

@@ -0,0 +1,60 @@
+<?php
+/**
+ * Bedrock functions and definitions
+ *
+ * @link https://developer.wordpress.org/themes/basics/theme-functions/
+ *
+ * @package Bedrock
+ * @since Bedrock 1.0
+ */
+declare( strict_types = 1 );
+
+if ( ! function_exists( 'lowfi_support' ) ) :
+
+	/**
+	 * Sets up theme defaults and registers support for various WordPress functionalities.
+	 *
+	 * @since Bedrock 1.0
+	 *
+	 * @return void
+	 */
+	function lowfi_support() {
+
+		// Enqueue editor styles.
+		add_editor_style( 'style.css' );
+
+		// Make theme available for translation.
+		load_theme_textdomain( 'lowfi' );
+	}
+
+endif;
+
+add_action( 'after_setup_theme', 'lowfi_support' );
+
+if ( ! function_exists( 'lowfi_styles' ) ) :
+
+	/**
+	 * Enqueue styles.
+	 *
+	 * @since Bedrock 1.0
+	 *
+	 * @return void
+	 */
+	function lowfi_styles() {
+
+		// Register theme stylesheet.
+		wp_register_style(
+			'lowfi-style',
+			get_stylesheet_directory_uri() . '/style.css',
+			array(),
+			wp_get_theme()->get( 'Version' )
+		);
+
+		// Enqueue theme stylesheet.
+		wp_enqueue_style( 'lowfi-style' );
+
+	}
+
+endif;
+
+add_action( 'wp_enqueue_scripts', 'lowfi_styles' );

+ 63 - 0
lowfi/parts/comments.html

@@ -0,0 +1,63 @@
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group">
+	<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
+	<div class="wp-block-comments wp-block-comments-query-loop">
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80","bottom":"0"}}},"layout":{"type":"default"}} -->
+		<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:0">
+			<!-- wp:comments-title {"level":3,"fontSize":"large"} /-->
+
+			<!-- wp:group {"layout":{"type":"default"}} -->
+			<div class="wp-block-group">
+				<!-- wp:comment-template {"style":{"spacing":{"padding":{"left":"0px"}}}} -->
+					<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|60"}}}} -->
+					<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--60)">
+						<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+						<div class="wp-block-group">
+							<!-- wp:avatar {"size":36} /-->
+
+							<!-- wp:group -->
+							<div class="wp-block-group">
+								<!-- wp:comment-author-name /-->
+
+								<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}},"layout":{"type":"flex"}} -->
+								<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+									<!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a"} /-->
+
+									<!-- wp:comment-edit-link /-->
+								</div>
+								<!-- /wp:group -->
+							</div>
+							<!-- /wp:group -->
+						</div>
+						<!-- /wp:group -->
+
+						<!-- wp:comment-content /-->
+
+						<!-- wp:comment-reply-link /-->
+					</div>
+					<!-- /wp:group -->
+				<!-- /wp:comment-template -->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--60)">
+				<!-- wp:comments-pagination {"paginationArrow":"arrow","layout":{"type":"flex","justifyContent":"space-between"}} -->
+					<!-- wp:comments-pagination-previous /-->
+
+					<!-- wp:comments-pagination-next /-->
+				<!-- /wp:comments-pagination -->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"default"}} -->
+			<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+				<!-- wp:post-comments-form {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80"}}}} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:comments -->
+</div>
+<!-- /wp:group -->

+ 1 - 0
lowfi/parts/footer.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/footer"} /-->

+ 1 - 0
lowfi/parts/header.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/header-beach"} /-->

+ 41 - 0
lowfi/patterns/footer.php

@@ -0,0 +1,41 @@
+<?php
+/**
+ * Title: Footer
+ * Slug: lowfi/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--80);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+	<div class="wp-block-group">
+		<!-- wp:social-links {"iconColor":"contrast","iconColorValue":"#316460","openInNewTab":true,"size":"has-small-icon-size","style":{"spacing":{"blockGap":{"top":"var:preset|spacing|30","left":"var:preset|spacing|30"}}},"className":"is-style-logos-only"} -->
+		<ul class="wp-block-social-links has-small-icon-size has-icon-color is-style-logos-only">
+			<!-- wp:social-link {"url":"https://instagram.com/","service":"instagram"} /-->
+
+			<!-- wp:social-link {"url":"https://twitter.com/","service":"x"} /-->
+
+			<!-- wp:social-link {"url":"https://tumblr.com/","service":"tumblr"} /-->
+		</ul>
+		<!-- /wp:social-links -->
+
+		<!-- wp:paragraph {"lock":{"move":false,"remove":false},"className":"has-small-font-size","fontSize":"small"} -->
+		<p class="has-small-font-size">
+			<?php
+			$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'lowfi' ) ) . '" rel="nofollow">WordPress</a>';
+			echo sprintf(
+			/* Translators: WordPress link. */
+				esc_html__( 'Designed with %1$s', 'lowfi' ),
+				$wordpress_link
+			);?>
+		</p>
+		<!-- /wp:paragraph -->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 26 - 0
lowfi/patterns/header-amethyst.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: Header Amethyst
+ * Slug: lowfi/header-amethyst
+ * Categories: header
+ * Block Types: core/template-part/header
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:image {"lightbox":{"enabled":false},"width":"400px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"custom","style":{"border":{"radius":"10px"}}} -->
+	<figure class="wp-block-image size-full is-resized has-custom-border"><a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-image-amethyst.jpg" alt="" class="" style="border-radius:10px;aspect-ratio:1;object-fit:cover;width:400px"/></a></figure>
+	<!-- /wp:image -->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+		<!-- wp:site-tagline /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 26 - 0
lowfi/patterns/header-beach.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: Header Beach
+ * Slug: lowfi/header-beach
+ * Categories: header
+ * Block Types: core/template-part/header
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:image {"lightbox":{"enabled":false},"width":"400px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"custom","style":{"border":{"radius":"20px"}}} -->
+	<figure class="wp-block-image size-full is-resized has-custom-border"><a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-image-beach.jpg" alt="" class="" style="border-radius:20px;aspect-ratio:1;object-fit:cover;width:400px"/></a></figure>
+	<!-- /wp:image -->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+		<!-- wp:site-tagline /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 26 - 0
lowfi/patterns/header-dusk.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: Header Dusk
+ * Slug: lowfi/header-dusk
+ * Categories: header
+ * Block Types: core/template-part/header
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:image {"lightbox":{"enabled":false},"width":"400px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"custom","style":{"border":{"radius":"6px"}}} -->
+	<figure class="wp-block-image size-full is-resized has-custom-border"><a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-image-dusk.jpg" alt="" class="" style="border-radius:6px;aspect-ratio:1;object-fit:cover;width:400px"/></a></figure>
+	<!-- /wp:image -->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+		<!-- wp:site-tagline /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 26 - 0
lowfi/patterns/header-lush.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: Header Lush
+ * Slug: lowfi/header-lush
+ * Categories: header
+ * Block Types: core/template-part/header
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:image {"lightbox":{"enabled":false},"width":"400px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"custom","style":{"border":{"radius":"20px"}}} -->
+	<figure class="wp-block-image size-full is-resized has-custom-border"><a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-image-lush.jpg" alt="" class="" style="border-radius:20px;aspect-ratio:1;object-fit:cover;width:400px"/></a></figure>
+	<!-- /wp:image -->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+		<!-- wp:site-tagline /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 26 - 0
lowfi/patterns/header-night.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: Header Night
+ * Slug: lowfi/header-night
+ * Categories: header
+ * Block Types: core/template-part/header
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:image {"lightbox":{"enabled":false},"width":"400px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"custom","style":{"border":{"radius":"6px"}}} -->
+	<figure class="wp-block-image size-full is-resized has-custom-border"><a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-image-night.jpg" alt="" class="" style="border-radius:6px;aspect-ratio:1;object-fit:cover;width:400px"/></a></figure>
+	<!-- /wp:image -->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+		<!-- wp:site-tagline /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 27 - 0
lowfi/patterns/header-wheat.php

@@ -0,0 +1,27 @@
+<?php
+/**
+ * Title: Header Wheat
+ * Slug: lowfi/header-weat
+ * Categories: header
+ * Block Types: core/template-part/header
+ * Viewport width: 1280
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:image {"lightbox":{"enabled":false},"width":"400px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"custom","style":{"border":{"radius":"6px"}}} -->
+	<figure class="wp-block-image size-full is-resized has-custom-border">
+		<a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/header-image-wheat.jpg" alt="" class="" style="border-radius:6px;aspect-ratio:1;object-fit:cover;width:400px"/></a></figure>
+	<!-- /wp:image -->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-title {"level":0,"style":{"layout":{"selfStretch":"fit","flexSize":null}}} /-->
+		<!-- wp:site-tagline /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 35 - 0
lowfi/patterns/hidden-404.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * Title: 404
+ * Slug: lowfi/hidden-404
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"background":{"backgroundImage":{"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texture.png","source":"file","title":"texture"},"backgroundSize":"auto"},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh">
+	<!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /-->
+
+	<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:heading {"level":1} -->
+		<h1 class="wp-block-heading"><?php echo esc_html__( 'Page Not Found', 'lowfi' ); ?></h1>
+		<!-- /wp:heading -->
+
+		<!-- wp:paragraph -->
+		<p><?php echo esc_html__( 'The page you are looking for does not exist, or it has been moved. Please try searching using the form below.', 'lowfi' ); ?></p>
+		<!-- /wp:paragraph -->
+
+		<!-- wp:pattern {"slug":"lowfi/hidden-search-field"} /-->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignfull" style="margin-top:0px">
+		<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 35 - 0
lowfi/patterns/hidden-archive.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * Title: Archive
+ * Slug: lowfi/hidden-archive
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"background":{"backgroundImage":{"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texture.png","source":"file","title":"texture"},"backgroundSize":"auto"},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh">
+	<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+	<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40","margin":{"bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--60)">
+			<!-- wp:query-title {"type":"archive","showPrefix":false} /-->
+
+			<!-- wp:term-description /-->
+		</div>
+		<!-- /wp:group -->
+
+		<!-- wp:pattern {"slug":"lowfi/hidden-post-list"} /-->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 27 - 0
lowfi/patterns/hidden-index.php

@@ -0,0 +1,27 @@
+<?php
+/**
+ * Title: Index
+ * Slug: lowfi/hidden-index
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"background":{"backgroundImage":{"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texture.png","source":"file","title":"texture"},"backgroundSize":"auto"},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh">
+	<!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /-->
+
+	<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:pattern {"slug":"lowfi/hidden-post-list"} /-->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 33 - 0
lowfi/patterns/hidden-page.php

@@ -0,0 +1,33 @@
+<?php
+/**
+ * Title: Page
+ * Slug: lowfi/hidden-page
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"background":{"backgroundImage":{"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texture.png","source":"file","title":"texture"},"backgroundSize":"auto"},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh">
+	<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+	<!-- wp:group {"tagName":"main","align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"default"}} -->
+	<main class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:group {"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group">
+			<!-- wp:post-title {"level":1} /-->
+		</div>
+		<!-- /wp:group -->
+
+		<!-- wp:post-content {"lock":{"move":false,"remove":true},"layout":{"type":"constrained","justifyContent":"center"}} /-->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 42 - 0
lowfi/patterns/hidden-post-list.php

@@ -0,0 +1,42 @@
+<?php
+/**
+ * Title: Post List
+ * Slug: lowfi/hidden-post-list
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+
+<!-- wp:query {"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true}} -->
+<div class="wp-block-query">
+	<!-- wp:post-template {"style":{"spacing":{"blockGap":"var:preset|spacing|80"}},"layout":{"type":"default"}} -->
+		<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+		<div class="wp-block-group">
+			<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+			<div class="wp-block-group">
+				<!-- wp:post-date /-->
+
+				<!-- wp:post-title {"isLink":true} /-->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:post-excerpt {"moreText":"Read more","showMoreOnNewLine":false} /-->
+		</div>
+		<!-- /wp:group -->
+	<!-- /wp:post-template -->
+
+	<!-- wp:query-no-results -->
+		<!-- wp:paragraph -->
+		<p><?php echo esc_html_x( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'lowfi' ); ?></p>
+		<!-- /wp:paragraph -->
+	<!-- /wp:query-no-results -->
+
+	<!-- wp:query-pagination {"paginationArrow":"arrow","align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+		<!-- wp:query-pagination-previous /-->
+
+		<!-- wp:query-pagination-next /-->
+	<!-- /wp:query-pagination -->
+</div>
+<!-- /wp:query -->

+ 11 - 0
lowfi/patterns/hidden-search-field.php

@@ -0,0 +1,11 @@
+<?php
+/**
+ * Title: Search field
+ * Slug: lowfi/hidden-search-field
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:search {"showLabel":false,"placeholder":"<?php echo esc_html_x( 'Search...', 'This is a placeholder text in a search field', 'lowfi' ); ?>","buttonPosition":"button-inside","buttonUseIcon":true} /-->

+ 35 - 0
lowfi/patterns/hidden-search.php

@@ -0,0 +1,35 @@
+<?php
+/**
+ * Title: Search
+ * Slug: lowfi/hidden-search
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"background":{"backgroundImage":{"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texture.png","source":"file","title":"texture"},"backgroundSize":"auto"},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh">
+	<!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /-->
+
+	<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<main class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40","margin":{"bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--80)">
+			<!-- wp:query-title {"type":"search"} /-->
+
+			<!-- wp:pattern {"slug":"lowfi/hidden-search-field"} /-->
+		</div>
+		<!-- /wp:group -->
+		
+		<!-- wp:pattern {"slug":"lowfi/hidden-post-list"} /-->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 65 - 0
lowfi/patterns/hidden-single.php

@@ -0,0 +1,65 @@
+<?php
+/**
+ * Title: Search
+ * Slug: lowfi/hidden-single
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"background":{"backgroundImage":{"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texture.png","source":"file","title":"texture"},"backgroundSize":"auto"},"dimensions":{"minHeight":"100vh"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="min-height:100vh">
+	<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+	<!-- wp:group {"tagName":"main","align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"var:preset|spacing|60"}},"layout":{"type":"default"}} -->
+	<main class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:group {"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group">
+			<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+			<div class="wp-block-group">
+				<!-- wp:post-date /-->
+
+				<!-- wp:post-title /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:group -->
+
+		<!-- wp:post-content {"lock":{"move":false,"remove":true},"layout":{"type":"constrained","justifyContent":"center"}} /-->
+
+		<!-- wp:group {"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group">
+			<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20","padding":{"top":"var:preset|spacing|30"}},"border":{"top":{"color":"var:preset|color|contrast","width":"2px"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+			<div class="wp-block-group" style="border-top-color:var(--wp--preset--color--contrast);border-top-width:2px;padding-top:var(--wp--preset--spacing--30)">
+				<!-- wp:post-terms {"term":"category"} /-->
+
+				<!-- wp:post-terms {"term":"post_tag"} /-->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:group {"style":{"spacing":{"margin":{"top":"var:preset|spacing|80"}}},"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+			<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80)">
+				<!-- wp:post-navigation-link {"type":"previous","arrow":"arrow"} /-->
+
+				<!-- wp:post-navigation-link {"arrow":"arrow"} /-->
+			</div>
+			<!-- /wp:group -->
+		</div>
+		<!-- /wp:group -->
+	</main>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:template-part {"slug":"comments"} /-->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:group {"align":"full","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px">
+		<!-- wp:template-part {"slug":"footer","tagName":"footer","align":"full"} /-->
+	</div>
+	<!-- /wp:group -->
+</div>
+<!-- /wp:group -->

+ 53 - 0
lowfi/readme.txt

@@ -0,0 +1,53 @@
+=== Low Fi ===
+Contributors: Automattic
+Requires at least: 6.0
+Tested up to: 6.4.3
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Low Fi is a simple blog theme inspired by Lo-fi aesthetics and beats.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release
+
+== Copyright ==
+
+Low Fi WordPress Theme (C) 2023 Automattic
+Low Fi is distributed under the terms of the GNU GPL.
+
+This program is free software: you can redistribute it and/or modify
+it under the terms of the GNU General Public License as published by
+the Free Software Foundation, either version 2 of the License, or
+(at your option) any later version.
+
+This program is distributed in the hope that it will be useful,
+but WITHOUT ANY WARRANTY; without even the implied warranty of
+MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+GNU General Public License for more details.
+
+This theme bundles the following third-party resources:
+
+Concrete Wall by Atle Mo
+https://www.transparenttextures.com/
+
+All other images used in the templates were generated with AI using Midjourney.
+
+Josefin Sans Font
+Copyright 2010 The Josefin Sans Project Authors (https://github.com/ThomasJockin/JosefinSansFont-master), with Reserved Font Name "Josefin Sans". 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL 
+License URL: http://scripts.sil.org/OFL 
+Source: http://www.typemade.mx
+-- End of Josefin Sans Font credits --
+
+Amatic SC Font
+Copyright 2015 The Amatic SC Project Authors (https://github.com/googlefonts/AmaticSC) 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL 
+License URL: http://scripts.sil.org/OFL 
+Source: http://www.sansoxygen.com
+-- End of Amatic SC Font credits --
+

BIN
lowfi/screenshot.png


+ 64 - 0
lowfi/style.css

@@ -0,0 +1,64 @@
+/*
+Theme Name: Low Fi
+Theme URI: https://wordpress.com/theme/lowfi/
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Low Fi is a simple blog theme with Lo-fi aesthetics.
+Requires at least: 6.0
+Tested up to: 6.4.3
+Requires PHP: 5.7
+Version: 1.0.0
+License: GNU General Public License v2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+Text Domain: lowfi
+Tags: blog, one-column, wide-blocks, block-patterns, block-styles, full-site-editing, rtl-language-support, style-variations, threaded-comments, translation-ready
+*/
+
+/* Progresive enhancement to reduce widows and orphans. */
+h1, h2, h3, h4, h5, h6, blockquote {
+	text-wrap: balance;
+}
+
+p {
+	text-wrap: pretty;
+}
+
+/*
+ * Control the hover stylings of outline block style.
+ * Unnecessary once block styles are configurable via theme.json
+ * https://github.com/WordPress/gutenberg/issues/42794
+ */
+.wp-block-button.is-style-outline >.wp-block-button__link:not(.has-background):hover {
+	background-color: var(--wp--preset--color--accent-one);
+	border-color: var(--wp--preset--color--accent-one);
+	color: var(--wp--preset--color--base);
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: 1px !important;
+	text-decoration-style: dashed !important;
+	text-underline-offset: 3px;
+}
+
+/*
+ * Navigation Block
+ * Reset the padding from List block
+ * https://github.com/WordPress/gutenberg/issues/50486
+ */
+.wp-block-navigation ul {
+	padding: unset;
+}
+
+/*
+ * Pull quote Block
+ * Reset the browser default margins for blockquote and paragraph element
+ * https://github.com/WordPress/gutenberg/issues/44129
+ */
+.wp-block-pullquote blockquote,
+.wp-block-pullquote p {
+	margin: 0;
+}

+ 26 - 0
lowfi/styles/amethyst.json

@@ -0,0 +1,26 @@
+{
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"version": 2,
+	"title": "Amethyst",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#E1C9E7",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#644D95",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#644D95e6",
+					"name": "Accent / Two",
+					"slug": "accent-two"
+				}
+			]
+		}
+	}
+}

+ 26 - 0
lowfi/styles/dusk.json

@@ -0,0 +1,26 @@
+{
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"version": 2,
+	"title": "Dusk",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#4e2439",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#ffa4d3",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#ffa4d3e6",
+					"name": "Accent / Two",
+					"slug": "accent-two"
+				}
+			]
+		}
+	}
+}

+ 26 - 0
lowfi/styles/lush.json

@@ -0,0 +1,26 @@
+{
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"version": 2,
+	"title": "Lush",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#a59f6c",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#353C23",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#353C23e6",
+					"name": "Accent / Two",
+					"slug": "accent-two"
+				}
+			]
+		}
+	}
+}

+ 26 - 0
lowfi/styles/night.json

@@ -0,0 +1,26 @@
+{
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"version": 2,
+	"title": "Night",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#3D7A93",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#EBFCFF",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#EBFCFFe6",
+					"name": "Accent / Two",
+					"slug": "accent-two"
+				}
+			]
+		}
+	}
+}

+ 26 - 0
lowfi/styles/wheat.json

@@ -0,0 +1,26 @@
+{
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"version": 2,
+	"title": "Wheat",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#99632A",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#FFF2D3",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#FFF2D3e6",
+					"name": "Accent / Two",
+					"slug": "accent-two"
+				}
+			]
+		}
+	}
+}

+ 1 - 0
lowfi/templates/404.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/hidden-404"} /-->

+ 1 - 0
lowfi/templates/archive.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/hidden-archive"} /-->

+ 1 - 0
lowfi/templates/index.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/hidden-index"} /-->

+ 1 - 0
lowfi/templates/page.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/hidden-page"} /-->

+ 1 - 0
lowfi/templates/search.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/hidden-search"} /-->

+ 1 - 0
lowfi/templates/single.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug":"lowfi/hidden-single"} /-->

+ 1052 - 0
lowfi/theme.json

@@ -0,0 +1,1052 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": false,
+			"defaultGradients": false,
+			"defaultPalette": false,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#e9debe",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#316460",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#316460E6",
+					"name": "Accent / One",
+					"slug": "accent-one"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "400px",
+			"wideSize": "80vw"
+		},
+		"shadow": {
+			"defaultPresets": true,
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"steps": 0
+			},
+			"spacingSizes": [
+				{
+					"name": "1",
+					"size": "0.25rem",
+					"slug": "20"
+				},
+				{
+					"name": "2",
+					"size": "0.5rem",
+					"slug": "30"
+				},
+				{
+					"name": "3",
+					"size": "0.75rem",
+					"slug": "40"
+				},
+				{
+					"name": "4",
+					"size": "1.375rem",
+					"slug": "50"
+				},
+				{
+					"name": "5",
+					"size": "2rem",
+					"slug": "60"
+				},
+				{
+					"name": "6",
+					"size": "4.125rem",
+					"slug": "70"
+				},
+				{
+					"name": "7",
+					"size": "5.5rem",
+					"slug": "80"
+				}
+			],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"dropCap": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "100",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_100.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/josefin-sans_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "100",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_100.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Josefin Sans",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/josefin-sans_italic_700.ttf"
+							]
+						}
+					],
+					"fontFamily": "Josefin Sans",
+					"slug": "josefin-sans"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Amatic SC",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/amatic-sc_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Amatic SC",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/amatic-sc_normal_700.ttf"
+							]
+						}
+					],
+					"fontFamily": "Amatic SC",
+					"slug": "amatic-sc"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": false,
+					"name": "Extra Small",
+					"size": "0.64rem",
+					"slug": "x-small"
+				},
+				{
+					"fluid": false,
+					"name": "Small",
+					"size": "0.8rem",
+					"slug": "small"
+				},
+				{
+					"fluid": false,
+					"name": "Medium",
+					"size": "1rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": false,
+					"name": "Large",
+					"size": "1.563rem",
+					"slug": "large"
+				},
+				{
+					"fluid": false,
+					"name": "Extra Large",
+					"size": "1.953rem",
+					"slug": "x-large"
+				},
+				{
+					"fluid": false,
+					"name": "Double Extra Large",
+					"size": "2.441rem",
+					"slug": "xx-large"
+				},
+				{
+					"fluid": false,
+					"name": "Triple Extra Large",
+					"size": "3.052rem",
+					"slug": "xxx-large"
+				}
+			],
+			"fontStyle": true,
+			"fontWeight": true,
+			"letterSpacing": true,
+			"textDecoration": true,
+			"textTransform": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/archives": {
+				"css": "& {list-style-type:none;} & li+li{margin-top: 0.25rem;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "0"
+					}
+				}
+			},
+			"core/avatar": {
+				"border": {
+					"radius": "6px"
+				}
+			},
+			"core/button": {
+				"variations": {
+					"outline": {
+						"spacing": {
+							"padding": {
+								"bottom": "0.625rem",
+								"left": "1.25rem",
+								"right": "1.25rem",
+								"top": "0.875rem"
+							}
+						},
+						"typography": {
+							"fontWeight": "700"
+						}
+					}
+				}
+			},
+			"core/buttons": {
+				"spacing": {
+					"blockGap": "var(--wp--preset--spacing--40)"
+				}
+			},
+			"core/calendar": {
+				"css": ".wp-block-calendar table:where(:not(.has-text-color)) {color: var(--wp--preset--color--contrast);} &.wp-block-calendar table:where(:not(.has-text-color)) td {border-color: var(--wp--preset--color--contrast);} &.wp-block-calendar table:where(:not(.has-text-color)) th {border-color: var(--wp--preset--color--contrast);} & :where(.wp-block-calendar table:not(.has-background) th) {background-color: var(--wp--preset--color--contrast);color: var(--wp--preset--color--base);}"
+			},
+			"core/categories": {
+				"css": "& {list-style-type:none;} & li+li{margin-top: 0.25rem;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "0"
+					}
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"radius": "255px 15px 225px 15px/15px 225px 15px 255px",
+					"style": "solid",
+					"width": "2px"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"left": "var(--wp--preset--spacing--40)",
+						"right": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/comment-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-content": {
+				"css": "& p{margin-bottom:0;} & p+p{margin-top:var(--wp--preset--spacing--40)}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-edit-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-reply-link": {
+				"elements": {
+					"link": {
+						":focus": {
+							"color": {
+								"background": "var(--wp--preset--color--contrast)",
+								"text": "var(--wp--preset--color--base)"
+							}
+						},
+						":hover": {
+							"color": {
+								"background": "var(--wp--preset--color--contrast)",
+								"text": "var(--wp--preset--color--base)"
+							}
+						},
+						"border": {
+							"color": "var(--wp--preset--color--contrast)",
+							"radius": "255px 30px 225px 30px/30px 225px 30px 255px",
+							"style": "solid",
+							"width": "2px"
+						},
+						"spacing": {
+							"padding": "0.5625rem 0.875rem 0.3125rem"
+						},
+						"typography": {
+							"fontSize": "var(--wp--preset--font-size--x-small)",
+							"fontWeight": "700",
+							"lineHeight": "1",
+							"textDecoration": "none",
+							"textTransform": "uppercase"
+						}
+					}
+				}
+			},
+			"core/comments-pagination": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/comments-title": {
+				"spacing": {
+					"margin": {
+						"bottom": "0",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)"
+				}
+			},
+			"core/cover": {
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/image": {
+				"css": " .wp-element-caption{text-align:center;}"
+			},
+			"core/latest-comments": {
+				"css": "& .wp-block-latest-comments__comment-meta{font-size: inherit;} & .wp-block-latest-comments__comment-date{font-size: inherit;} & .wp-block-latest-comments__comment-excerpt p{font-size: inherit;} & .wp-block-latest-comments__comment-excerpt p{margin:0 0 var(--wp--style--block-gap)} &:where(.wp-block-latest-comments:not([style*=line-height] .wp-block-latest-comments__comment-excerpt p)){line-height:calc(1em + 0.375rem);} & .avatar, .wp-block-latest-comments__comment-avatar{border-radius:6px;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "0px"
+					}
+				}
+			},
+			"core/latest-posts": {
+				"css": ".wp-block-latest-posts .wp-block-latest-posts__post-author{font-size: inherit;} & .wp-block-latest-posts__post-date{font-size: inherit;} & .wp-block-latest-posts__post-excerpt{margin:0 0 var(--wp--style--block-gap)} & .wp-block-latest-posts__post-title{text-decoration: none;}"
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/loginout": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/navigation": {
+				"css": ".wp-block-navigation:not(.has-background) .wp-block-navigation__submenu-container {border-color:var(--wp--preset--color--contrast);} & .wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-dialog{padding:var(--wp--style--block-gap);} & .wp-block-navigation__responsive-container-close{right:var(--wp--style--block-gap);top:var(--wp--style--block-gap);} & .wp-block-page-list li+li{margin-top:0;}",
+				"spacing": {
+					"blockGap": "var(--wp--preset--spacing--40)"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/page-list": {
+				"css": "& {list-style-type:none;} & li+li{margin-top: 0.25rem;}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "0"
+					}
+				}
+			},
+			"core/paragraph": {
+				"typography": {
+					"lineHeight": "calc(1em + 0.375rem)"
+				}
+			},
+			"core/post-author": {
+				"css": "& .wp-block-post-author__byline{font-size:inherit;}&.wp-block-post-author .wp-block-post-author__name a{text-decoration:none;}&.wp-block-post-author .wp-block-post-author__bio{font-size:inherit;margin:0;}& .wp-block-post-author__avatar img{border-radius: 6px;vertical-align:middle;}"
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-comments-count": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-comments-form": {
+				"css": "&.comment-form input:not([type=submit]):not([type=checkbox]){line-height: inherit;} & .comment-form textarea{line-height: inherit;} & .comment-form > *{margin-top:var(--wp--style--block-gap);margin-bottom:0} & .comment-reply-title{font-size:var(--wp--preset--font-size--large);"
+			},
+			"core/post-comments-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-content": {
+				"elements": {
+					"heading": {
+						"spacing": {
+							"margin": {
+								"bottom": "var(--wp--preset--spacing--50)",
+								"top": "var(--wp--preset--spacing--60)"
+							}
+						}
+					}
+				}
+			},
+			"core/post-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-excerpt": {
+				"css": ".wp-block-post-excerpt .wp-block-post-excerpt__excerpt{line-height: inherit;}"
+			},
+			"core/post-navigation-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-terms": {
+				"css": ".wp-block-post-terms.taxonomy-post_tag a:before{content:'#';}",
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-time-to-read": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xx-large)"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"style": "solid",
+					"width": "1px 0"
+				},
+				"css": ".wp-block-pullquote cite {display:block;margin-top: var(--wp--preset--spacing--50)}",
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/query-pagination": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"top": "var(--wp--preset--spacing--80)"
+					}
+				}
+			},
+			"core/query-pagination-next": {
+				"css": ".wp-block-query-pagination-next{margin:0;}"
+			},
+			"core/query-pagination-numbers": {
+				"css": ".wp-block-query-pagination-numbers{margin:0;}"
+			},
+			"core/query-pagination-previous": {
+				"css": ".wp-block-query-pagination-previous{margin:0;}"
+			},
+			"core/query-title": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"margin": {
+						"left": "0",
+						"right": "0"
+					},
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "italic"
+				},
+				"variations": {
+					"plain": {
+						"border": {
+							"width": "0"
+						},
+						"spacing": {
+							"padding": {
+								"left": "0"
+							}
+						},
+						"typography": {
+							"fontStyle": "normal"
+						}
+					}
+				}
+			},
+			"core/rss": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/search": {
+				"css": "& :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper){border-color:#fff;background-color:#fff;} & :where(.wp-block-search__button-inside .wp-block-search__inside-wrapper) .wp-block-search__input{padding: 0 8px;} & .wp-block-search__button.has-icon{padding:0.375rem;}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "dashed",
+					"width": "0 0 2px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/site-title": {
+				"elements": {
+					"link": {
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--amatic-sc)",
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"fontWeight": "700",
+					"lineHeight": "0.8"
+				}
+			},
+			"core/social-links": {
+				"spacing": {
+					"blockGap": {
+						"left": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/table": {
+				"css": "& thead{border-bottom-width: 1px;} & tfoot{border-top-width: 1px;} & + .wp-element-caption{text-align:center;}"
+			},
+			"core/table-of-contents": {
+				"elements": {
+					"link": {
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--40)"
+					}
+				}
+			},
+			"core/tag-cloud": {
+				"css": ".wp-block-tag-cloud.is-style-outline{font-size:var(--wp--preset--font-size--small);line-height:1} &.wp-block-tag-cloud.is-style-outline a {border-radius:999px;padding: 5px 12px 3px;} &.wp-block-tag-cloud.is-style-outline a:hover {color: var(--wp--preset--color--base);background-color: var(--wp--preset--color--contrast);}"
+			},
+			"core/term-description": {
+				"css": "& p+p {margin-top:calc(1em + 0.375rem);}",
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--base)",
+			"text": "var(--wp--preset--color--contrast)"
+		},
+		"elements": {
+			"button": {
+				":focus": {
+					"border": {
+						"color": "var(--wp--preset--color--accent-one)"
+					},
+					"color": {
+						"background": "var(--wp--preset--color--accent-one)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				":hover": {
+					"border": {
+						"color": "var(--wp--preset--color--accent-one)"
+					},
+					"color": {
+						"background": "var(--wp--preset--color--accent-one)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"radius": "255px 20px 225px 20px/20px 225px 20px 255px",
+					"style": "solid",
+					"width": "2px"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--contrast)",
+					"text": "var(--wp--preset--color--base)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "0.625rem",
+						"left": "1.25rem",
+						"right": "1.25rem",
+						"top": "0.875rem"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontWeight": "700",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"caption": {
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--30)"
+					},
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xx-large)"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--amatic-sc)",
+					"fontWeight": "600",
+					"lineHeight": "0.9"
+				}
+			},
+			"link": {
+				":hover": {
+					"color": {
+						"text": "var(--wp--preset--color--accent-one)"
+					},
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"typography": {
+					"textDecoration": "underline"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var(--wp--preset--spacing--50)",
+			"padding": {
+				"bottom": "0px",
+				"left": "var(--wp--preset--spacing--50)",
+				"right": "var(--wp--preset--spacing--50)",
+				"top": "0px"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--josefin-sans)",
+			"fontSize": "var(--wp--preset--font-size--medium)",
+			"fontStyle": "normal",
+			"fontWeight": "400",
+			"lineHeight": "1.375"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "uncategorized",
+			"name": "comments",
+			"title": "Comments"
+		},
+		{
+			"area": "header",
+			"name": "header",
+			"title": "Header"
+		},
+		{
+			"area": "footer",
+			"name": "footer",
+			"title": "Footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}