浏览代码

Reverie: add theme (#7137)

* Initiial commit.

* Replace screenshot.

* Update assets, fonts, and implement bg a bit.

* Updates to get bg working.

* Clean up how background is handled.

* Add initial style variations.

* Spacing adjustments and refinements.

* Template refinements.

* Add search and archive, additional background handling.

* Comments section tweaking.

* Bump dev version.

* Background tweaks and return to original color palette.

* WIP style variations.

* Dev version bump.

* Staging site changes.

* Cleanup and use transparent bg only.

* Archive tweaks.

* Version bump.

* Remove 404 header.

* Spacing and background adjustments.

* Version bump.

* Nav tweaks.'

* Rename to reverie.

* Cleanup and revisions.

* Update description.

* Remove unused fonts.

* Remove unused images.

* Reduce size of image.

* Remove unneeded table styles.

* V1.0.0.
Jeff Ong 2 年之前
父节点
当前提交
57aa234894
共有 36 个文件被更改,包括 1414 次插入0 次删除
  1. 二进制
      reverie/assets/fonts/newsreader_italic_200.ttf
  2. 二进制
      reverie/assets/fonts/newsreader_italic_300.ttf
  3. 二进制
      reverie/assets/fonts/newsreader_italic_400.ttf
  4. 二进制
      reverie/assets/fonts/newsreader_italic_500.ttf
  5. 二进制
      reverie/assets/fonts/newsreader_italic_600.ttf
  6. 二进制
      reverie/assets/fonts/newsreader_italic_700.ttf
  7. 二进制
      reverie/assets/fonts/newsreader_italic_800.ttf
  8. 二进制
      reverie/assets/fonts/newsreader_normal_200.ttf
  9. 二进制
      reverie/assets/fonts/newsreader_normal_300.ttf
  10. 二进制
      reverie/assets/fonts/newsreader_normal_400.ttf
  11. 二进制
      reverie/assets/fonts/newsreader_normal_500.ttf
  12. 二进制
      reverie/assets/fonts/newsreader_normal_600.ttf
  13. 二进制
      reverie/assets/fonts/newsreader_normal_700.ttf
  14. 二进制
      reverie/assets/fonts/newsreader_normal_800.ttf
  15. 二进制
      reverie/assets/images/25.png
  16. 二进制
      reverie/assets/images/50.png
  17. 二进制
      reverie/assets/images/90.png
  18. 二进制
      reverie/assets/images/background-texture.png
  19. 二进制
      reverie/assets/images/nav-edge.png
  20. 60 0
      reverie/functions.php
  21. 1 0
      reverie/parts/footer.html
  22. 22 0
      reverie/patterns/404.php
  23. 45 0
      reverie/patterns/footer.php
  24. 37 0
      reverie/readme.txt
  25. 二进制
      reverie/screenshot.png
  26. 175 0
      reverie/style.css
  27. 67 0
      reverie/styles/fall.json
  28. 36 0
      reverie/styles/summer.json
  29. 36 0
      reverie/styles/winter.json
  30. 3 0
      reverie/templates/404.html
  31. 51 0
      reverie/templates/archive.html
  32. 45 0
      reverie/templates/index.html
  33. 17 0
      reverie/templates/page.html
  34. 51 0
      reverie/templates/search.html
  35. 79 0
      reverie/templates/single.html
  36. 689 0
      reverie/theme.json

二进制
reverie/assets/fonts/newsreader_italic_200.ttf


二进制
reverie/assets/fonts/newsreader_italic_300.ttf


二进制
reverie/assets/fonts/newsreader_italic_400.ttf


二进制
reverie/assets/fonts/newsreader_italic_500.ttf


二进制
reverie/assets/fonts/newsreader_italic_600.ttf


二进制
reverie/assets/fonts/newsreader_italic_700.ttf


二进制
reverie/assets/fonts/newsreader_italic_800.ttf


二进制
reverie/assets/fonts/newsreader_normal_200.ttf


二进制
reverie/assets/fonts/newsreader_normal_300.ttf


二进制
reverie/assets/fonts/newsreader_normal_400.ttf


二进制
reverie/assets/fonts/newsreader_normal_500.ttf


二进制
reverie/assets/fonts/newsreader_normal_600.ttf


二进制
reverie/assets/fonts/newsreader_normal_700.ttf


二进制
reverie/assets/fonts/newsreader_normal_800.ttf


二进制
reverie/assets/images/25.png


二进制
reverie/assets/images/50.png


二进制
reverie/assets/images/90.png


二进制
reverie/assets/images/background-texture.png


二进制
reverie/assets/images/nav-edge.png


+ 60 - 0
reverie/functions.php

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

+ 1 - 0
reverie/parts/footer.html

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

+ 22 - 0
reverie/patterns/404.php

@@ -0,0 +1,22 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: reverie/404
+ * Inserter: no
+ */
+
+?>
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|60"},"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:heading {"textAlign":"left","level":1,"fontSize":"x-large"} -->
+<h1 class="wp-block-heading has-text-align-left has-x-large-font-size"><?php echo esc_html__( 'There\'s nothing here.', 'reverie' ); ?></h1>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph -->
+<p><?php echo esc_html__( 'The page you\'re looking for doesn\'t seem to exist.', 'reverie' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></main>
+<!-- /wp:group -->

+ 45 - 0
reverie/patterns/footer.php

@@ -0,0 +1,45 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: reverie/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+?>
+
+<!-- wp:group {"lock":{"move":true,"remove":true},"className":"background-overlay","layout":{"type":"constrained"}} -->
+<div class="wp-block-group background-overlay"><!-- wp:spacer {"height":"0px"} -->
+<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"layout":{"type":"default"}} -->
+<div class="wp-block-group"><!-- wp:paragraph {"align":"center","style":{"typography":{"fontStyle":"normal","fontWeight":"400"}},"fontSize":"small","fontFamily":"newsreader"} -->
+<p class="has-text-align-center has-newsreader-font-family has-small-font-size" style="font-style:normal;font-weight:400"><?php
+    /* Translators: WordPress link. */
+    $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'reverie' ) ) . '" rel="nofollow">WordPress</a>';
+    echo sprintf(
+        esc_html__( 'Designed with %1$s', 'reverie' ),
+        $wordpress_link
+    );
+?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:spacer {"height":"95px"} -->
+<div style="height:95px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"backgroundColor":"primary","className":"fixed-bottom-nav","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group fixed-bottom-nav has-primary-background-color has-background"><!-- wp:group {"style":{"spacing":{"blockGap":"0rem","padding":{"left":"1rem"}}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group" style="padding-left:1rem"><!-- wp:site-title {"style":{"typography":{"fontStyle":"normal"},"spacing":{"margin":{"right":"1rem"}}},"fontSize":"medium"} /-->
+
+<!-- wp:site-tagline {"style":{"typography":{"fontStyle":"italic","fontWeight":"400"}},"fontFamily":"newsreader"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"right":".8rem"},"blockGap":".5rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group" style="padding-right:.8rem"><!-- wp:navigation {"overlayMenu":"always","overlayBackgroundColor":"primary","layout":{"type":"flex","flexWrap":"nowrap","orientation":"vertical"},"style":{"typography":{"fontStyle":"normal","fontWeight":"300"},"spacing":{"blockGap":"0"}},"fontSize":"large","fontFamily":"newsreader"} /-->
+
+<!-- wp:search {"label":"Search","showLabel":false,"buttonText":"Search","buttonPosition":"button-only","buttonUseIcon":true,"isSearchFieldHidden":true} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 37 - 0
reverie/readme.txt

