Explorar el Código

Perenne: Add theme (#7640)

* Perenne: Add theme

* Perenne: Minor adjustments

* Perenne: Minor adjustments
Takashi Irie hace 1 año
padre
commit
cfaff95d9c

BIN
perenne/assets/fonts/ibm-plex-mono_italic_400.ttf


BIN
perenne/assets/fonts/ibm-plex-mono_normal_400.ttf


+ 61 - 0
perenne/functions.php

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

+ 13 - 0
perenne/patterns/404.php

@@ -0,0 +1,13 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: perenne/404
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.4"}},"fontSize":"small"} -->
+<p class="has-small-font-size" style="line-height:1.4"><?php echo esc_html__( 'Oops! That page can’t be found.', 'perenne' ); ?></p>
+<!-- /wp:paragraph -->

+ 13 - 0
perenne/patterns/no-results.php

@@ -0,0 +1,13 @@
+<?php
+/**
+ * Title: No Results Content
+ * Slug: perenne/no-results
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.8"},"spacing":{"margin":{"top":"0px","bottom":"0px"}}}} -->
+<p style="margin-top:0px;margin-bottom:0px;line-height:1.8"><?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', 'perenne' ); ?></p>
+<!-- /wp:paragraph -->

+ 13 - 0
perenne/patterns/post-navigation.php

@@ -0,0 +1,13 @@
+<?php
+/**
+ * Title: Post Navigation
+ * Slug: perenne/post-navigation
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:post-navigation-link {"type":"previous","label":"<?php echo esc_html__( 'Previous', 'perenne' ); ?>"} /-->
+
+<!-- wp:post-navigation-link {"label":"<?php echo esc_html__( 'Next', 'perenne' ); ?>"} /-->

+ 15 - 0
perenne/patterns/query-pagination.php

@@ -0,0 +1,15 @@
+<?php
+/**
+ * Title: Query Pagination
+ * Slug: perenne/query-pagination
+ * Inserter: no
+ */
+
+declare( strict_types = 1 );
+?>
+
+<!-- wp:query-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+	<!-- wp:query-pagination-previous {"label":"<?php echo esc_html__( 'Prev', 'perenne' ); ?>"} /-->
+
+	<!-- wp:query-pagination-next {"label":"<?php echo esc_html__( 'Next', 'perenne' ); ?>"} /-->
+<!-- /wp:query-pagination -->

+ 31 - 0
perenne/readme.txt

@@ -0,0 +1,31 @@
+=== Perenne ===
+Contributors: Pablo et Matias
+Requires at least: 5.8
+Tested up to: 5.9
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+Exegi monumentum aere perennius.
+
+== Changelog ==
+
+= 0.0.1 =
+* Initial release
+
+== Copyright ==
+
+Perenne WordPress Theme, (C) 2023 Pablo et Matias
+Perenne 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.

BIN
perenne/screenshot.png


+ 35 - 0
perenne/style.css

@@ -0,0 +1,35 @@
+/*
+Theme Name: Perenne
+Theme URI: https://wordpress.com/theme/perenne
+Author: Automattic
+Author URI: https://automattic.com/
+Description: Exegi monumentum aere perennius.
+Requires at least: 6.0
+Tested up to: 6.4
+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: perenne
+Tags: blog, one-column, featured-images, full-site-editing, rtl-language-support, threaded-comments, translation-ready, wide-blocks, style-variations
+*/
+
+/*
+ * 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--primary);
+	border-color: var(--wp--preset--color--primary);
+	color: var(--wp--preset--color--base);
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: 0.0625em !important;
+	text-underline-offset: 0.15em;
+}

+ 21 - 0
perenne/styles/noir.json

@@ -0,0 +1,21 @@
+{
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#111111",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#f9f9f9",
+					"name": "Primary",
+					"slug": "primary"
+				}
+			]
+		}
+	},
+	"title": "Noir",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}

+ 13 - 0
perenne/templates/404.html

@@ -0,0 +1,13 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:site-logo {"width":24,"shouldSyncIcon":true,"className":"is-style-rounded","style":{"color":{},"spacing":{"margin":{"bottom":"32px"}}}} /-->
+
+	<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"center"}} -->
+	<div class="wp-block-group">
+		<!-- wp:pattern {"slug":"perenne/404"} /-->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:pattern {"slug":"perenne/footer"} /-->
+</div>
+<!-- /wp:group -->

+ 31 - 0
perenne/templates/archive.html

@@ -0,0 +1,31 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:query-title {"type":"archive","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|40"}}}} /-->
+
+	<!-- wp:query {"query":{"perPage":100,"pages":0,"offset":"0","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"tagName":"main","layout":{"type":"default"}} -->
+	<main class="wp-block-query">
+		<!-- wp:post-template {"className":"inline-posts-loop","layout":{"type":"default"}} -->
+			<!-- wp:post-date {"format":"M.j, Y","isLink":true,"style":{"spacing":{"margin":{"right":"var:preset|spacing|40"}}}} /-->
+		<!-- /wp:post-template -->
+
+		<!-- wp:spacer {"height":"200px","style":{"spacing":{"margin":{"top":"0px"}}}} -->
+		<div style="margin-top:0px;height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-top:0px">
+			<!-- wp:pattern {"slug":"perenne/query-pagination"} /-->
+		</div>
+		<!-- /wp:group -->
+	</main>
+	<!-- /wp:query -->
+
+	<!-- wp:spacer {"height":"200px"} -->
+	<div style="height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+	<!-- /wp:spacer -->
+
+	<!-- wp:site-logo {"width":24,"shouldSyncIcon":true,"className":"is-style-rounded","style":{"color":{},"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}}} /-->
+
+	<!-- wp:pattern {"slug":"perenne/footer"} /-->
+</div>
+<!-- /wp:group -->

+ 29 - 0
perenne/templates/index.html

@@ -0,0 +1,29 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:query {"query":{"perPage":"100","pages":0,"offset":"0","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"tagName":"main","layout":{"type":"default"}} -->
+	<main class="wp-block-query">
+		<!-- wp:post-template {"className":"inline-posts-loop","layout":{"type":"default"}} -->
+			<!-- wp:post-date {"format":"M.j, Y","isLink":true,"style":{"spacing":{"margin":{"right":"var:preset|spacing|40"}}}} /-->
+		<!-- /wp:post-template -->
+
+		<!-- wp:spacer {"height":"200px","style":{"spacing":{"margin":{"top":"0px"}}}} -->
+		<div style="margin-top:0px;height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-top:0px">
+			<!-- wp:pattern {"slug":"perenne/query-pagination"} /-->
+		</div>
+		<!-- /wp:group -->
+	</main>
+	<!-- /wp:query -->
+
+	<!-- wp:spacer {"height":"200px"} -->
+	<div style="height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+	<!-- /wp:spacer -->
+
+	<!-- wp:site-logo {"width":24,"shouldSyncIcon":true,"className":"is-style-rounded","style":{"color":{},"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}}} /-->
+
+	<!-- wp:pattern {"slug":"perenne/footer"} /-->
+</div>
+<!-- /wp:group -->

+ 19 - 0
perenne/templates/page.html

@@ -0,0 +1,19 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-logo {"width":24,"shouldSyncIcon":true,"className":"is-style-rounded","style":{"color":{},"spacing":{"margin":{"bottom":"32px"}}}} /-->
+
+		<!-- wp:post-title {"level":1} /-->
+
+		<!-- wp:spacer {"height":"80px"} -->
+		<div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:post-content {"layout":{"type":"constrained"}} /-->
+
+	<!-- wp:pattern {"slug":"perenne/footer"} /-->
+</div>
+<!-- /wp:group -->

+ 35 - 0
perenne/templates/search.html

@@ -0,0 +1,35 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:query-title {"type":"search","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|40"}}}} /-->
+
+	<!-- wp:query {"query":{"perPage":100,"pages":0,"offset":"0","postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":true},"tagName":"main","layout":{"type":"constrained"}} -->
+	<main class="wp-block-query">
+		<!-- wp:post-template {"className":"inline-posts-loop","layout":{"type":"default"}} -->
+			<!-- wp:post-title {"isLink":true,"style":{"spacing":{"margin":{"right":"var:preset|spacing|40"}}}} /-->
+		<!-- /wp:post-template -->
+
+		<!-- wp:query-no-results -->
+			<!-- wp:pattern {"slug":"perenne/no-results"} /-->
+		<!-- /wp:query-no-results -->
+
+		<!-- wp:spacer {"height":"200px","style":{"spacing":{"margin":{"top":"0px"}}}} -->
+		<div style="margin-top:0px;height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+
+		<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px"}}},"layout":{"type":"constrained"}} -->
+		<div class="wp-block-group" style="margin-top:0px">
+			<!-- wp:pattern {"slug":"perenne/query-pagination"} /-->
+		</div>
+		<!-- /wp:group -->
+	</main>
+	<!-- /wp:query -->
+
+	<!-- wp:spacer {"height":"200px"} -->
+	<div style="height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+	<!-- /wp:spacer -->
+
+	<!-- wp:site-logo {"width":24,"shouldSyncIcon":true,"className":"is-style-rounded","style":{"color":{},"spacing":{"padding":{"top":"var:preset|spacing|30","bottom":"var:preset|spacing|30"}}}} /-->
+
+	<!-- wp:pattern {"slug":"perenne/footer"} /-->
+</div>
+<!-- /wp:group -->

+ 51 - 0
perenne/templates/single.html

@@ -0,0 +1,51 @@
+<!-- wp:group {"style":{"spacing":{"blockGap":"0px","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|80"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--80)">
+	<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:site-logo {"width":24,"shouldSyncIcon":true,"className":"is-style-rounded","style":{"color":{},"spacing":{"margin":{"bottom":"32px"}}}} /-->
+
+		<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"center","justifyContent":"space-between"}} -->
+		<div class="wp-block-group">
+			<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+			<div class="wp-block-group">
+				<!-- wp:post-date {"format":"M.j, Y","style":{"typography":{"lineHeight":"1.4"}}} /-->
+
+				<!-- wp:post-title {"level":1,"style":{"spacing":{"margin":{"left":"var:preset|spacing|70"}}}} /-->
+			</div>
+			<!-- /wp:group -->
+
+			<!-- wp:post-featured-image {"width":"60px","height":"60px"} /-->
+		</div>
+		<!-- /wp:group -->
+
+		<!-- wp:spacer {"height":"80px"} -->
+		<div style="height:80px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:post-content {"layout":{"type":"constrained"}} /-->
+
+	<!-- wp:group {"style":{"spacing":{"blockGap":"0px"}},"layout":{"type":"constrained"}} -->
+	<div class="wp-block-group">
+		<!-- wp:spacer {"height":"30px"} -->
+		<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+
+		<!-- wp:post-terms {"term":"post_tag"} /-->
+
+		<!-- wp:spacer {"height":"200px"} -->
+		<div style="height:200px" aria-hidden="true" class="wp-block-spacer"></div>
+		<!-- /wp:spacer -->
+
+		<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+		<div class="wp-block-group">
+			<!-- wp:pattern {"slug":"perenne/post-navigation"} /-->
+		</div>
+		<!-- /wp:group -->
+	</div>
+	<!-- /wp:group -->
+
+	<!-- wp:pattern {"slug":"perenne/footer"} /-->
+</div>
+<!-- /wp:group -->

+ 535 - 0
perenne/theme.json

@@ -0,0 +1,535 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"custom": true,
+			"customGradient": true,
+			"customDuotone": true,
+			"defaultDuotone": false,
+			"defaultGradients": false,
+			"defaultPalette": false,
+			"duotone": [
+				{
+					"colors": [
+						"#000000",
+						"#ffffff"
+					],
+					"name": "Default filter",
+					"slug": "default-filter"
+				}
+			],
+			"palette": [
+				{
+					"color": "#FAF4E2",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#2D2D2D",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#EDE8D4",
+					"name": "Secondary",
+					"slug": "secondary"
+				}
+			]
+		},
+		"layout": {
+			"contentSize": "800px",
+			"wideSize": "85vw"
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"steps": 0
+			},
+			"spacingSizes": [
+				{
+					"name": "1",
+					"size": "0.44rem",
+					"slug": "20"
+				},
+				{
+					"name": "2",
+					"size": "0.67rem",
+					"slug": "30"
+				},
+				{
+					"name": "3",
+					"size": "1rem",
+					"slug": "40"
+				},
+				{
+					"name": "4",
+					"size": "1.5rem",
+					"slug": "50"
+				},
+				{
+					"name": "4",
+					"size": "min(2.25rem, 6.5vw)",
+					"slug": "60"
+				},
+				{
+					"name": "5",
+					"size": "min(3.38rem, 7vw)",
+					"slug": "70"
+				},
+				{
+					"name": "6",
+					"size": "min(5.06rem, 7.5vw)",
+					"slug": "80"
+				}
+			],
+			"units": [
+				"%",
+				"px",
+				"em",
+				"rem",
+				"vh",
+				"vw"
+			]
+		},
+		"typography": {
+			"customFontSize": true,
+			"fluid": true,
+			"fontFamilies": [
+				{
+					"fontFace": [
+						{
+							"fontFamily": "IBM Plex Mono",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/ibm-plex-mono_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "IBM Plex Mono",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/ibm-plex-mono_italic_400.ttf"
+							]
+						}
+					],
+					"fontFamily": "IBM Plex Mono",
+					"slug": "ibm-plex-mono"
+				}
+			],
+			"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"
+				}
+			]
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/code": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"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/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--70)"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-content": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.8"
+				}
+			},
+			"core/post-date": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/post-featured-image": {
+				"border": {
+					"radius": "2px"
+				}
+			},
+			"core/post-navigation-link": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/post-terms": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/post-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.4",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"style": "solid",
+					"width": "1px"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--50)",
+						"left": "var(--wp--preset--spacing--50)",
+						"right": "var(--wp--preset--spacing--50)",
+						"top": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"lineHeight": "1.3"
+				}
+			},
+			"core/query-pagination": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/query-title": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.4"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"style": "solid",
+					"width": "0 0 0 1px"
+				},
+				"elements": {
+					"cite": {
+						"typography": {
+							"fontSize": "var(--wp--preset--font-size--small)",
+							"fontStyle": "normal",
+							"textTransform": "uppercase"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "normal"
+				}
+			},
+			"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--primary)"
+				}
+			},
+			"core/site-logo": {
+				"filter": {
+					"duotone": "var(--wp--preset--duotone--default-filter)"
+				}
+			},
+			"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--base)",
+			"text": "var(--wp--preset--color--primary)"
+		},
+		"css": ".inline-posts-loop{display:flex;align-items:baseline;flex-wrap:wrap;justify-content:space-between;} .inline-posts-loop::after{content:\"\";flex:auto;} .inline-posts-loop li{margin-block-start: 0;}",
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--base)",
+						"text": "var(--wp--preset--color--primary)"
+					}
+				},
+				"border": {
+					"color": "var(--wp--preset--color--primary)",
+					"radius": "2px",
+					"style": "solid",
+					"width": "1px"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--primary)",
+					"text": "var(--wp--preset--color--base)"
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)",
+					"lineHeight": "1",
+					"textDecoration": "none"
+				}
+			},
+			"caption": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"fontStyle": "italic",
+					"fontWeight": "400",
+					"lineHeight": "1"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "1rem",
+					"fontStyle": "italic",
+					"fontWeight": "400",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "0.8rem",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"heading": {
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"lineHeight": "1",
+					"textTransform": "uppercase"
+				}
+			},
+			"link": {
+				":focus": {
+					"typography": {
+						"textDecoration": "underline"
+					}
+				},
+				":hover": {
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var(--wp--preset--spacing--50)",
+			"padding": {
+				"bottom": "var(--wp--preset--spacing--80)",
+				"left": "var(--wp--preset--spacing--80)",
+				"right": "var(--wp--preset--spacing--80)",
+				"top": "var(--wp--preset--spacing--80)"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--ibm-plex-mono)",
+			"fontSize": "var(--wp--preset--font-size--small)",
+			"lineHeight": "1.6"
+		}
+	},
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}