瀏覽代碼

Texty: Add theme (#7325)

* add texty theme

* fix templates and patterns

* fix theme.json and license information

* add style variations

* reduce footer image size
Madhu Dollu 1 年之前
父節點
當前提交
c8db4bb077
共有 45 個文件被更改,包括 1555 次插入0 次删除
  1. 二進制
      texty/assets/fonts/figtree_italic_400.ttf
  2. 二進制
      texty/assets/fonts/figtree_italic_500.ttf
  3. 二進制
      texty/assets/fonts/figtree_italic_700.ttf
  4. 二進制
      texty/assets/fonts/figtree_normal_400.ttf
  5. 二進制
      texty/assets/fonts/figtree_normal_500.ttf
  6. 二進制
      texty/assets/fonts/figtree_normal_700.ttf
  7. 二進制
      texty/assets/fonts/plus-jakarta-sans_italic_300.ttf
  8. 二進制
      texty/assets/fonts/plus-jakarta-sans_italic_500.ttf
  9. 二進制
      texty/assets/fonts/plus-jakarta-sans_italic_600.ttf
  10. 二進制
      texty/assets/fonts/plus-jakarta-sans_normal_300.ttf
  11. 二進制
      texty/assets/fonts/plus-jakarta-sans_normal_500.ttf
  12. 二進制
      texty/assets/fonts/plus-jakarta-sans_normal_600.ttf
  13. 二進制
      texty/assets/images/image-from-rawpixel-id-3049828.jpg
  14. 二進制
      texty/assets/images/texty_brand_black.png
  15. 60 0
      texty/functions.php
  16. 1 0
      texty/parts/about.html
  17. 1 0
      texty/parts/footer-pages.html
  18. 1 0
      texty/parts/footer.html
  19. 1 0
      texty/parts/header-pages.html
  20. 11 0
      texty/parts/header.html
  21. 15 0
      texty/parts/post-meta.html
  22. 51 0
      texty/parts/sidebar.html
  23. 26 0
      texty/patterns/404.php
  24. 52 0
      texty/patterns/comments.php
  25. 50 0
      texty/patterns/footer-pages.php
  26. 48 0
      texty/patterns/footer.php
  27. 31 0
      texty/patterns/header-pages.php
  28. 22 0
      texty/patterns/hidden-about-content.php
  29. 10 0
      texty/patterns/hidden-no-results-content.php
  30. 46 0
      texty/readme.txt
  31. 二進制
      texty/screenshot.png
  32. 35 0
      texty/style.css
  33. 48 0
      texty/styles/burgundy.json
  34. 37 0
      texty/styles/fullmetal.json
  35. 38 0
      texty/styles/lightyear.json
  36. 38 0
      texty/styles/maroon.json
  37. 38 0
      texty/styles/phosphorus.json
  38. 19 0
      texty/templates/404.html
  39. 53 0
      texty/templates/archive.html
  40. 43 0
      texty/templates/home.html
  41. 55 0
      texty/templates/index.html
  42. 9 0
      texty/templates/page.html
  43. 53 0
      texty/templates/search.html
  44. 77 0
      texty/templates/single.html
  45. 586 0
      texty/theme.json

二進制
texty/assets/fonts/figtree_italic_400.ttf


二進制
texty/assets/fonts/figtree_italic_500.ttf


二進制
texty/assets/fonts/figtree_italic_700.ttf


二進制
texty/assets/fonts/figtree_normal_400.ttf


二進制
texty/assets/fonts/figtree_normal_500.ttf


二進制
texty/assets/fonts/figtree_normal_700.ttf


二進制
texty/assets/fonts/plus-jakarta-sans_italic_300.ttf


二進制
texty/assets/fonts/plus-jakarta-sans_italic_500.ttf


二進制
texty/assets/fonts/plus-jakarta-sans_italic_600.ttf


二進制
texty/assets/fonts/plus-jakarta-sans_normal_300.ttf


二進制
texty/assets/fonts/plus-jakarta-sans_normal_500.ttf


二進制
texty/assets/fonts/plus-jakarta-sans_normal_600.ttf


二進制
texty/assets/images/image-from-rawpixel-id-3049828.jpg


二進制
texty/assets/images/texty_brand_black.png


+ 60 - 0
texty/functions.php

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

+ 1 - 0
texty/parts/about.html

@@ -0,0 +1 @@
+<!-- wp:pattern {"slug": "texty/hidden-about-content"} /-->

+ 1 - 0
texty/parts/footer-pages.html

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

+ 1 - 0
texty/parts/footer.html

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

+ 1 - 0
texty/parts/header-pages.html

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

+ 11 - 0
texty/parts/header.html

@@ -0,0 +1,11 @@
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"2rem","right":"0rem","bottom":"2rem","left":"0rem"},"blockGap":"0px","margin":{"top":"0rem","bottom":"0rem"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0rem;margin-bottom:0rem;padding-top:2rem;padding-right:0rem;padding-bottom:2rem;padding-left:0rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0px","top":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"flex","justifyContent":"space-between","verticalAlignment":"top"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top"}} -->
+<div class="wp-block-group"><!-- wp:site-logo {"width":48,"shouldSyncIcon":false,"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"}}}} /-->
+
+<!-- wp:navigation {"textColor":"background","overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"stretch","orientation":"vertical"},"style":{"typography":{"fontStyle":"normal","fontWeight":"500","lineHeight":"1","fontSize":"1.8rem"},"spacing":{"blockGap":"0.2rem"}}} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:navigation {"textColor":"background","overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"left","orientation":"vertical"},"style":{"typography":{"fontStyle":"normal","fontWeight":"500","lineHeight":"1","fontSize":"1.2rem"},"spacing":{"blockGap":"0.5rem"}}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 15 - 0
texty/parts/post-meta.html