@@ -0,0 +1,37 @@
+=== Reverie ===
+Contributors: Automattic
+Requires at least: 6.1
+Tested up to: 6.2
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Reverie is a theme inspired by the work of Mark Rothko. It features four style variations for each season — Spring (default), Summer, Fall, and Winter. Use it to illuminate your prose, poetry, stories, photos, and more.
+
+Reverie is a block theme interpretation of ma.tt's theme, designed by Joen Asmussen and forked from Twenty Thirteen.
+
+== Changelog ==
+
+= 1.0.0 =
+
+== Copyright ==
+
+Reverie WordPress Theme, (C) 2023 Automattic
+Reverie 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:
+
+Newsreader font from Google Fonts, Open Font License (https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL)
+https://fonts.google.com/specimen/Newsreader

二进制
reverie/screenshot.png


+ 175 - 0
reverie/style.css

@@ -0,0 +1,175 @@
+/*
+Theme Name: Reverie
+Theme URI: https://wordpress.com/theme/reverie/
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Reverie is a blogging theme inspired by the work of Mark Rothko.
+Requires at least: 6.1
+Tested up to: 6.2
+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: reverie
+Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, rtl-language-support, theme-options, threaded-comments, translation-ready, wide-blocks, auto-loading-homepage, blog
+*/
+
+/*
+ * 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);
+}
+
+/* 
+ * Search block (inside button) styles 
+ * https://github.com/WordPress/gutenberg/issues/39946
+ */
+.wp-block-search__button-inside > .wp-block-search__inside-wrapper {
+	box-sizing: border-box;
+}
+.wp-block-search__button-inside .wp-block-search__input {
+	padding: 0 0.25rem;
+}
+
+/* Comment styles */
+.wp-block-comment-template > .comment .wp-block-group-is-layout-flex,
+.wp-block-comment-template > .comment .wp-block-group-is-layout-flow {
+	flex-grow: 1;
+}
+
+/*
+ * Fixed bottom nav
+ */
+.fixed-bottom-nav {
+	bottom: 0;
+	left: 0;
+	height: 64px;
+	position: fixed;
+	width: 100%;
+}
+
+.fixed-bottom-nav::before {
+	content: '';
+	background-color: var(--wp--preset--color--primary);
+	position: absolute;
+	height: 100px;
+	width: 100%;
+	top: -40px;
+	mix-blend-mode: darken;
+	-webkit-mask: url(assets/images/nav-edge.png) no-repeat center / cover;
+	mask: url(assets/images/nav-edge.png) no-repeat center / cover;
+	z-index: -1;
+}
+
+.background-overlay {
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+	background-image: url(assets/images/background-texture.png);
+	background-size: contain;
+	background-repeat: repeat;
+	position: fixed;
+    z-index: -1; /* Keeps the background behind other content */
+}
+
+.background-overlay::before {
+    content: "";
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    background-color: var(--wp--preset--color--background);
+    mix-blend-mode: color; /* Change to desired blend mode */
+    pointer-events: none;
+}
+
+/* Custom Reverie alternating post styles */
+.post-content-reverie-container {
+	background-image: url(assets/images/25.png);
+	background-size: cover;
+	background-repeat: no-repeat;
+	background-position: center top;
+	position: relative;
+}
+
+.wp-block-post-template-is-layout-flow > .wp-block-post:nth-child(2n) .post-content-reverie-container {
+	background-image: url(assets/images/50.png);
+}
+
+.wp-block-post-template-is-layout-flow > .wp-block-post:nth-child(3n) .post-content-reverie-container {
+	background-image: url(assets/images/90.png);
+}
+
+.reverie-archive-title {
+	background-image: url(assets/images/90.png);
+	background-size: 100% 100%;
+	background-repeat: no-repeat;
+	background-position: center top;
+}
+
+.reverie-single-container, .reverie-comments-section {
+	background-image: url(assets/images/25.png);
+	background-size: 120% 100%;
+	background-repeat: no-repeat;
+	background-position: center top;
+	position: relative;
+}
+
+@media screen and (min-width: 750px){
+	.post-content-reverie-container, .reverie-archive-title, .reverie-single-container {
+		background-size: 75% 100% !important;
+	}
+}
+
+/* Nav modal styles */
+.wp-block-navigation__responsive-container.is-menu-open::before {
+    content: "";
+    position: absolute;
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+    background-color: inherit;
+    mix-blend-mode: color; /* Change to desired blend mode */
+    pointer-events: none;
+}
+
+.wp-block-navigation__responsive-container {
+    top: 0;
+    left: 0;
+    width: 100%;
+    height: 100%;
+	background-image: url(assets/images/background-texture.png);
+	background-size: contain;
+	background-repeat: repeat;
+	position: fixed;
+    z-index: -1; /* Keeps the background behind other content */
+}
+
+.wp-block-navigation__responsive-container-close {
+	top: 2rem;
+	right: 3rem;
+}
+
+.wp-block-navigation__responsive-container.is-menu-open li.wp-block-navigation-item.wp-block-navigation-submenu,
+.wp-block-navigation__responsive-container.is-menu-open li.wp-block-navigation-item.wp-block-navigation-link {
+	padding: 2rem;
+    background-image: url(assets/images/90.png) !important;
+    background-size: 105% 100% !important;
+    background-position: center !important
+}
+
+.wp-block-post-terms.taxonomy-category::before {
+	content: "·  ";
+}
+
+.wp-block-navigation__responsive-container.is-menu-open .wp-block-navigation__responsive-container-content .wp-block-navigation__submenu-container {
+	gap: 0;
+}

+ 67 - 0
reverie/styles/fall.json

@@ -0,0 +1,67 @@
+{
+	"title": "Fall",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#252525",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#FFEBE1",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#252525",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#674019",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#442E16",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/site-title": {
+				"color": {
+					"text": "var(--wp--preset--color--secondary)"
+				}
+			},
+			"core/site-tagline": {
+				"color": {
+					"text": "var(--wp--preset--color--secondary)"
+				}
+			},
+			"core/navigation": {
+				"color": {
+					"text": "var(--wp--preset--color--secondary)"
+				}
+			},
+			"core/search": {
+				"color": {
+					"text": "var(--wp--preset--color--secondary)"
+				}
+			}
+		},
+		"elements": {
+			"button": {
+				"color": {
+					"text": "var(--wp--preset--color--secondary)"
+				}
+			}
+		}
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 36 - 0
reverie/styles/summer.json

@@ -0,0 +1,36 @@
+{
+	"title": "Summer",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#F2874C",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#F2874C",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#252525",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#D8C566",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#E9E0B1",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 36 - 0
reverie/styles/winter.json

@@ -0,0 +1,36 @@
+{
+	"title": "Winter",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#3998AC",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#3998AC",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#11202E",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#C2DEEA",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#D8EBF3",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 3 - 0
reverie/templates/404.html

@@ -0,0 +1,3 @@
+<!-- wp:pattern {"slug":"reverie/404"} /-->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 51 - 0
reverie/templates/archive.html

@@ -0,0 +1,51 @@
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"><!-- wp:query-title {"type":"search","align":"wide","style":{"spacing":{"margin":{"bottom":"var:preset|spacing|50"}}},"fontSize":"large"} /--></main>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- 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","layout":{"type":"default"}} -->
+<main class="wp-block-query"><!-- wp:group {"className":"reverie-archive-title","layout":{"type":"constrained"}} -->
+<div class="wp-block-group reverie-archive-title"><!-- wp:query-title {"type":"archive","style":{"typography":{"fontStyle":"normal"},"spacing":{"padding":{"top":"3rem","bottom":"3rem"}}},"fontSize":"large"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-template {"style":{"spacing":{"blockGap":"0px"}}} -->
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"2rem","bottom":"2rem"}}},"className":"post-content-reverie-container","layout":{"type":"constrained"}} -->
+<div class="wp-block-group post-content-reverie-container" style="padding-top:2rem;padding-bottom:2rem"><!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"1vh"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"isLink":true,"style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}},"typography":{"textTransform":"capitalize"}}} /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0.4rem"}},"layout":{"type":"flex","flexWrap":"nowrap"},"fontSize":"small"} -->
+<div class="wp-block-group has-small-font-size"><!-- wp:post-date {"style":{"typography":{"fontStyle":"italic","fontWeight":"400"}},"fontFamily":"newsreader"} /-->
+
+<!-- wp:post-terms {"term":"category","fontFamily":"newsreader"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image {"isLink":true} /-->
+
+<!-- wp:post-content /-->
+
+<!-- wp:post-comments-link {"fontSize":"small"} /-->
+
+<!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 45 - 0
reverie/templates/index.html

@@ -0,0 +1,45 @@
+<!-- wp:spacer {"height":"20px"} -->
+<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- 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","layout":{"type":"default"}} -->
+<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"0px"}}} -->
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"2rem","bottom":"2rem"}}},"className":"post-content-reverie-container","layout":{"type":"constrained"}} -->
+<div class="wp-block-group post-content-reverie-container" style="padding-top:2rem;padding-bottom:2rem"><!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"1vh"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"isLink":true,"style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}},"typography":{"textTransform":"capitalize"}}} /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0.4rem"}},"layout":{"type":"flex","flexWrap":"nowrap"},"fontSize":"small"} -->
+<div class="wp-block-group has-small-font-size"><!-- wp:post-date {"style":{"typography":{"fontStyle":"italic","fontWeight":"400"}},"fontFamily":"newsreader"} /-->
+
+<!-- wp:post-terms {"term":"category","fontFamily":"newsreader"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image {"isLink":true} /-->
+
+<!-- wp:post-content /-->
+
+<!-- wp:post-comments-link {"fontSize":"small"} /-->
+
+<!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 17 - 0
reverie/templates/page.html

@@ -0,0 +1,17 @@
+<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":true},"className":"reverie-single-container","layout":{"type":"constrained"}} -->
+<main class="wp-block-group reverie-single-container"><!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:post-title /-->
+
+<!-- wp:post-featured-image /-->
+
+<!-- wp:post-content {"lock":{"move":false,"remove":true},"layout":{"type":"constrained"}} /-->
+
+<!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 51 - 0
reverie/templates/search.html

@@ -0,0 +1,51 @@
+<!-- wp:group {"className":"reverie-archive-title","layout":{"type":"constrained"}} -->
+<div class="wp-block-group reverie-archive-title"><!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--70);margin-bottom:var(--wp--preset--spacing--70)"><!-- wp:query-title {"type":"search","align":"wide","style":{"spacing":{"margin":{"bottom":"var:preset|spacing|50"},"padding":{"top":"3rem","bottom":"3rem"}}},"fontSize":"large"} /--></main>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- 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","layout":{"type":"default"}} -->
+<main class="wp-block-query"><!-- wp:post-template {"style":{"spacing":{"blockGap":"0px"}}} -->
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"2rem","bottom":"2rem"}}},"className":"post-content-reverie-container","layout":{"type":"constrained"}} -->
+<div class="wp-block-group post-content-reverie-container" style="padding-top:2rem;padding-bottom:2rem"><!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"1vh"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"isLink":true,"style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}},"typography":{"textTransform":"capitalize"}}} /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0.4rem"}},"layout":{"type":"flex","flexWrap":"nowrap"},"fontSize":"small"} -->
+<div class="wp-block-group has-small-font-size"><!-- wp:post-date {"style":{"typography":{"fontStyle":"italic","fontWeight":"400"}},"fontFamily":"newsreader"} /-->
+
+<!-- wp:paragraph -->
+<p>·</p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-terms {"term":"category","fontFamily":"newsreader"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image {"isLink":true} /-->
+
+<!-- wp:post-content /-->
+
+<!-- wp:post-comments-link {"fontSize":"small"} /-->
+
+<!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-numbers /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 79 - 0
reverie/templates/single.html

@@ -0,0 +1,79 @@
+<!-- wp:spacer {"height":"20px"} -->
+<div style="height:20px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":true},"className":"reverie-single-container","layout":{"type":"constrained"}} -->
+<main class="wp-block-group reverie-single-container"><!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"1vh"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:post-title {"style":{"spacing":{"padding":{"top":"2rem","bottom":"0rem"},"margin":{"bottom":"0px"}},"typography":{"textTransform":"capitalize"}}} /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0.4rem"}},"layout":{"type":"flex","flexWrap":"nowrap"},"fontSize":"small"} -->
+<div class="wp-block-group has-small-font-size"><!-- wp:post-date {"style":{"typography":{"fontStyle":"italic","fontWeight":"400"}},"fontFamily":"newsreader"} /-->
+
+<!-- wp:post-terms {"term":"category","fontFamily":"newsreader"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:post-featured-image /-->
+
+<!-- wp:post-content {"lock":{"move":false,"remove":true},"layout":{"type":"constrained"}} /-->
+
+<!-- wp:spacer {"height":"150px"} -->
+<div style="height:150px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></main>
+<!-- /wp:group -->
+
+<!-- wp:group {"className":"reverie-comments-section","layout":{"type":"constrained"}} -->
+<div class="wp-block-group reverie-comments-section"><!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer -->
+
+<!-- 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 {"style":{"spacing":{"padding":{"top":"0px","right":"0px","bottom":"0px","left":"0px"}}}} -->
+<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"top","justifyContent":"space-between"}} -->
+<div class="wp-block-group"><!-- wp:avatar {"size":60,"isLink":true,"style":{"spacing":{"margin":{"top":"0.5em"}},"border":{"radius":"50%"}}} /-->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"},"padding":{"top":"1rem","right":"0rem","bottom":"1rem","left":"0rem"},"blockGap":"0.4rem"},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"stretch"}} -->
+<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50);padding-top:1rem;padding-right:0rem;padding-bottom:1rem;padding-left:0rem"><!-- wp:group {"style":{"spacing":{"blockGap":"0.2em"},"layout":{"selfStretch":"fill","flexSize":null}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:comment-author-name {"isLink":false} /-->
+
+<!-- wp:comment-date {"format":"F j, Y","isLink":false} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:comment-content /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0.5rem"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group"><!-- wp:comment-edit-link /-->
+
+<!-- wp:comment-reply-link /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:comment-template -->
+
+<!-- wp:comments-pagination -->
+<!-- wp:comments-pagination-previous /-->
+
+<!-- wp:comments-pagination-numbers /-->
+
+<!-- wp:comments-pagination-next /-->
+<!-- /wp:comments-pagination --></div>
+<!-- /wp:comments --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:post-comments-form /-->
+
+<!-- wp:spacer -->
+<div style="height:100px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