@@ -0,0 +1,15 @@
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0rem","bottom":"2rem"},"blockGap":"1rem"}},"layout":{"type":"flex","verticalAlignment":"top"}} -->
+<div class="wp-block-group" style="margin-top:0rem;margin-bottom:2rem;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:post-date {"isLink":true,"style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:1.2rem;font-style:normal;font-weight:500;line-height:1.5">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-terms {"term":"category","style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:1.2rem;font-style:normal;font-weight:500;line-height:1.5">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-time-to-read {"style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /--></div>
+<!-- /wp:group -->

+ 51 - 0
texty/parts/sidebar.html

@@ -0,0 +1,51 @@
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"4rem"}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical","verticalAlignment":"space-between","justifyContent":"stretch"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group"><!-- wp:heading {"level":3,"style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"1.5rem"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<h3 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:1.5rem;font-size:1.2rem;font-style:normal;font-weight:500;line-height:1.5">Related Articles</h3>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph {"align":"right","style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"1.5rem"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<p class="has-text-align-right" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:1.5rem;font-size:1.2rem;font-style:normal;font-weight:500;line-height:1.5"><a href="/posts/">All articles</a> ↘</p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:query {"queryId":21,"query":{"perPage":"3","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":{"category":[]}},"displayLayout":{"type":"list","columns":3},"align":"full","layout":{"type":"default"}} -->
+<div class="wp-block-query alignfull"><!-- wp:post-template -->
+<!-- wp:group {"style":{"spacing":{"blockGap":"1rem","margin":{"top":"0rem","bottom":"4rem"},"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"1.5rem"}},"border":{"left":{"width":"1px","style":"dotted"}}},"layout":{"type":"constrained","justifyContent":"center"}} -->
+<div class="wp-block-group" style="border-left-style:dotted;border-left-width:1px;margin-top:0rem;margin-bottom:4rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:1.5rem"><!-- wp:post-excerpt {"moreText":"Read","showMoreOnNewLine":false,"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}},"typography":{"lineHeight":"1.5","fontSize":"1.2rem"}},"textColor":"primary"} /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group"><!-- wp:post-terms {"term":"category","style":{"typography":{"fontStyle":"normal","fontWeight":"400","fontSize":"0.8rem","lineHeight":"1.4"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","fontSize":"0.8rem","lineHeight":"1.4"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<p style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:0.8rem;font-style:normal;font-weight:400;line-height:1.4">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-date {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","fontSize":"0.8rem","lineHeight":"1.4"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template --></div>
+<!-- /wp:query --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"1.5rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"3rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:1.5rem"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0rem"},"blockGap":"1.5rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0rem;padding-top:0px;padding-right:0%;padding-bottom:0px;padding-left:0px"><!-- wp:heading {"level":3,"style":{"typography":{"lineHeight":"1.5","fontStyle":"normal","fontWeight":"500","fontSize":"1.2rem"},"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<h3 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;font-size:1.2rem;font-style:normal;font-weight:500;line-height:1.5">Get updates</h3>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}},"typography":{"lineHeight":"1.5","fontSize":"1.2rem"}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:1.2rem;line-height:1.5">Spam-free subscription, we guarantee. This is just a friendly ping when new content is out.</p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:jetpack/contact-form {"subject":"[Texty] Posts","to":"henrique.iamarino@a8c.com","className":"is-style-animated","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<div class="wp-block-jetpack-contact-form is-style-animated" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:jetpack/field-name {"required":true,"requiredText":"(required)","borderRadius":4,"borderWidth":1,"labelFontSize":"1rem","fieldFontSize":"1rem","lineHeight":1,"labelLineHeight":1,"inputColor":"#111111","labelColor":"#111111","borderColor":"#111111"} /-->
+
+<!-- wp:jetpack/field-email {"required":true,"requiredText":"(required)","borderRadius":4,"borderWidth":1,"labelFontSize":"1rem","fieldFontSize":"1rem","lineHeight":1,"labelLineHeight":1,"inputColor":"#111111","labelColor":"#111111","borderColor":"#111111"} /-->
+
+<!-- wp:jetpack/button {"element":"button","text":"Subscribe","textColor":"background","backgroundColor":"primary","borderRadius":4,"width":"100%","lock":{"remove":true},"fontSize":"small"} /--></div>
+<!-- /wp:jetpack/contact-form --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 26 - 0
texty/patterns/404.php

@@ -0,0 +1,26 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: texty/404
+ * Inserter: no
+ */
+
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"4rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:4rem;padding-top:0px;padding-right:0%;padding-bottom:0px;padding-left:0px"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"1rem"}},"layout":{"type":"flex","orientation":"vertical","flexWrap":"nowrap"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:heading {"textAlign":"left","level":1,"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"fontSize":"3.6rem"}},"anchor":"oops-that-page-can-t-be-found"} -->
+<h1 class="wp-block-heading alignfull has-text-align-left" id="oops-that-page-can-t-be-found" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:3.6rem"><?php echo esc_html__( 'Oops! Sorry.', 'texty' ); ?></h1>
+<!-- /wp:heading -->
+
+<!-- wp:heading {"textAlign":"left","level":1,"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"fontSize":"3.6rem"}},"anchor":"oops-that-page-can-t-be-found"} -->
+<h1 class="wp-block-heading alignfull has-text-align-left" id="oops-that-page-can-t-be-found" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;font-size:3.6rem"><?php echo esc_html__( 'There\'s no page in here...', 'texty' ); ?></h1>
+<!-- /wp:heading --></div>
+<!-- /wp:group -->
+
+<!-- wp:paragraph {"align":"left"} -->
+<p class="has-text-align-left"><?php echo esc_html__( 'It looks like nothing was found at this location.', 'texty' ); ?><br><?php echo esc_html__( 'Maybe try a search?', 'texty' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:search {"showLabel":false,"placeholder":"<?php echo esc_attr__( 'Search...', 'texty' ); ?>","width":50,"widthUnit":"%","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"width":"0px","style":"none"}}} /--></div>
+<!-- /wp:group -->

+ 52 - 0
texty/patterns/comments.php

@@ -0,0 +1,52 @@
+<?php
+/**
+ * Title: Comments
+ * slug: texty/comments
+ * inserter: no
+ */
+
+?>
+
+<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
+<div class="wp-block-comments wp-block-comments-query-loop">
+	<!-- wp:comments-title {"level":3} /-->
+
+	<!-- wp:comment-template -->
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
+		<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)">
+			<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"},"style":{"spacing":{"blockGap":"0.5em"}}} -->
+			<div class="wp-block-group">
+				<!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}}}} /-->
+
+				<!-- wp:group -->
+				<div class="wp-block-group">
+					<!-- wp:comment-author-name /-->
+
+					<!-- wp:group {"layout":{"type":"flex"},"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}}} -->
+					<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 -->
+
+	<!-- wp:comments-pagination -->
+		<!-- wp:comments-pagination-previous /-->
+		<!-- wp:comments-pagination-numbers /-->
+		<!-- wp:comments-pagination-next /-->
+	<!-- /wp:comments-pagination -->
+
+	<!-- wp:post-comments-form /-->
+</div>
+<!-- /wp:comments -->

+ 50 - 0
texty/patterns/footer-pages.php

@@ -0,0 +1,50 @@
+<?php
+/**
+ * Title: footer-pages
+ * Slug: texty/footer-pages
+ * Categories: hidden
+ * Inserter: no
+ */
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"right":"4rem","left":"4rem"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="padding-right:4rem;padding-left:4rem"><!-- wp:group {"align":"full","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"16rem","bottom":"16rem","right":"0rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:16rem;padding-right:0rem;padding-bottom:16rem;padding-left:0rem"><!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"5%","left":"5%"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"15%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"4rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:4rem;padding-top:0px;padding-right:15%;padding-bottom:0px;padding-left:0px"><!-- wp:heading -->
+<h2 class="wp-block-heading"><?php echo esc_html__( 'Download Texty', 'texty' ); ?></h2>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.2rem","lineHeight":"1.2"}}} -->
+<p style="font-size:3.2rem;line-height:1.2"><?php echo esc_html__( 'Texty is a magazine-style theme design that displays blog posts, reviews, and news in an original way.', 'texty' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.2rem","lineHeight":"1.2"}}} -->
+<p style="font-size:3.2rem;line-height:1.2"><?php echo esc_html__( 'Texty comes with different style variations to spark your creativity in making it just as you\'d like to. Enjoy!', 'texty' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"2rem","lineHeight":"1.4"}}} -->
+<p class="has-text-align-left" style="font-size:2rem;line-height:1.4"><?php echo esc_html__( 'Designed with', 'texty' ); ?><a rel="nofollow" href="https://wordpress.org"><?php echo esc_html__( 'WordPress', 'texty' ); ?></a></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-3049828.jpg","id":575,"dimRatio":0,"focalPoint":{"x":0.5,"y":0.4},"minHeight":90,"minHeightUnit":"vh","contentPosition":"top left","isDark":false,"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-cover is-light has-custom-content-position is-position-top-left" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background wp-image-575" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-3049828.jpg" style="object-position:50% 40%" data-object-fit="cover" data-object-position="50% 40%"/><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"align":"full","style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}},"spacing":{"blockGap":"0.5rem","padding":{"top":"0rem","right":"4rem","bottom":"4rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"background","textColor":"primary","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignfull has-primary-color has-background-background-color has-text-color has-background has-link-color" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:4rem;padding-bottom:4rem;padding-left:0rem"><!-- wp:paragraph {"style":{"typography":{"fontSize":"2rem","lineHeight":"1.4"},"layout":{"selfStretch":"fit","flexSize":null}}} -->
+<p style="font-size:2rem;line-height:1.4"><?php echo esc_html__( 'Month Discover — Incoming Tide, Scarboro, Maine (1883) by&nbsp;', 'texty' ); ?><a href="https://artvee.com/artist/winslow-homer/" target="_blank" rel="noreferrer noopener"><?php echo esc_html__( 'Winslow Homer', 'texty' ); ?></a><?php echo esc_html__( '.', 'texty' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div></div>
+<!-- /wp:cover --></div>
+<!-- /wp:group -->

+ 48 - 0
texty/patterns/footer.php

@@ -0,0 +1,48 @@
+<?php
+/**
+ * Title: footer
+ * Slug: texty/footer
+ * Categories: hidden
+ * Inserter: no
+ */
+?>
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"16rem","bottom":"16rem","right":"0rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:16rem;padding-right:0rem;padding-bottom:16rem;padding-left:0rem"><!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"0px","left":"0px"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"15%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"4rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:4rem;padding-top:0px;padding-right:15%;padding-bottom:0px;padding-left:0px"><!-- wp:heading -->
+<h2 class="wp-block-heading"><?php echo esc_html__( 'Download Texty', 'texty' ); ?></h2>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.2rem","lineHeight":"1.2"}}} -->
+<p style="font-size:3.2rem;line-height:1.2"><?php echo esc_html__( 'Texty is a magazine-style theme design that displays blog posts, reviews, and news in an original way.', 'texty' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.2rem","lineHeight":"1.2"}}} -->
+<p style="font-size:3.2rem;line-height:1.2"><?php echo esc_html__( 'Texty comes with different style variations to spark your creativity in making it just as you\'d like to. Enjoy!', 'texty' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"2rem","lineHeight":"1.4"}}} -->
+<p class="has-text-align-left" style="font-size:2rem;line-height:1.4"><?php echo esc_html__( 'Designed with', 'texty' ); ?><a rel="nofollow" href="https://wordpress.org"><?php echo esc_html__( 'WordPress', 'texty' ); ?></a></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-3049828.jpg","id":575,"dimRatio":0,"focalPoint":{"x":0.5,"y":0.4},"minHeight":90,"minHeightUnit":"vh","contentPosition":"top left","isDark":false,"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-cover is-light has-custom-content-position is-position-top-left" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem;min-height:90vh"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background wp-image-575" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/image-from-rawpixel-id-3049828.jpg" style="object-position:50% 40%" data-object-fit="cover" data-object-position="50% 40%"/><div class="wp-block-cover__inner-container"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"align":"full","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}},"spacing":{"blockGap":"0.5rem","padding":{"top":"0rem","right":"4rem","bottom":"4rem","left":"0rem"},"margin":{"top":"0px","bottom":"0px"}}},"backgroundColor":"primary","textColor":"background","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color" style="margin-top:0px;margin-bottom:0px;padding-top:0rem;padding-right:4rem;padding-bottom:4rem;padding-left:0rem"><!-- wp:paragraph {"style":{"typography":{"fontSize":"2rem","lineHeight":"1.4"},"layout":{"selfStretch":"fit","flexSize":null}}} -->
+<p style="font-size:2rem;line-height:1.4"><?php echo esc_html__( 'Month Discover — Incoming Tide, Scarboro, Maine (1883) by', 'texty' ); ?><a href="https://artvee.com/artist/winslow-homer/" target="_blank" rel="noreferrer noopener"><?php echo esc_html__( 'Winslow Homer', 'texty' ); ?></a><?php echo esc_html__( '.', 'texty' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div></div>
+<!-- /wp:cover -->

+ 31 - 0
texty/patterns/header-pages.php

@@ -0,0 +1,31 @@
+<?php
+/**
+ * Title: header-pages
+ * Slug: texty/header-pages
+ * Categories: hidden
+ * Inserter: no
+ */
+?>
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0rem","right":"4rem","bottom":"0rem","left":"4rem"},"margin":{"top":"0rem","bottom":"0rem"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:4rem;padding-bottom:0rem;padding-left:4rem"><!-- wp:spacer {"height":"2rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
+<div style="margin-top:0px;margin-bottom:0px;height:2rem" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"blockGap":"0px","margin":{"top":"0rem","bottom":"0rem"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"0px","top":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"flex","justifyContent":"space-between","verticalAlignment":"top"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"style":{"spacing":{"blockGap":"1rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group"><!-- wp:image {"id":594,"width":48,"sizeSlug":"full","linkDestination":"custom"} -->
+<figure class="wp-block-image size-full is-resized"><a href="/"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/texty_brand_black.png" alt="" class="wp-image-594" width="48"/></a></figure>
+<!-- /wp:image -->
+
+<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"stretch","orientation":"vertical"},"style":{"typography":{"fontStyle":"normal","fontWeight":"500","lineHeight":"1","fontSize":"1.8rem"},"spacing":{"blockGap":"0.2rem"}}} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:navigation {"overlayMenu":"never","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"left","orientation":"vertical"},"style":{"typography":{"fontStyle":"normal","fontWeight":"500","lineHeight":"1","fontSize":"1.2rem"},"spacing":{"blockGap":"0.5rem"}}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:spacer {"height":"2rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
+<div style="margin-top:0px;margin-bottom:0px;height:2rem" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->

+ 22 - 0
texty/patterns/hidden-about-content.php

@@ -0,0 +1,22 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: texty/hidden-about-content
+ * Inserter: no
+ */
+
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0rem;padding-top:0px;padding-right:0%;padding-bottom:0px;padding-left:0px"><!-- wp:heading {"level":3,"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<h3 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><?php echo esc_html__( 'About the author', 'texty' ); ?></h3>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}},"typography":{"lineHeight":"1.5","fontSize":"1.2rem"}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:1.2rem;line-height:1.5"><?php echo esc_html__( 'Welcome to TEXTY, a captivating space curated by Grace Thompson — an ardent connoisseur of life\'s wonders, emerging technologies, cinema, and literature. Embark on an enthralling journey with Grace as she ventures into the realms of the latest technological advancements, delves into the depths of thought-provoking films, and explores the boundless realms of literature.', 'texty' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}},"typography":{"lineHeight":"1.5","fontSize":"1.2rem"}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:1.2rem;line-height:1.5"><?php echo esc_html__( 'With an unwavering passion for pushing boundaries, Grace fearlessly challenges established notions, providing unique insights that will ignite your imagination and leave you craving more. Prepare to be captivated as you join Grace on this extraordinary odyssey through the interplay of technology, storytelling, and the limitless possibilities that lie ahead.', 'texty' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->

+ 10 - 0
texty/patterns/hidden-no-results-content.php

@@ -0,0 +1,10 @@
+<?php
+/**
+ * Title: Hidden No Results Content
+ * Slug: texty/hidden-no-results-content
+ * Inserter: no
+ */
+?>
+<!-- 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', 'texty' ); ?></p>
+<!-- /wp:paragraph -->

+ 46 - 0
texty/readme.txt

@@ -0,0 +1,46 @@
+=== Texty ===
+Contributors: Automattic
+Requires at least: 6.1
+Tested up to: 6.3
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Texty is a text-only blog theme that trusts Post excerpts rather than Post titles and Post Feature Images. It is a remix of another theme called \'Issue\' and has got a lot of variations.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release
+
+== Copyright ==
+
+Texty WordPress Theme, (C) 2023 the WordPress team
+Texty is distributed under the terms of the GNU GPL.
+Texty is based on TXT1 (), (C) , [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html)
+
+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:
+
+Font: Figtree
+License: Open Font License (https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL)
+Source: https://fonts.google.com/specimen/Figtree
+
+Font: Plus Jakarta Sans
+License: Open Font License (https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL)
+Source: https://fonts.google.com/specimen/Plus+Jakarta+Sans
+
+Image: Original from The National Gallery of Art (image-from-rawpixel-id-3049828)
+License: CC0 (https://creativecommons.org/share-your-work/public-domain/cc0/)
+Source: https://www.rawpixel.com/search/3049828?page=1&sort=curated&topic_group=_topics

二進制
texty/screenshot.png


+ 35 - 0
texty/style.css

@@ -0,0 +1,35 @@
+/*
+Theme Name: Texty
+Theme URI: https://github.com/Automattic/themes/tree/trunk/texty
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Texty is a text-only blog theme that trusts Post excerpts rather than Post titles and Post Feature Images. It is a remix of another theme called 'Issue' and has got a lot of variations.
+Requires at least: 6.1
+Tested up to: 6.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: texty
+Tags: blog, news, one-column, two-columns, right-sidebar, wide-blocks, block-patterns, block-styles, custom-background, custom-colors, custom-header, custom-logo, custom-menu, editor-style, flexible-header, front-page-post-form, full-site-editing, post-formats, style-variations, template-editing, theme-options, text-only, no-images, no-titles, post-excerpts, blogs-posts, big-type, bold-typography, blogging
+*/
+
+/*
+ * 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--secondary);
+	color: var(--wp--preset--color--background);
+	border-color: var(--wp--preset--color--secondary);
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: .0625em !important;
+	text-underline-offset: .15em;
+}

+ 48 - 0
texty/styles/burgundy.json

@@ -0,0 +1,48 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"palette": [
+				{
+					"color": "#550739",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#550739",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#550739",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#f86dc4",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f86dc4",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 37 - 0
texty/styles/fullmetal.json

@@ -0,0 +1,37 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"palette": [
+				{
+					"color": "#616a85",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#616a85",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#616a85",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		}
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 38 - 0
texty/styles/lightyear.json

@@ -0,0 +1,38 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"palette": [
+				{
+					"color": "#4342f4",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#4342f4",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#4342f4",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#f7f0ff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f7f0ff",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 38 - 0
texty/styles/maroon.json

@@ -0,0 +1,38 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"palette": [
+				{
+					"color": "#bb2808",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#bb2808",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#bb2808",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#f0eeea",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f0eeea",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 38 - 0
texty/styles/phosphorus.json

@@ -0,0 +1,38 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"palette": [
+				{
+					"color": "#0b2e0e",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#0b2e0e",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#0b2e0e",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#70f249",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#70f249",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 19 - 0
texty/templates/404.html

@@ -0,0 +1,19 @@
+<!-- wp:template-part {"slug":"header-pages"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"8rem","right":"4rem","bottom":"0rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:8rem;padding-right:4rem;padding-bottom:0rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","bottom":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"0px","left":"0px"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%">
+<!-- wp:pattern {"slug": "texty/404"} /-->
+</div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"><!-- wp:template-part {"slug":"about"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer-pages"} /-->

+ 53 - 0
texty/templates/archive.html

@@ -0,0 +1,53 @@
+<!-- wp:template-part {"slug":"header-pages"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"8rem","right":"4rem","bottom":"4rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:8rem;padding-right:4rem;padding-bottom:4rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","bottom":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"0px","left":"0px"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"4rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:4rem;padding-top:0px;padding-right:0%;padding-bottom:0px;padding-left:0px"><!-- wp:query-title {"type":"archive","showPrefix":false,"style":{"spacing":{"padding":{"top":"1rem","right":"0rem","bottom":"1rem","left":"0rem"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}},"typography":{"fontSize":"2rem","lineHeight":1.4,"letterSpacing":"-0.02rem"}}} /-->
+
+<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"default"}} -->
+<main class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"7.5vw","bottom":"0px","left":"0px"},"margin":{"top":"0rem","bottom":"16rem"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:16rem;padding-top:0px;padding-right:7.5vw;padding-bottom:0px;padding-left:0px"><!-- wp:post-excerpt {"moreText":"Read","showMoreOnNewLine":false,"excerptLength":80,"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"1rem","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"2rem","bottom":"0rem"}}},"layout":{"type":"flex","flexWrap":"wrap"}} -->
+<div class="wp-block-group alignfull" style="margin-top:2rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-date {"format":"M j","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-terms {"term":"category","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-time-to-read {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull"><!-- wp:query-pagination {"style":{"typography":{"fontSize":"3.2rem"}},"layout":{"type":"flex","verticalAlignment":"center","justifyContent":"left"}} -->
+<!-- wp:query-pagination-previous {"label":"Prev"} /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next {"label":"Next"} /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"><!-- wp:template-part {"slug":"about"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer-pages"} /-->

+ 43 - 0
texty/templates/home.html

@@ -0,0 +1,43 @@
+<!-- wp:group {"align":"full","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}},"spacing":{"padding":{"right":"4rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"backgroundColor":"primary","textColor":"background","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color" style="margin-top:0px;margin-bottom:0px;padding-right:4rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"position":{"type":"sticky","top":"0px"},"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0rem","bottom":"0rem"},"blockGap":"0px"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"backgroundColor":"primary","textColor":"background","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull has-background-color has-primary-background-color has-text-color has-background has-link-color" style="margin-top:0rem;margin-bottom:0rem;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:template-part {"slug":"header","tagName":"header","align":"full"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"12rem","bottom":"2rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:12rem;padding-bottom:2rem"><!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"default"}} -->
+<main class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"7.5vw","bottom":"0px","left":"0px"},"margin":{"top":"0rem","bottom":"16rem"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:16rem;padding-top:0px;padding-right:7.5vw;padding-bottom:0px;padding-left:0px"><!-- wp:post-excerpt {"moreText":"Read","showMoreOnNewLine":false,"excerptLength":80} /-->
+
+<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"1rem","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"2rem","bottom":"0rem"}}},"layout":{"type":"flex","flexWrap":"wrap"}} -->
+<div class="wp-block-group alignfull" style="margin-top:2rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-date {"format":"M j","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
+<p class="has-background-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-terms {"term":"category","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
+<p class="has-background-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-time-to-read {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull"><!-- wp:query-pagination {"style":{"typography":{"fontSize":"3.2rem"}},"layout":{"type":"flex","verticalAlignment":"center","justifyContent":"left"}} -->
+<!-- wp:query-pagination-previous {"label":"Prev"} /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next {"label":"Next"} /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /--></div>
+<!-- /wp:group -->

+ 55 - 0
texty/templates/index.html

@@ -0,0 +1,55 @@
+<!-- wp:template-part {"slug":"header-pages"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"8rem","right":"4rem","bottom":"4rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:8rem;padding-right:4rem;padding-bottom:4rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","bottom":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"0px","left":"0px"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"4rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:4rem;padding-top:0px;padding-right:0%;padding-bottom:0px;padding-left:0px"><!-- wp:heading {"level":3,"style":{"spacing":{"padding":{"top":"1rem","right":"0rem","bottom":"1rem","left":"0rem"},"margin":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<h3 class="wp-block-heading" style="margin-top:0px;margin-right:0px;margin-bottom:0px;margin-left:0px;padding-top:1rem;padding-right:0rem;padding-bottom:1rem;padding-left:0rem">All posts</h3>
+<!-- /wp:heading -->
+
+<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"default"}} -->
+<main class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"7.5vw","bottom":"0px","left":"0px"},"margin":{"top":"0rem","bottom":"16rem"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:16rem;padding-top:0px;padding-right:7.5vw;padding-bottom:0px;padding-left:0px"><!-- wp:post-excerpt {"moreText":"Read","showMoreOnNewLine":false,"excerptLength":80,"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"1rem","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"2rem","bottom":"0rem"}}},"layout":{"type":"flex","flexWrap":"wrap"}} -->
+<div class="wp-block-group alignfull" style="margin-top:2rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-date {"format":"M j","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-terms {"term":"category","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-time-to-read {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull"><!-- wp:query-pagination {"style":{"typography":{"fontSize":"3.2rem"}},"layout":{"type":"flex","verticalAlignment":"center","justifyContent":"left"}} -->
+<!-- wp:query-pagination-previous {"label":"Prev"} /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next {"label":"Next"} /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"><!-- wp:template-part {"slug":"about"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer-pages"} /-->

+ 9 - 0
texty/templates/page.html

@@ -0,0 +1,9 @@
+<!-- wp:template-part {"slug":"header-pages"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"8rem","right":"4rem","bottom":"4rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:8rem;padding-right:4rem;padding-bottom:4rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","bottom":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"default"}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer-pages"} /-->

+ 53 - 0
texty/templates/search.html

@@ -0,0 +1,53 @@
+<!-- wp:template-part {"slug":"header-pages"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"8rem","right":"4rem","bottom":"4rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:8rem;padding-right:4rem;padding-bottom:4rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","bottom":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"0px","left":"0px"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0%","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"4rem"},"blockGap":"2rem"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:4rem;padding-top:0px;padding-right:0%;padding-bottom:0px;padding-left:0px"><!-- wp:search {"label":"Search","showLabel":false,"width":50,"widthUnit":"%","buttonText":"Search","buttonPosition":"button-inside","buttonUseIcon":true,"style":{"border":{"width":"0px","style":"none"}},"backgroundColor":"primary","textColor":"background"} /-->
+
+<!-- wp:query {"queryId":0,"query":{"perPage":10,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false,"taxQuery":null,"parents":[]},"tagName":"main","align":"wide","layout":{"type":"default"}} -->
+<main class="wp-block-query alignwide"><!-- wp:post-template {"align":"wide","style":{"elements":{"link":{"color":{"text":"var:preset|color|background"}}}},"textColor":"background"} -->
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","right":"7.5vw","bottom":"0px","left":"0px"},"margin":{"top":"0rem","bottom":"16rem"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0rem;margin-bottom:16rem;padding-top:0px;padding-right:7.5vw;padding-bottom:0px;padding-left:0px"><!-- wp:post-excerpt {"moreText":"Read","showMoreOnNewLine":false,"excerptLength":80,"style":{"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:group {"align":"full","style":{"spacing":{"blockGap":"1rem","padding":{"top":"0rem","right":"0rem","bottom":"0rem","left":"0rem"},"margin":{"top":"2rem","bottom":"0rem"}}},"layout":{"type":"flex","flexWrap":"wrap"}} -->
+<div class="wp-block-group alignfull" style="margin-top:2rem;margin-bottom:0rem;padding-top:0rem;padding-right:0rem;padding-bottom:0rem;padding-left:0rem"><!-- wp:post-date {"format":"M j","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-terms {"term":"category","style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /-->
+
+<!-- wp:paragraph {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} -->
+<p class="has-primary-color has-text-color has-link-color" style="font-size:3.6rem;line-height:1">·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-time-to-read {"style":{"typography":{"fontSize":"3.6rem","lineHeight":"1"},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}}},"textColor":"primary"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"align":"full","layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull"><!-- wp:query-pagination {"style":{"typography":{"fontSize":"3.2rem"}},"layout":{"type":"flex","verticalAlignment":"center","justifyContent":"left"}} -->
+<!-- wp:query-pagination-previous {"label":"Prev"} /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next {"label":"Next"} /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"><!-- wp:template-part {"slug":"about"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer-pages"} /-->

+ 77 - 0
texty/templates/single.html

@@ -0,0 +1,77 @@
+<!-- wp:template-part {"slug":"header-pages","align":"full"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"8rem","right":"4rem","bottom":"4rem","left":"4rem"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px;padding-top:8rem;padding-right:4rem;padding-bottom:4rem;padding-left:4rem"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"0px","bottom":"0px","right":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":"0px"}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignfull" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:columns {"verticalAlignment":"top","style":{"spacing":{"padding":{"top":"0%","right":"0%","bottom":"0%","left":"0%"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"5%","left":"5%"}}}} -->
+<div class="wp-block-columns are-vertically-aligned-top" style="margin-top:0px;margin-bottom:0px;padding-top:0%;padding-right:0%;padding-bottom:0%;padding-left:0%"><!-- wp:column {"verticalAlignment":"top","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-top" style="flex-basis:70%"><!-- wp:template-part {"slug":"post-meta","area":"uncategorized"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
+<div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"top","width":"25%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column is-vertically-aligned-top" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:25%"><!-- wp:template-part {"slug":"sidebar"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns -->
+
+<!-- wp:spacer {"height":"8rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
+<div style="margin-top:0px;margin-bottom:0px;height:8rem" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:columns {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"},"margin":{"top":"0px","bottom":"0px"},"blockGap":{"top":"0px","left":"0px"}}}} -->
+<div class="wp-block-columns" style="margin-top:0px;margin-bottom:0px;padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:column {"width":"70%"} -->
+<div class="wp-block-column" style="flex-basis:70%"><!-- wp:comments {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"className":"wp-block-comments-query-loop"} -->
+<div class="wp-block-comments wp-block-comments-query-loop" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
+<div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:comments-title {"level":3} /-->
+
+<!-- wp:comment-template -->
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
+<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group"><!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}}}} /-->
+
+<!-- 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 {"style":{"typography":{"fontStyle":"normal","fontWeight":"400","fontSize":"1.6rem","lineHeight":1.6}}} /-->
+
+<!-- wp:comment-reply-link /--></div>
+<!-- /wp:group -->
+<!-- /wp:comment-template -->
+
+<!-- wp:comments-pagination {"paginationArrow":"arrow","style":{"typography":{"fontSize":"1.6rem","lineHeight":1.6}},"layout":{"type":"constrained"}} -->
+<!-- wp:comments-pagination-previous /-->
+
+<!-- wp:comments-pagination-numbers /-->
+
+<!-- wp:comments-pagination-next /-->
+<!-- /wp:comments-pagination --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"constrained","justifyContent":"left"}} -->
+<div class="wp-block-group" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px"><!-- wp:spacer {"height":"4rem","style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
+<div style="margin-top:0px;margin-bottom:0px;height:4rem" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:post-comments-form /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:comments --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"width":"30%","style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-column" style="padding-top:0px;padding-right:0px;padding-bottom:0px;padding-left:0px;flex-basis:30%"></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer-pages"} /-->

+ 586 - 0
texty/theme.json

@@ -0,0 +1,586 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": true,
+			"defaultGradients": true,
+			"defaultPalette": true,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#111111",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#111111",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#111111",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#fafafa",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#fafafa",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "960px",
+			"wideSize": "1100px"
+		},
+		"shadow": {
+			"defaultPresets": true,
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"increment": 1.5,
+				"mediumStep": 1.5,
+				"operator": "*",
+				"steps": 7,
+				"unit": "rem"
+			},
+			"spacingSizes": [],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"dropCap": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFace": [],
+					"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
+					"name": "System Font",
+					"slug": "system-font"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Plus Jakarta Sans",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/plus-jakarta-sans_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Plus Jakarta Sans",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/plus-jakarta-sans_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Plus Jakarta Sans",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/plus-jakarta-sans_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Plus Jakarta Sans",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/plus-jakarta-sans_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Plus Jakarta Sans",
+							"fontStyle": "normal",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/plus-jakarta-sans_normal_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Plus Jakarta Sans",
+							"fontStyle": "italic",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/plus-jakarta-sans_italic_600.ttf"
+							]
+						}
+					],
+					"fontFamily": "Plus Jakarta Sans",
+					"slug": "plus-jakarta-sans"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Figtree",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/figtree_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Figtree",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/figtree_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Figtree",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/figtree_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Figtree",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/figtree_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Figtree",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/figtree_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Figtree",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/figtree_italic_700.ttf"
+							]
+						}
+					],
+					"fontFamily": "Figtree",
+					"slug": "figtree"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": {
+						"max": "1.0625rem",
+						"min": "0.825rem"
+					},
+					"name": "Small",
+					"size": "1rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1.25rem",
+						"min": "1rem"
+					},
+					"name": "Medium",
+					"size": "1.125rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "2rem",
+						"min": "1.75rem"
+					},
+					"name": "Large",
+					"size": "1.75rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "3rem",
+						"min": "2.5rem"
+					},
+					"name": "Extra Large",
+					"size": "3rem",
+					"slug": "x-large"
+				}
+			],
+			"fontStyle": true,
+			"fontWeight": true,
+			"letterSpacing": true,
+			"textDecoration": true,
+			"textTransform": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"typography": {
+					"textTransform": "uppercase"
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"radius": "0.25rem",
+					"style": "solid",
+					"width": "2px"
+				},
+				"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": {
+					"fontFamily": "monospace"
+				}
+			},
+			"core/comment-author-name": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-date": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-edit-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/comment-reply-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/heading": {
+				"spacing": {
+					"padding": {
+						"top": "2rem"
+					}
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--70)"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-content": {
+				"typography": {
+					"fontSize": "2rem",
+					"letterSpacing": "-0.01rem",
+					"lineHeight": 1.4
+				}
+			},
+			"core/post-date": {
+				"color": {
+					"text": "var(--wp--preset--color--foreground)"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-excerpt": {
+				"color": {
+					"text": "var(--wp--preset--color--background)"
+				},
+				"typography": {
+					"fontSize": "3.6rem",
+					"letterSpacing": "-0.02rem",
+					"lineHeight": "1.2"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"margin": {
+						"bottom": "0"
+					}
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--foreground)",
+					"style": "solid",
+					"width": "1px 0"
+				},
+				"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--large)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"fontStyle": "normal",
+					"fontWeight": "600"
+				}
+			},
+			"core/search": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.6"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "solid",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/site-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontWeight": "700"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--background)"
+					},
+					"outline": {
+						"color": "var(--wp--preset--color--primary)",
+						"offset": "2px",
+						"style": "dotted",
+						"width": "1px"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--background)"
+					}
+				},
+				"border": {
+					"radius": "0.25rem"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--background)"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "3.4rem",
+					"letterSpacing": "-0.02rem",
+					"lineHeight": "1"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "3.2rem",
+					"letterSpacing": "-0.02rem",
+					"lineHeight": 1.4
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "2rem",
+					"letterSpacing": "-0.02rem",
+					"lineHeight": 1.4
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "2rem",
+					"lineHeight": 1.4
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "2rem",
+					"lineHeight": 1.4
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "2rem",
+					"lineHeight": 1.4
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--rubik)",
+					"fontStyle": "normal",
+					"fontWeight": "500",
+					"lineHeight": "1"
+				}
+			},
+			"link": {
+				":hover": {
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "1rem",
+			"padding": {
+				"bottom": "0rem",
+				"left": "4rem",
+				"right": "4rem",
+				"top": "0rem"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--figtree)",
+			"fontSize": "var(--wp--preset--font-size--medium)",
+			"lineHeight": "1.6"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}