+ 689 - 0
reverie/theme.json

@@ -0,0 +1,689 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": true,
+			"defaultGradients": true,
+			"defaultPalette": true,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#1E9AAE",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#1E9AAE",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#11202E",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#97BA65",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#B4CC91",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "604px",
+			"wideSize": "920px"
+		},
+		"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": [
+				{
+					"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
+					"name": "System Font",
+					"slug": "system-font"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "normal",
+							"fontWeight": "800",
+							"src": [
+								"file:./assets/fonts/newsreader_normal_800.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "200",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_200.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "600",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_600.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "700",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_700.ttf"
+							]
+						},
+						{
+							"fontFamily": "Newsreader",
+							"fontStyle": "italic",
+							"fontWeight": "800",
+							"src": [
+								"file:./assets/fonts/newsreader_italic_800.ttf"
+							]
+						}
+					],
+					"fontFamily": "Newsreader",
+					"slug": "newsreader"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": {
+						"max": "0.9625rem",
+						"min": "0.725rem"
+					},
+					"name": "Small",
+					"size": "0.8rem",
+					"slug": "small"
+				},
+				{
+					"fluid": {
+						"max": "1.25rem",
+						"min": "1rem"
+					},
+					"name": "Medium",
+					"size": "1rem",
+					"slug": "medium"
+				},
+				{
+					"fluid": {
+						"max": "2rem",
+						"min": "1.75rem"
+					},
+					"name": "Large",
+					"size": "1.75rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "3rem",
+						"min": "2.25rem"
+					},
+					"name": "Extra Large",
+					"size": "2.75rem",
+					"slug": "x-large"
+				}
+			],
+			"fontStyle": true,
+			"fontWeight": true,
+			"letterSpacing": true,
+			"textDecoration": true,
+			"textTransform": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"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": "1.1rem",
+					"fontStyle": "normal",
+					"fontWeight": "600",
+					"letterSpacing": "0rem"
+				}
+			},
+			"core/comment-content": {
+				"typography": {
+					"fontSize": "1rem"
+				}
+			},
+			"core/comment-date": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--newsreader)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontStyle": "italic",
+					"fontWeight": "400"
+				}
+			},
+			"core/comment-edit-link": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--newsreader)",
+					"fontSize": "0.8rem",
+					"fontStyle": "normal",
+					"fontWeight": "400"
+				}
+			},
+			"core/comment-reply-link": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--newsreader)",
+					"fontSize": "0.8rem",
+					"fontStyle": "normal",
+					"fontWeight": "400"
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"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-comments-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"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-navigation-link": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--newsreader)",
+					"fontStyle": "normal",
+					"fontWeight": "400"
+				}
+			},
+			"core/post-terms": {
+				"typography": {
+					"fontStyle": "normal",
+					"fontWeight": "500"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"spacing": {
+					"margin": {
+						"bottom": "0"
+					}
+				},
+				"typography": {
+					"fontStyle": "normal",
+					"lineHeight": "1.1",
+					"textTransform": "none"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"bottom": {
+						"style": "none",
+						"width": "0px"
+					},
+					"color": "var(--wp--preset--color--foreground)",
+					"left": {
+						"style": "none",
+						"width": "0px"
+					},
+					"right": {
+						"style": "none",
+						"width": "0px"
+					},
+					"style": "solid",
+					"top": {
+						"style": "none",
+						"width": "0px"
+					},
+					"width": "1px 0"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--background)"
+				},
+				"elements": {
+					"link": {
+						"color": {
+							"text": "var(--wp--preset--color--background)"
+						}
+					}
+				},
+				"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": "normal",
+					"fontWeight": "400",
+					"textTransform": "none"
+				}
+			},
+			"core/query-pagination": {
+				"typography": {
+					"fontSize": "1.1rem",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"letterSpacing": "0rem",
+					"textTransform": "none"
+				}
+			},
+			"core/query-pagination-numbers": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontStyle": "normal",
+					"fontWeight": "300",
+					"letterSpacing": "0.16rem",
+					"textTransform": "uppercase"
+				}
+			},
+			"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": {
+					"fontStyle": "normal"
+				}
+			},
+			"core/search": {
+				"border": {
+					"radius": "0px"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontStyle": "normal",
+					"fontWeight": "300",
+					"letterSpacing": "0.1rem",
+					"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--x-large)",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/social-links": {
+				"color": {
+					"background": "var(--wp--preset--color--background)"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"css": "/*\n * Link styles\n * https://github.com/WordPress/gutenberg/issues/42319\n */\na {\n\ttext-decoration-thickness: .0625em !important;\n\ttext-underline-offset: .15em;\n}\n\n\n.wp-block-post-template-is-layout-flow > .wp-block-post:nth-child(2n) .post-content-reverie-container {\n\tbackground-image: url(assets/images/spring/a.png);\n}\n\n.wp-block-post-template-is-layout-flow > .wp-block-post:nth-child(3n) .post-content-reverie-container {\n\tbackground-image: url(assets/images/post-white.png);\n}\n\n.wp-block-post-template-is-layout-flow > .wp-block-post:nth-child(4n) .post-content-reverie-container {\n\tbackground-image: url(assets/images/spring/b.png);\n}\n",
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--tertiary)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--primary)",
+						"text": "var(--wp--preset--color--tertiary)"
+					},
+					"outline": {
+						"color": "var(--wp--preset--color--primary)",
+						"offset": "2px",
+						"style": "dotted",
+						"width": "1px"
+					}
+				},
+				":hover": {
+					"border": {
+						"color": "var(--wp--preset--color--secondary)",
+						"style": "solid",
+						"width": "2px"
+					},
+					"color": {
+						"background": "var(--wp--preset--color--foreground)",
+						"text": "var(--wp--preset--color--primary)"
+					},
+					"spacing": {
+						"padding": "0.667em 1.333em"
+					}
+				},
+				"border": {
+					"radius": "2px"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--foreground)"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"fontStyle": "normal",
+					"letterSpacing": "0.07rem"
+				}
+			},
+			"caption": {
+				"typography": {
+					"fontSize": "0.8rem"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "2.4rem"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "clamp(1.5rem, calc(1.5rem + ((1vw - 0.48rem) * 0.4808)), 1.75rem)"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "clamp(1.25rem, calc(1.25rem + ((1vw - 0.48rem) * 0.4808)), 1.5rem)"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"textTransform": "uppercase"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"textTransform": "uppercase"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--newsreader)",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"lineHeight": "1.125",
+					"textTransform": "none"
+				}
+			},
+			"link": {
+				":hover": {
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var(--wp--preset--spacing--50)",
+			"padding": {
+				"bottom": "0rem",
+				"left": "1.5rem",
+				"right": "1.5rem",
+				"top": "0rem"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--newsreader)",
+			"fontSize": "var(--wp--preset--font-size--medium)",
+			"fontStyle": "normal",
+			"fontWeight": "400",
+			"lineHeight": "1.5"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"title": "Spring",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}