浏览代码

Add Craftfully (#7558)

Initial commit.
alaczek 1 年之前
父节点
当前提交
8894ae0c6b
共有 59 个文件被更改,包括 2955 次插入0 次删除
  1. 二进制
      craftfully/assets/fonts/dm-mono_italic_300.ttf
  2. 二进制
      craftfully/assets/fonts/dm-mono_italic_400.ttf
  3. 二进制
      craftfully/assets/fonts/dm-mono_italic_500.ttf
  4. 二进制
      craftfully/assets/fonts/dm-mono_normal_300.ttf
  5. 二进制
      craftfully/assets/fonts/dm-mono_normal_400.ttf
  6. 二进制
      craftfully/assets/fonts/dm-mono_normal_500.ttf
  7. 二进制
      craftfully/assets/fonts/dm-serif-display_italic_400.ttf
  8. 二进制
      craftfully/assets/fonts/dm-serif-display_normal_400.ttf
  9. 二进制
      craftfully/assets/images/pexels-julia-avamotive-1097781.jpg
  10. 61 0
      craftfully/functions.php
  11. 1 0
      craftfully/parts/footer.html
  12. 1 0
      craftfully/parts/header.html
  13. 1 0
      craftfully/parts/sidebar.html
  14. 23 0
      craftfully/patterns/404.php
  15. 21 0
      craftfully/patterns/byline-date.php
  16. 44 0
      craftfully/patterns/featured-posts.php
  17. 40 0
      craftfully/patterns/footer.php
  18. 48 0
      craftfully/patterns/header.php
  19. 11 0
      craftfully/patterns/hidden-no-results-content.php
  20. 34 0
      craftfully/patterns/newsletter-subscription.php
  21. 50 0
      craftfully/patterns/posts-list.php
  22. 86 0
      craftfully/patterns/sidebar.php
  23. 53 0
      craftfully/readme.txt
  24. 二进制
      craftfully/screenshot.png
  25. 49 0
      craftfully/style.css
  26. 42 0
      craftfully/styles/creatio2_colors/ancient-bronze.json
  27. 42 0
      craftfully/styles/creatio2_colors/aquamarine-night.json
  28. 42 0
      craftfully/styles/creatio2_colors/arctic-dawn.json
  29. 82 0
      craftfully/styles/creatio2_colors/berry-grove.json
  30. 88 0
      craftfully/styles/creatio2_colors/blue-lagoon.json
  31. 42 0
      craftfully/styles/creatio2_colors/blueberry-sorbet.json
  32. 42 0
      craftfully/styles/creatio2_colors/bronze-serenity.json
  33. 42 0
      craftfully/styles/creatio2_colors/canary.json
  34. 82 0
      craftfully/styles/creatio2_colors/candy-store.json
  35. 42 0
      craftfully/styles/creatio2_colors/charcoal.json
  36. 42 0
      craftfully/styles/creatio2_colors/cinder.json
  37. 42 0
      craftfully/styles/creatio2_colors/cinnamon-latte.json
  38. 88 0
      craftfully/styles/creatio2_colors/crimson-tide.json
  39. 42 0
      craftfully/styles/creatio2_colors/evergreen-twilight.json
  40. 42 0
      craftfully/styles/creatio2_colors/fuchsia.json
  41. 88 0
      craftfully/styles/creatio2_colors/gumtree-sunset.json
  42. 88 0
      craftfully/styles/creatio2_colors/jungle-sunrise.json
  43. 42 0
      craftfully/styles/creatio2_colors/lightning.json
  44. 42 0
      craftfully/styles/creatio2_colors/lilac-nightshade.json
  45. 88 0
      craftfully/styles/creatio2_colors/midnight-citrus.json
  46. 42 0
      craftfully/styles/creatio2_colors/purple-twilight.json
  47. 42 0
      craftfully/styles/creatio2_colors/raspberry-chocolate.json
  48. 42 0
      craftfully/styles/creatio2_colors/rustic-rosewood.json
  49. 42 0
      craftfully/styles/creatio2_colors/sandalwood-oasis.json
  50. 42 0
      craftfully/styles/creatio2_colors/slate.json
  51. 88 0
      craftfully/styles/creatio2_colors/verdant-green.json
  52. 42 0
      craftfully/styles/creatio2_colors/vibrant-berry.json
  53. 5 0
      craftfully/templates/404.html
  54. 33 0
      craftfully/templates/archive.html
  55. 12 0
      craftfully/templates/index.html
  56. 23 0
      craftfully/templates/page.html
  57. 39 0
      craftfully/templates/search.html
  58. 68 0
      craftfully/templates/single.html
  59. 762 0
      craftfully/theme.json

二进制
craftfully/assets/fonts/dm-mono_italic_300.ttf


二进制
craftfully/assets/fonts/dm-mono_italic_400.ttf


二进制
craftfully/assets/fonts/dm-mono_italic_500.ttf


二进制
craftfully/assets/fonts/dm-mono_normal_300.ttf


二进制
craftfully/assets/fonts/dm-mono_normal_400.ttf


二进制
craftfully/assets/fonts/dm-mono_normal_500.ttf


二进制
craftfully/assets/fonts/dm-serif-display_italic_400.ttf


二进制
craftfully/assets/fonts/dm-serif-display_normal_400.ttf


二进制
craftfully/assets/images/pexels-julia-avamotive-1097781.jpg


+ 61 - 0
craftfully/functions.php

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

+ 1 - 0
craftfully/parts/footer.html

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

+ 1 - 0
craftfully/parts/header.html

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

+ 1 - 0
craftfully/parts/sidebar.html

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

+ 23 - 0
craftfully/patterns/404.php

@@ -0,0 +1,23 @@
+<?php
+/**
+ * Title: A 404 page
+ * Slug: craftfully/404
+ * Inserter: no
+ */
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|60"},"padding":{"bottom":"180px"}}},"layout":{"type":"constrained"}} -->
+<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--60);padding-bottom:180px"><!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
+<div class="wp-block-group alignwide"><!-- wp:heading {"textAlign":"left","level":1,"align":"wide"} -->
+<h1 class="wp-block-heading alignwide has-text-align-left" id="oops-that-page-can-t-be-found">
+<?php echo esc_html_x( 'Oops! That page can’t be found.', 'craftfully' ); ?></h1>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph -->
+<p><?php echo esc_html_x( 'It looks like nothing was found at this location. Maybe try a search?', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:search {"showLabel":false,"buttonText":"Search","style":{"border":{"radius":"50px","width":"1px"}},"borderColor":"foreground"} /--></div>
+<!-- /wp:group --></main>
+<!-- /wp:group -->

+ 21 - 0
craftfully/patterns/byline-date.php

@@ -0,0 +1,21 @@
+<?php
+/**
+ * Title: Byline and Date Post Meta
+ * Slug: craftfully/byline-date
+ * Inserter: no
+ */
+declare( strict_types = 1 );
+?>
+<!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|30"},"typography":{"fontSize":"x-small"},"elements":{"link":{"color":{"text":"#11181fa6"}}},"color":{"text":"#11181fa6"}},"layout":{"type":"flex","flexWrap":"nowrap","verticalAlignment":"center","justifyContent":"left"}} -->
+<div class="wp-block-group alignwide has-text-color has-link-color" style="color:#11181fa6;font-size:x-small"><!-- wp:paragraph {"fontSize":"x-small"} -->
+<p class="has-x-small-font-size"><?php echo esc_html_x( 'Published by', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-author {"showAvatar":false,"showBio":false,"byline":"","style":{"typography":{"fontStyle":"normal","fontWeight":"600"}},"fontSize":"x-small"} /-->
+
+<!-- wp:paragraph {"fontSize":"x-small"} -->
+<p class="has-x-small-font-size"><?php echo esc_html_x( 'on', 'Preposition: Refers to the post publish date', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:post-date {"isLink":true,"style":{"typography":{"fontStyle":"normal","fontWeight":"500"}}} /--></div>
+<!-- /wp:group -->

+ 44 - 0
craftfully/patterns/featured-posts.php

@@ -0,0 +1,44 @@
+<?php
+/**
+ * Title: Featured Posts
+ * Slug: craftfully/featured-posts
+ * Categories: featured
+ */
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group alignwide"><!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"}},"fontFamily":"dm-mono"} -->
+<p class="has-dm-mono-font-family" style="font-size:14px"><?php echo esc_html__( 'Featured', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:heading {"style":{"layout":{"selfStretch":"fit","flexSize":null}},"className":"heading-bg"} -->
+<h2 class="wp-block-heading heading-bg"><?php echo esc_html__( 'Halloween', 'craftfully' ); ?></h2>
+<!-- /wp:heading --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide"><!-- wp:query {"queryId":18,"query":{"perPage":3,"pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"","inherit":false},"align":"wide"} -->
+<div class="wp-block-query alignwide"><!-- wp:post-template {"layout":{"type":"grid","columnCount":3}} -->
+<!-- wp:cover {"useFeaturedImage":true,"dimRatio":0,"customOverlayColor":"#908289","isUserOverlayColor":true,"contentPosition":"bottom center","isDark":false,"layout":{"type":"constrained"}} -->
+<div class="wp-block-cover is-light has-custom-content-position is-position-bottom-center"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-0 has-background-dim" style="background-color:#908289"></span><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"align":"center","placeholder":"Write title…","fontSize":"large"} -->
+<p class="has-text-align-center has-large-font-size"></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"right":"var:preset|spacing|40","left":"var:preset|spacing|40","top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"},"blockGap":"var:preset|spacing|30"}},"backgroundColor":"base","layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group has-base-background-color has-background" style="padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--40)"><!-- wp:post-terms {"term":"category"} /-->
+
+<!-- wp:post-title {"isLink":true,"fontSize":"medium","fontFamily":"system-font"} /--></div>
+<!-- /wp:group --></div></div>
+<!-- /wp:cover -->
+<!-- /wp:post-template -->
+
+<!-- wp:query-no-results -->
+<!-- wp:paragraph {"placeholder":"Add text or blocks that will display when a query returns no results."} -->
+<p></p>
+<!-- /wp:paragraph -->
+<!-- /wp:query-no-results --></div>
+<!-- /wp:query --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 40 - 0
craftfully/patterns/footer.php

@@ -0,0 +1,40 @@
+<?php
+/**
+ * Title: Default footer
+ * Slug: craftfully/footer
+ * Categories: footer
+ * Block Types: core/template-part/footer
+ */
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"var:preset|spacing|60","left":"var:preset|spacing|60","top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}},"border":{"top":{"color":"var:preset|color|foreground","style":"dashed","width":"1px"},"right":[],"bottom":{"color":"var:preset|color|foreground","style":"dashed","width":"1px"},"left":[]}},"backgroundColor":"accent-3","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignfull has-accent-3-background-color has-background" style="border-top-color:var(--wp--preset--color--foreground);border-top-style:dashed;border-top-width:1px;border-bottom-color:var(--wp--preset--color--foreground);border-bottom-style:dashed;border-bottom-width:1px;padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--60)"><!-- wp:group {"align":"wide","layout":{"type":"flex","orientation":"vertical","justifyContent":"center"}} -->
+<div class="wp-block-group alignwide"><!-- wp:site-title /-->
+
+<!-- wp:navigation {"ref":1489,"overlayMenu":"never","style":{"typography":{"textTransform":"none","fontStyle":"normal","fontWeight":"300","letterSpacing":"0px"}},"fontFamily":"system-font"} /-->
+
+<!-- wp:social-links {"iconColor":"background","iconColorValue":"#ffffff","iconBackgroundColor":"primary","iconBackgroundColorValue":"#11181F","size":"has-small-icon-size","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}},"className":"is-style-default"} -->
+<ul class="wp-block-social-links has-small-icon-size has-icon-color has-icon-background-color is-style-default"><!-- wp:social-link {"url":"#","service":"pinterest"} /-->
+
+<!-- wp:social-link {"url":"#","service":"instagram"} /-->
+
+<!-- wp:social-link {"url":"#","service":"facebook"} /-->
+
+<!-- wp:social-link {"url":"#","service":"mail"} /--></ul>
+<!-- /wp:social-links --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:paragraph {"align":"center","style":{"typography":{"fontSize":"0.8rem"}}} -->
+<p style="font-size:0.8rem">
+    <?php
+        /* Translators: WordPress link. */
+        $wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'craftfully' ) ) . '" rel="nofollow">WordPress</a>';
+        echo sprintf(
+            esc_html__( 'Designed with %1$s', 'craftfully' ),
+            $wordpress_link
+        );
+    ?>
+</p>
+<!-- /wp:paragraph -->

+ 48 - 0
craftfully/patterns/header.php

@@ -0,0 +1,48 @@
+<?php
+/**
+ * Title: Default header
+ * Slug: craftfully/header
+ * Categories: header
+ * Block Types: core/template-part/header
+ */
+declare( strict_types = 1 );
+?>
+<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40","left":"var:preset|spacing|50","right":"var:preset|spacing|50"}},"elements":{"link":{"color":{"text":"var:preset|color|foreground"}}}},"backgroundColor":"accent-3","textColor":"foreground","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignfull has-foreground-color has-accent-3-background-color has-text-color has-background has-link-color" style="padding-top:var(--wp--preset--spacing--40);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--40);padding-left:var(--wp--preset--spacing--50)"><!-- wp:group {"align":"wide","layout":{"type":"constrained","justifyContent":"left"}} -->
+<div class="wp-block-group alignwide"><!-- wp:navigation {"overlayMenu":"never","overlayBackgroundColor":"accent-5","overlayTextColor":"contrast","style":{"typography":{"letterSpacing":"0px","fontSize":"14px"},"spacing":{"blockGap":"var:preset|spacing|40"}},"fontFamily":"system-font"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:columns {"verticalAlignment":"center","align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"},"blockGap":{"left":"var:preset|spacing|70"}}}} -->
+<div class="wp-block-columns alignwide are-vertically-aligned-center" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)"><!-- wp:column {"verticalAlignment":"center","width":"70%"} -->
+<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:70%"><!-- wp:site-title /--></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"verticalAlignment":"center","width":"33%"} -->
+<div class="wp-block-column is-vertically-aligned-center" style="flex-basis:33%"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"left"}} -->
+<div class="wp-block-group"><!-- wp:social-links {"iconBackgroundColor":"foreground","iconBackgroundColorValue":"#404040","size":"has-small-icon-size","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|20"}}}} -->
+<ul class="wp-block-social-links has-small-icon-size has-icon-background-color"><!-- wp:social-link {"url":"#","service":"facebook"} /-->
+
+<!-- wp:social-link {"url":"#","service":"instagram"} /-->
+
+<!-- wp:social-link {"url":"#","service":"pinterest"} /-->
+
+<!-- wp:social-link {"url":"#","service":"tiktok"} /--></ul>
+<!-- /wp:social-links -->
+
+<!-- wp:buttons -->
+<div class="wp-block-buttons"><!-- wp:button -->
+<div class="wp-block-button"><a class="wp-block-button__link wp-element-button"><?php echo esc_html__( 'Shop →', 'craftfully' ); ?></a></div>
+<!-- /wp:button --></div>
+<!-- /wp:buttons --></div>
+<!-- /wp:group --></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns -->
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40","left":"0","right":"0"}},"elements":{"link":{"color":{"text":"var:preset|color|primary"}}},"border":{"top":{"style":"dashed","width":"1px","color":"var:preset|color|foreground"},"right":{"style":"none","width":"0px"},"bottom":{"style":"dashed","width":"1px","color":"var:preset|color|foreground"},"left":{"style":"none","width":"0px"}}},"textColor":"primary","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide has-primary-color has-text-color has-link-color" style="border-top-color:var(--wp--preset--color--foreground);border-top-style:dashed;border-top-width:1px;border-right-style:none;border-right-width:0px;border-bottom-color:var(--wp--preset--color--foreground);border-bottom-style:dashed;border-bottom-width:1px;border-left-style:none;border-left-width:0px;padding-top:var(--wp--preset--spacing--40);padding-right:0;padding-bottom:var(--wp--preset--spacing--40);padding-left:0"><!-- wp:group {"align":"wide","layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group alignwide"><!-- wp:navigation {"icon":"menu","hasIcon":false,"overlayBackgroundColor":"secondary","align":"wide","layout":{"type":"flex"},"style":{"typography":{"textTransform":"uppercase","fontSize":"16px","fontStyle":"normal","fontWeight":"400"}}} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 11 - 0
craftfully/patterns/hidden-no-results-content.php

@@ -0,0 +1,11 @@
+<?php
+/**
+ * Title: Hidden No Results Content
+ * Slug: craftfully/hidden-no-results-content
+ * Inserter: no
+ */
+declare( strict_types = 1 );
+?>
+<!-- wp:paragraph {"style":{"spacing":{"padding":{"bottom":"80px","top":"20px"}}}} -->
+<p style="padding-top:20px;padding-bottom:80px"><?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', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->

+ 34 - 0
craftfully/patterns/newsletter-subscription.php

@@ -0,0 +1,34 @@
+<?php
+/**
+ * Title: Newsletter Subscription
+ * Slug: craftfully/newsletter-subscription
+ * Categories: featured
+ */
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:separator {"align":"wide"} -->
+<hr class="wp-block-separator alignwide has-alpha-channel-opacity"/>
+<!-- /wp:separator --></div>
+<!-- /wp:group -->
+
+<!-- wp:columns {"align":"wide"} -->
+<div class="wp-block-columns alignwide"><!-- wp:column -->
+<div class="wp-block-column"><!-- wp:heading {"textAlign":"left"} -->
+<h2 class="wp-block-heading has-text-align-left"><?php echo esc_html__( 'All things crafty in your inbox', 'craftfully' ); ?></h2>
+<!-- /wp:heading --></div>
+<!-- /wp:column -->
+
+<!-- wp:column -->
+<div class="wp-block-column"><!-- wp:jetpack/subscriptions {"borderRadius":50,"borderWeight":1,"borderColor":"foreground"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns -->
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:separator {"align":"wide"} -->
+<hr class="wp-block-separator alignwide has-alpha-channel-opacity"/>
+<!-- /wp:separator --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 50 - 0
craftfully/patterns/posts-list.php

@@ -0,0 +1,50 @@
+<?php
+/**
+ * Title: Posts List
+ * Slug: craftfully/posts-list
+ * Categories: featured
+ */
+declare( strict_types = 1 );
+?>
+
+<!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide"><!-- wp:columns {"align":"wide","style":{"spacing":{"padding":{"right":"0","left":"0"},"blockGap":{"left":"var:preset|spacing|50"}}}} -->
+<div class="wp-block-columns alignwide" style="padding-right:0;padding-left:0"><!-- wp:column {"width":"66.66%","style":{"spacing":{"padding":{"right":"0","left":"0"}}}} -->
+<div class="wp-block-column" style="padding-right:0;padding-left:0;flex-basis:66.66%"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"0"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group alignwide"><!-- wp:paragraph {"style":{"typography":{"fontSize":"14px"}},"fontFamily":"dm-mono"} -->
+<p class="has-dm-mono-font-family" style="font-size:14px"><?php echo esc_html__( 'Explore', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:heading {"style":{"layout":{"selfStretch":"fit","flexSize":null}},"className":"heading-bg"} -->
+<h2 class="wp-block-heading heading-bg"><?php echo esc_html__( 'Latest Posts', 'craftfully' ); ?></h2>
+<!-- /wp:heading --></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","enhancedPagination":true,"layout":{"type":"default"}} -->
+<main class="wp-block-query"><!-- wp:post-template {"layout":{"type":"grid","columnCount":2}} -->
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40","padding":{"bottom":"var:preset|spacing|40"}}}} -->
+<div class="wp-block-group" style="padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"3/4"} /-->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"flex","orientation":"vertical"}} -->
+<div class="wp-block-group"><!-- wp:post-terms {"term":"category","textAlign":"left","style":{"typography":{"fontStyle":"normal","fontWeight":"400","textTransform":"uppercase"}},"fontFamily":"dm-mono"} /-->
+
+<!-- wp:post-title {"textAlign":"left","isLink":true,"fontSize":"medium","fontFamily":"system-font"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide"><!-- wp:query-pagination {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"width":"33.33%","style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
+<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:template-part {"slug":"sidebar","theme":"craftfully"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group -->

+ 86 - 0
craftfully/patterns/sidebar.php

@@ -0,0 +1,86 @@
+<?php
+/**
+ * Title: sidebar
+ * Slug: craftfully/sidebar
+ * Categories: hidden
+ * Inserter: no
+ */
+declare( strict_types = 1 );
+?>
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap","justifyContent":"space-between"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:paragraph {"style":{"elements":{"link":{"color":{"text":"#11181fa6"}}},"color":{"text":"#11181fa6"},"typography":{"fontSize":"14px"}}} -->
+<p class="has-text-color has-link-color" style="color:#11181fa6;font-size:14px"><?php echo esc_html__( 'Hello,', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:heading {"level":3,"className":"heading-bg"} -->
+<h3 class="wp-block-heading heading-bg"><?php echo esc_html__( 'I\'m Veronica', 'craftfully' ); ?></h3>
+<!-- /wp:heading --></div>
+<!-- /wp:group -->
+
+<!-- wp:image {"id":67,"width":"80px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","style":{"border":{"width":"1px"}},"borderColor":"foreground","className":"is-style-rounded"} -->
+<figure class="wp-block-image size-full is-resized has-custom-border is-style-rounded"><img src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/pexels-julia-avamotive-1097781.jpg" alt="" class="has-border-color has-foreground-border-color wp-image-67" style="border-width:1px;aspect-ratio:1;object-fit:cover;width:80px"/></figure>
+<!-- /wp:image --></div>
+<!-- /wp:group -->
+
+<!-- wp:paragraph -->
+<p><?php echo esc_html__( 'Welcome to Craftfully, my cozy corner of the internet dedicated to all things homemade and delightful. Here, I invite you to join me on a journey of creativity, craftsmanship, and all things handmade with a touch of love. Let\'s get crafty!', 'nestled' ); ?></p>
+<!-- /wp:paragraph --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|30"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:heading {"textAlign":"left","level":3} -->
+<h3 class="wp-block-heading has-text-align-left"><?php echo esc_html__( 'Let\'s connect', 'craftfully' ); ?></h3>
+<!-- /wp:heading -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"0"}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40","padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"bottom":{"color":"var:preset|color|primary","width":"1px"}}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group" style="border-bottom-color:var(--wp--preset--color--primary);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:social-links {"iconColor":"primary","iconColorValue":"#11181F","showLabels":true,"size":"has-normal-icon-size","className":"is-style-logos-only"} -->
+<ul class="wp-block-social-links has-normal-icon-size has-visible-labels has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"pinterest","label":"Pinterest"} /--></ul>
+<!-- /wp:social-links --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40","padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"bottom":{"color":"var:preset|color|primary","width":"1px"}}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group" style="border-bottom-color:var(--wp--preset--color--primary);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:social-links {"iconColor":"primary","iconColorValue":"#11181F","showLabels":true,"size":"has-normal-icon-size","className":"is-style-logos-only"} -->
+<ul class="wp-block-social-links has-normal-icon-size has-visible-labels has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"instagram"} /--></ul>
+<!-- /wp:social-links --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|40","padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}},"border":{"bottom":{"color":"var:preset|color|primary","width":"1px"}}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
+<div class="wp-block-group" style="border-bottom-color:var(--wp--preset--color--primary);border-bottom-width:1px;padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:social-links {"iconColor":"primary","iconColorValue":"#11181F","showLabels":true,"size":"has-normal-icon-size","className":"is-style-logos-only"} -->
+<ul class="wp-block-social-links has-normal-icon-size has-visible-labels has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"mail"} /--></ul>
+<!-- /wp:social-links --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"style":{"elements":{"link":{"color":{"text":"var:preset|color|foreground"}},"heading":{"color":{"text":"var:preset|color|foreground"}}},"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|50","left":"var:preset|spacing|50","right":"var:preset|spacing|50"},"blockGap":"var:preset|spacing|40"}},"backgroundColor":"accent-3","textColor":"foreground","layout":{"type":"constrained"}} -->
+<div class="wp-block-group has-foreground-color has-accent-3-background-color has-text-color has-background has-link-color" style="padding-top:var(--wp--preset--spacing--50);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50);padding-left:var(--wp--preset--spacing--50)"><!-- wp:heading {"level":3} -->
+<h3 class="wp-block-heading"><?php echo esc_html__( 'Join the fun!', 'craftfully' ); ?></h3>
+<!-- /wp:heading -->
+
+<!-- wp:paragraph {"fontSize":"small"} -->
+<p class="has-small-font-size"><?php echo esc_html__( 'Stay updated with our latest tutorials and ideas by joining my newsletter.', 'craftfully' ); ?></p>
+<!-- /wp:paragraph -->
+
+<!-- wp:jetpack/subscriptions {"borderRadius":50,"borderColor":"contrast","padding":12} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--50)"><!-- wp:heading {"level":3} -->
+<h3 class="wp-block-heading"><?php echo esc_html__( 'Recent posts', 'craftfully' ); ?></h3>
+<!-- /wp:heading -->
+
+<!-- wp:query {"queryId":10,"query":{"perPage":"6","pages":0,"offset":0,"postType":"post","order":"desc","orderBy":"date","author":"","search":"","exclude":[],"sticky":"exclude","inherit":false}} -->
+<div class="wp-block-query"><!-- wp:post-template {"layout":{"type":"grid","columnCount":2}} -->
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}},"layout":{"inherit":false}} -->
+<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+
+<!-- wp:post-title {"isLink":true,"style":{"typography":{"fontStyle":"normal","fontWeight":"500"}},"fontSize":"small","fontFamily":"system-font"} /--></div>
+<!-- /wp:group -->
+<!-- /wp:post-template --></div>
+<!-- /wp:query --></div>
+<!-- /wp:group --></div>
+<!-- /wp:group -->

+ 53 - 0
craftfully/readme.txt

@@ -0,0 +1,53 @@
+=== Craftfully ===
+Contributors: Automattic
+Requires at least: 6.0
+Tested up to: 6.4.2
+Requires PHP: 5.7
+License: GPLv2 or later
+License URI: http://www.gnu.org/licenses/gpl-2.0.html
+
+== Description ==
+
+A cheerful WordPress blogging theme dedicated to all things homemade and delightful.
+
+== Changelog ==
+
+= 1.0.0 =
+* Initial release
+
+== Copyright ==
+
+Craftfully WordPress Theme, (C) 2023 Automattic
+Craftfully 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:
+
+DM Mono Font
+Copyright 2020 The DM Mono Project Authors (https://www.github.com/googlefonts/dm-mono) 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL 
+License URL: http://scripts.sil.org/OFL 
+Source: https://www.colophon-foundry.org
+-- End of DM Mono Font credits --
+
+DM Serif Display Font
+Copyright 2014 - 2017 Adobe Systems Incorporated (http://www.adobe.com/), with Reserved Font Name 'Source'. Copyright 2019 Google LLC. 
+This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: http://scripts.sil.org/OFL 
+License URL: http://scripts.sil.org/OFL 
+Source: http://www.colophon-foundry.org
+-- End of DM Serif Display Font credits --
+
+Photography by Julia Avamotive via Pexels
+https://www.pexels.com/photo/blonde-haired-woman-in-orange-knitted-long-sleeved-top-1097781/
+
+Included in theme screenshot and in theme templates.
+

二进制
craftfully/screenshot.png


+ 49 - 0
craftfully/style.css

@@ -0,0 +1,49 @@
+/*
+Theme Name: Craftfully
+Theme URI: https://wordpress.com/theme/craftfully
+Author: Automattic
+Author URI: https://automattic.com/
+Description: A cheerful WordPress blogging theme dedicated to all things homemade and delightful.
+Requires at least: 6.0
+Tested up to: 6.4.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: craftfully
+Tags: blog, one-column, three-columns, wide-blocks, block-patterns, custom-colors, custom-logo, custom-menu, editor-style, featured-images, full-site-editing, rtl-language-support, style-variations, template-editing, theme-options, threaded-comments, translation-ready
+*/
+
+/*
+ * 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);
+}
+
+.wp-block-table figcaption {
+	font-size: var(--wp--preset--font-size--small);
+	text-align: center;
+}
+
+/*
+ * Link styles
+ * https://github.com/WordPress/gutenberg/issues/42319
+ */
+a {
+	text-decoration-thickness: .0625em !important;
+	text-underline-offset: .15em;
+}
+
+/*
+ * Navigation Block
+ * Reset the padding from List block
+ * https://github.com/WordPress/gutenberg/issues/50486
+ */
+.wp-block-navigation ul {
+	padding: unset;
+}

+ 42 - 0
craftfully/styles/creatio2_colors/ancient-bronze.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Ancient Bronze",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#323856",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#7D755E",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#323856",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#F7F2EE",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/aquamarine-night.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Aquamarine Night",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#deffef",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#56fbb9",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#091C48",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#10317F",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/arctic-dawn.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Arctic Dawn",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#1E226F",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#DD301D",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#0D1263",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#F0F1F5",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 82 - 0
craftfully/styles/creatio2_colors/berry-grove.json

@@ -0,0 +1,82 @@
+{	
+	"title": "Berry Grove",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#1F351A",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#DE76DE",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#1f351a",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#fdfaf1",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#ecf6eb",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 88 - 0
craftfully/styles/creatio2_colors/blue-lagoon.json

@@ -0,0 +1,88 @@
+{	
+	"title": "Blue Lagoon",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#151C5F",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#FCE5C5",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#151C5F",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#FEFDF8",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#E4F8FB",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--foreground)"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/blueberry-sorbet.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Blueberry Sorbet",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#2038B6",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#BD4089",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#2038B6",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#FDFBEF",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#F8F2E2",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/bronze-serenity.json

@@ -0,0 +1,42 @@
+{
+	"title": "Bronze Serenity",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#1e4b4b",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#996C45",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#1e4b4b",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#e9eded",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/canary.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Canary",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#0F0F05",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#666666",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#0F0F05",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#FCFF9B",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#E8EB8C",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 82 - 0
craftfully/styles/creatio2_colors/candy-store.json

@@ -0,0 +1,82 @@
+{
+	"title": "Candy Store",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#293852",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#f1bea7",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#293852",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#fffddb",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/charcoal.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Charcoal",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#dbdbdb",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#efefef",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#dbdbdb",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#1e1e1e",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#000000",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/cinder.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Cinder",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#c14420",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#2F2D2D",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#c14420",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#f1f2f2",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#DCDCDC",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/cinnamon-latte.json

@@ -0,0 +1,42 @@
+{   
+	"title": "Cinnamon Latte",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"slug": "primary",
+					"color": "#DED5C6",
+					"name": "Primary"
+				},
+				{
+					"slug": "secondary",
+					"color": "#EEA545",
+					"name": "Secondary"
+				},
+				{
+					"slug": "foreground",
+					"color": "#FFFFFF",
+					"name": "Foreground"
+				},
+				{
+					"slug": "background",
+					"color": "#3C3F4D",
+					"name": "Background"
+				},
+				{
+					"slug": "tertiary",
+					"color": "#2B2D36",
+					"name": "Tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 88 - 0
craftfully/styles/creatio2_colors/crimson-tide.json

@@ -0,0 +1,88 @@
+{	
+	"title": "Crimson Tide",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#101317",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#EC5E3F",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#101317",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#EEEEEE",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--primary)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--primary)"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--primary)"
+				}
+			}
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/evergreen-twilight.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Evergreen Twilight",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#ffffff",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#8EE978",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#181818",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#636363",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/fuchsia.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Fuchsia",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#b7127f",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#18020C",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#b7127f",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#f7edf6",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 88 - 0
craftfully/styles/creatio2_colors/gumtree-sunset.json

@@ -0,0 +1,88 @@
+{	
+	"title": "Gumtree Sunset",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#8699A1",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#F0B7B3",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#335058",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#F4F7F7",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--foreground)"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 88 - 0
craftfully/styles/creatio2_colors/jungle-sunrise.json

@@ -0,0 +1,88 @@
+{	
+	"title": "Jungle Sunrise",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#1a4435",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#ed774e",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#0a271d",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#fefbec",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f7decb",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--foreground)"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/lightning.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Lightning",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#ebffd2",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#fefefe",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ebffd2",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#0e1fb5",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#0A1680",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/lilac-nightshade.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Lilac Nightshade",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#f5d6ff",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#C48DDA",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#000000",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#462749",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 88 - 0
craftfully/styles/creatio2_colors/midnight-citrus.json

@@ -0,0 +1,88 @@
+{
+	"title": "Midnight Citrus",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#222222",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#c0f500",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#222222",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f7faed",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--foreground)"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/purple-twilight.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Purple Twilight",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#301834",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#6a5eb7",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#090909",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#fefbff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f3eaf5",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/raspberry-chocolate.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Raspberry Chocolate",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#42332e",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#BA3F72",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#241d1a",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#F2EFEB",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#D6CCC2",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/rustic-rosewood.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Rustic Rosewood",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#F4F4F2",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#EE797C",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#1A1A1A",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#3B3939",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/sandalwood-oasis.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Sandalwood Oasis",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#F0EBE3",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#DF9785",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#2a2a16",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#434323",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/slate.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Slate",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"slug": "primary",
+					"color": "#FFFFFF",
+					"name": "Primary"
+				},
+				{
+					"slug": "secondary",
+					"color": "#FFDF6D",
+					"name": "Secondary"
+				},
+				{
+					"slug": "foreground",
+					"color": "#EFF2F9",
+					"name": "Foreground"
+				},
+				{
+					"slug": "background",
+					"color": "#13161E",
+					"name": "Background"
+				},
+				{
+					"slug": "tertiary",
+					"color": "#303036",
+					"name": "Tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 88 - 0
craftfully/styles/creatio2_colors/verdant-green.json

@@ -0,0 +1,88 @@
+{
+	"title": "Verdant Green",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"color": "#1f2e27",
+					"name": "Primary",
+					"slug": "primary"
+				},
+				{
+					"color": "#5ecb6f",
+					"name": "Secondary",
+					"slug": "secondary"
+				},
+				{
+					"color": "#1f2126",
+					"name": "Foreground",
+					"slug": "foreground"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Background",
+					"slug": "background"
+				},
+				{
+					"color": "#f1efe7",
+					"name": "Tertiary",
+					"slug": "tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"color": {
+					"background": "var(--wp--preset--color--secondary)"
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--secondary)"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--foreground)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		},
+		"elements": {
+			"button": {
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--secondary)",
+						"text": "var(--wp--preset--color--foreground)"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--secondary)",
+					"text": "var(--wp--preset--color--foreground)"
+				}
+			}
+		}
+	}
+}

+ 42 - 0
craftfully/styles/creatio2_colors/vibrant-berry.json

@@ -0,0 +1,42 @@
+{	
+	"title": "Vibrant Berry",
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json",
+	"settings": {
+		"color": {
+			"palette": [
+				{
+					"slug": "primary",
+					"color": "#7C1D6F",
+					"name": "Primary"
+				},
+				{
+					"slug": "secondary",
+					"color": "#C42FB0",
+					"name": "Secondary"
+				},
+				{
+					"slug": "foreground",
+					"color": "#7C1D6F",
+					"name": "Foreground"
+				},
+				{
+					"slug": "background",
+					"color": "#FFF7EB",
+					"name": "Background"
+				},
+				{
+					"slug": "tertiary",
+					"color": "#FDD8DE",
+					"name": "Tertiary"
+				}
+			]
+		}
+	},
+	"styles": {
+		"color": {
+			"background": "var(--wp--preset--color--background)",
+			"text": "var(--wp--preset--color--foreground)"
+		}
+	}
+}

+ 5 - 0
craftfully/templates/404.html

@@ -0,0 +1,5 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:pattern {"slug":"craftfully/404"} /-->
+
+<!-- wp:template-part {"slug":"footer","area":"footer"} /-->

+ 33 - 0
craftfully/templates/archive.html

@@ -0,0 +1,33 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- wp:group {"layout":{"type":"constrained"}} -->
+<div class="wp-block-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","align":"wide","layout":{"type":"constrained","wideSize":"1180px","contentSize":"1180px"}} -->
+<main class="wp-block-query alignwide"><!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|70"},"blockGap":"var:preset|spacing|20"}},"layout":{"type":"constrained","justifyContent":"left"}} -->
+<div class="wp-block-group alignwide" style="margin-top:var(--wp--preset--spacing--60);margin-bottom:var(--wp--preset--spacing--70)"><!-- wp:query-title {"type":"archive","level":2} /-->
+
+<!-- wp:term-description /--></div>
+<!-- /wp:group -->
+
+<!-- wp:post-template {"layout":{"type":"grid","columnCount":4}} -->
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}}} -->
+<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+
+<!-- wp:post-title {"isLink":true,"fontSize":"medium","fontFamily":"instrument-sans"} /-->
+
+<!-- wp:spacer {"height":"40px"} -->
+<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template -->
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"margin":{"bottom":"var:preset|spacing|50"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide" style="margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:query-pagination {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group --></main>
+<!-- /wp:query --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer","area":"footer"} /-->

+ 12 - 0
craftfully/templates/index.html

@@ -0,0 +1,12 @@
+<!-- wp:template-part {"slug":"header"} /-->
+
+<!-- wp:group {"tagName":"main","style":{"spacing":{"margin":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|60"}}}} -->
+<main class="wp-block-group" style="margin-bottom:var(--wp--preset--spacing--60); margin-top:var(--wp--preset--spacing--40)">
+	<!-- wp:pattern {"slug":"craftfully/featured-posts"} /-->
+	<!-- wp:pattern {"slug":"craftfully/newsletter-subscription"} /-->
+	<!-- wp:pattern {"slug":"craftfully/posts-list"} /-->
+	
+</main>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer"} /-->

+ 23 - 0
craftfully/templates/page.html

@@ -0,0 +1,23 @@
+<!-- wp:template-part {"slug":"header"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|60","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|70"}}}} -->
+<div class="wp-block-columns alignwide"><!-- wp:column {"width":"66.66%"} -->
+<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
+<div class="wp-block-group"><!-- wp:post-title /-->
+
+<!-- wp:post-content /-->
+
+<!-- wp:spacer {"height":"40px"} -->
+<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"width":"33.33%","style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
+<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:template-part {"slug":"sidebar"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer"} /-->

+ 39 - 0
craftfully/templates/search.html

@@ -0,0 +1,39 @@
+<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
+
+<!-- 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":"constrained"}} -->
+<main class="wp-block-query"><!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
+<div class="wp-block-group alignwide"><!-- wp:query-title {"type":"search","level":2,"align":"wide","style":{"spacing":{"padding":{"bottom":"0px","top":"var:preset|spacing|60"}}}} /-->
+
+<!-- wp:search {"showLabel":false,"width":100,"widthUnit":"%","buttonText":"Search","style":{"border":{"radius":"50px","width":"1px"}},"borderColor":"foreground","fontSize":"small"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"wide","style":{"spacing":{"padding":{"top":"20px"}}},"layout":{"type":"default"}} -->
+<div class="wp-block-group alignwide" style="padding-top:20px"><!-- wp:post-template {"layout":{"type":"grid","columnCount":4}} -->
+<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|20"}}} -->
+<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"1"} /-->
+
+<!-- wp:post-title {"isLink":true,"fontSize":"medium","fontFamily":"instrument-sans"} /-->
+
+<!-- wp:spacer {"height":"40px"} -->
+<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
+<!-- /wp:spacer --></div>
+<!-- /wp:group -->
+<!-- /wp:post-template --></div>
+<!-- /wp:group -->
+
+<!-- wp:group {"align":"wide","layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide"><!-- wp:query-pagination {"align":"wide","layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:query-pagination-previous /-->
+
+<!-- wp:query-pagination-next /-->
+<!-- /wp:query-pagination --></div>
+<!-- /wp:group -->
+
+<!-- wp:query-no-results {"align":"wide"} -->
+<!-- wp:paragraph {"style":{"spacing":{"padding":{"bottom":"80px","top":"20px"}}}} -->
+<!-- wp:pattern {"slug":"craftfully/hidden-no-results-content"} /-->
+<!-- /wp:paragraph -->
+<!-- /wp:query-no-results --></main>
+<!-- /wp:query -->
+
+<!-- wp:template-part {"slug":"footer","area":"footer"} /-->

+ 68 - 0
craftfully/templates/single.html

@@ -0,0 +1,68 @@
+<!-- wp:template-part {"slug":"header"} /-->
+
+<!-- wp:group {"style":{"spacing":{"padding":{"top":"var:preset|spacing|50","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60)"><!-- wp:columns {"align":"wide","style":{"spacing":{"blockGap":{"left":"var:preset|spacing|70"}}}} -->
+<div class="wp-block-columns alignwide"><!-- wp:column {"width":"66.66%"} -->
+<div class="wp-block-column" style="flex-basis:66.66%"><!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
+<div class="wp-block-group"><!-- wp:group {"align":"wide","style":{"spacing":{"blockGap":"var:preset|spacing|30","padding":{"top":"var:preset|spacing|40","bottom":"var:preset|spacing|40"}}},"layout":{"type":"constrained"}} -->
+<div class="wp-block-group alignwide" style="padding-top:var(--wp--preset--spacing--40);padding-bottom:var(--wp--preset--spacing--40)"><!-- wp:post-title {"textAlign":"left","align":"wide"} /-->
+
+<!-- wp:pattern {"slug":"craftfully/byline-date"} /-->
+</div>
+<!-- /wp:group -->
+
+<!-- wp:post-content /-->
+
+<!-- wp:comments -->
+<div class="wp-block-comments"><!-- wp:comments-title /-->
+
+<!-- wp:comment-template -->
+<!-- wp:columns -->
+<div class="wp-block-columns"><!-- wp:column {"width":"40px"} -->
+<div class="wp-block-column" style="flex-basis:40px"><!-- wp:avatar {"size":40,"style":{"border":{"radius":"20px"}}} /--></div>
+<!-- /wp:column -->
+
+<!-- wp:column -->
+<div class="wp-block-column"><!-- wp:comment-author-name {"fontSize":"small"} /-->
+
+<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"}}},"layout":{"type":"flex"}} -->
+<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"><!-- wp:comment-date {"fontSize":"small"} /-->
+
+<!-- wp:comment-edit-link {"fontSize":"small"} /--></div>
+<!-- /wp:group -->
+
+<!-- wp:comment-content /-->
+
+<!-- wp:comment-reply-link {"fontSize":"small"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns -->
+<!-- /wp:comment-template -->
+
+<!-- wp:comments-pagination {"layout":{"type":"flex","justifyContent":"space-between"}} -->
+<!-- wp:comments-pagination-previous /-->
+
+<!-- wp:comments-pagination-next /-->
+<!-- /wp:comments-pagination -->
+
+<!-- wp:post-comments-form /--></div>
+<!-- /wp:comments -->
+
+<!-- wp:spacer {"height":"40px"} -->
+<div style="height:40px" 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:post-navigation-link {"type":"previous","showTitle":true,"linkLabel":true,"arrow":"arrow"} /-->
+
+<!-- wp:post-navigation-link {"showTitle":true,"linkLabel":true,"arrow":"arrow"} /--></div>
+<!-- /wp:group --></div>
+<!-- /wp:group --></div>
+<!-- /wp:column -->
+
+<!-- wp:column {"width":"33.33%","style":{"spacing":{"blockGap":"var:preset|spacing|50"}}} -->
+<div class="wp-block-column" style="flex-basis:33.33%"><!-- wp:template-part {"slug":"sidebar"} /--></div>
+<!-- /wp:column --></div>
+<!-- /wp:columns --></div>
+<!-- /wp:group -->
+
+<!-- wp:template-part {"slug":"footer"} /-->

+ 762 - 0
craftfully/theme.json

@@ -0,0 +1,762 @@
+{
+	"settings": {
+		"appearanceTools": true,
+		"color": {
+			"background": true,
+			"custom": true,
+			"customDuotone": true,
+			"customGradient": true,
+			"defaultDuotone": false,
+			"defaultGradients": false,
+			"defaultPalette": true,
+			"duotone": [],
+			"gradients": [],
+			"palette": [
+				{
+					"color": "#000000",
+					"name": "Accent 1",
+					"slug": "accent-1"
+				},
+				{
+					"color": "#ecc3de",
+					"name": "Accent 2",
+					"slug": "accent-2"
+				},
+				{
+					"color": "#404040",
+					"name": "Contrast",
+					"slug": "contrast"
+				},
+				{
+					"color": "#ffffff",
+					"name": "Base",
+					"slug": "base"
+				},
+				{
+					"color": "#fdf1cd",
+					"name": "Accent 3",
+					"slug": "accent-3"
+				},
+				{
+					"color": "#F6D1B6",
+					"name": "Accent 4",
+					"slug": "accent-4"
+				},
+				{
+					"color": "#CEE3E2",
+					"name": "Accent 5",
+					"slug": "accent-5"
+				}
+			],
+			"text": true
+		},
+		"layout": {
+			"contentSize": "680px",
+			"wideSize": "1110px"
+		},
+		"shadow": {
+			"defaultPresets": true,
+			"presets": []
+		},
+		"spacing": {
+			"customSpacingSize": true,
+			"spacingScale": {
+				"increment": 1.5,
+				"mediumStep": 1.5,
+				"operator": "*",
+				"steps": 7,
+				"unit": "rem"
+			},
+			"spacingSizes": [
+				{
+					"name": "1",
+					"size": "0.25rem",
+					"slug": "30"
+				},
+				{
+					"name": "2",
+					"size": "1rem",
+					"slug": "40"
+				},
+				{
+					"name": "3",
+					"size": "1.75rem",
+					"slug": "50"
+				},
+				{
+					"name": "4",
+					"size": "clamp(1.75rem, 3.5211268vw, 3.5rem)",
+					"slug": "60"
+				},
+				{
+					"name": "5",
+					"size": "clamp(3.5rem, 7.3943662vw, 5.25rem)",
+					"slug": "70"
+				},
+				{
+					"name": "6",
+					"size": "clamp(5.25rem, 12.3239437vw, 8.75rem)",
+					"slug": "80"
+				}
+			],
+			"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": "DM Mono",
+							"fontStyle": "normal",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/dm-mono_normal_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "DM Mono",
+							"fontStyle": "italic",
+							"fontWeight": "300",
+							"src": [
+								"file:./assets/fonts/dm-mono_italic_300.ttf"
+							]
+						},
+						{
+							"fontFamily": "DM Mono",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/dm-mono_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "DM Mono",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/dm-mono_italic_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "DM Mono",
+							"fontStyle": "normal",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/dm-mono_normal_500.ttf"
+							]
+						},
+						{
+							"fontFamily": "DM Mono",
+							"fontStyle": "italic",
+							"fontWeight": "500",
+							"src": [
+								"file:./assets/fonts/dm-mono_italic_500.ttf"
+							]
+						}
+					],
+					"fontFamily": "DM Mono",
+					"slug": "dm-mono"
+				},
+				{
+					"fontFace": [
+						{
+							"fontFamily": "DM Serif Display",
+							"fontStyle": "normal",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/dm-serif-display_normal_400.ttf"
+							]
+						},
+						{
+							"fontFamily": "DM Serif Display",
+							"fontStyle": "italic",
+							"fontWeight": "400",
+							"src": [
+								"file:./assets/fonts/dm-serif-display_italic_400.ttf"
+							]
+						}
+					],
+					"fontFamily": "DM Serif Display",
+					"slug": "dm-serif-display"
+				}
+			],
+			"fontSizes": [
+				{
+					"fluid": false,
+					"name": "Extra Small",
+					"size": "0.8rem",
+					"slug": "x-small"
+				},
+				{
+					"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": "1.563rem",
+						"min": "1.25rem"
+					},
+					"name": "Large",
+					"size": "1.563rem",
+					"slug": "large"
+				},
+				{
+					"fluid": {
+						"max": "1.953rem",
+						"min": "1.563rem"
+					},
+					"name": "Extra Large",
+					"size": "1.953rem",
+					"slug": "x-large"
+				},
+				{
+					"fluid": {
+						"max": "2.441rem",
+						"min": "1.953rem"
+					},
+					"name": "2X Large",
+					"size": "3.732rem",
+					"slug": "xx-large"
+				},
+				{
+					"fluid": {
+						"max": "3.052rem",
+						"min": "2.441rem"
+					},
+					"name": "3X Large",
+					"size": "3.052rem",
+					"slug": "xxx-large"
+				},
+				{
+					"fluid": {
+						"max": "3.815rem",
+						"min": "3.052rem"
+					},
+					"name": "4X Large",
+					"size": "3.815rem",
+					"slug": "xxxx-large"
+				},
+				{
+					"fluid": {
+						"max": "4.768rem",
+						"min": "3.815rem"
+					},
+					"name": "5X Large",
+					"size": "4.768rem",
+					"slug": "xxxxx-large"
+				}
+			],
+			"fontStyle": true,
+			"fontWeight": true,
+			"letterSpacing": true,
+			"textDecoration": true,
+			"textTransform": true
+		},
+		"useRootPaddingAwareAlignments": true
+	},
+	"styles": {
+		"blocks": {
+			"core/button": {
+				"border": {
+					"bottom": {
+						"color": "var(--wp--preset--color--contrast)",
+						"style": "solid",
+						"width": "1px"
+					},
+					"left": {
+						"color": "var(--wp--preset--color--contrast)",
+						"style": "solid",
+						"width": "1px"
+					},
+					"radius": "50px",
+					"right": {
+						"color": "var(--wp--preset--color--contrast)",
+						"style": "solid",
+						"width": "1px"
+					},
+					"top": {
+						"color": "var(--wp--preset--color--contrast)",
+						"style": "solid",
+						"width": "1px"
+					}
+				},
+				"color": {
+					"background": "var(--wp--preset--color--accent-2)",
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"elements": {
+					"link": {
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						}
+					}
+				},
+				"spacing": {
+					"padding": {
+						"bottom": "var(--wp--preset--spacing--40)",
+						"top": "var(--wp--preset--spacing--40)"
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--dm-mono)",
+					"lineHeight": "1"
+				},
+				"variations": {
+					"outline": {
+						"border": {
+							"color": "var(--wp--preset--color--contrast)",
+							"width": "1px"
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"spacing": {
+							"padding": {
+								"bottom": "14px",
+								"top": "14px"
+							}
+						}
+					}
+				}
+			},
+			"core/buttons": {
+				"spacing": {
+					"blockGap": "var(--wp--preset--spacing--40)"
+				}
+			},
+			"core/code": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"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--x-small)"
+				}
+			},
+			"core/comment-date": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-edit-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/comment-reply-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/gallery": {
+				"spacing": {
+					"margin": {
+						"bottom": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/heading": {
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"elements": {
+					"link": {
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						}
+					}
+				}
+			},
+			"core/list": {
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				}
+			},
+			"core/navigation": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--dm-mono)",
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"letterSpacing": "1px"
+				}
+			},
+			"core/post-author-name": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				}
+			},
+			"core/post-comments-count": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-comments-link": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-date": {
+				"color": {
+					"text": "#11181fa6"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-small)"
+				}
+			},
+			"core/post-terms": {
+				"elements": {
+					"link": {
+						":hover": {
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--dm-mono)",
+					"fontSize": "var(--wp--preset--font-size--x-small)",
+					"fontStyle": "normal",
+					"fontWeight": "500",
+					"textTransform": "uppercase"
+				}
+			},
+			"core/post-title": {
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var(--wp--preset--color--accent-1)"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xxx-large)",
+					"fontStyle": "normal",
+					"fontWeight": "600"
+				}
+			},
+			"core/pullquote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"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--medium)",
+					"fontStyle": "italic"
+				}
+			},
+			"core/quote": {
+				"border": {
+					"color": "var(--wp--preset--color--contrast)",
+					"style": "solid",
+					"width": "0 0 0 5px"
+				},
+				"spacing": {
+					"padding": {
+						"left": "var(--wp--preset--spacing--50)"
+					}
+				},
+				"typography": {
+					"fontStyle": "italic"
+				},
+				"variations": {
+					"plain": {
+						"border": {
+							"width": "0"
+						},
+						"spacing": {
+							"padding": {
+								"left": "0"
+							}
+						},
+						"typography": {
+							"fontStyle": "normal"
+						}
+					}
+				}
+			},
+			"core/search": {
+				"border": {
+					"radius": "50px"
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)",
+					"lineHeight": "1.2"
+				}
+			},
+			"core/separator": {
+				"border": {
+					"color": "currentColor",
+					"style": "dashed",
+					"width": "0 0 1px 0"
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				}
+			},
+			"core/site-tagline": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--small)"
+				}
+			},
+			"core/site-title": {
+				"elements": {
+					"link": {
+						":hover": {
+							"color": {
+								"text": "var(--wp--preset--color--contrast)"
+							},
+							"typography": {
+								"textDecoration": "underline"
+							}
+						},
+						"color": {
+							"text": "var(--wp--preset--color--contrast)"
+						},
+						"typography": {
+							"textDecoration": "none"
+						}
+					}
+				},
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"fontStyle": "normal",
+					"fontWeight": "400"
+				}
+			}
+		},
+		"color": {
+			"background": "var(--wp--preset--color--base)",
+			"text": "var(--wp--preset--color--contrast)"
+		},
+		"css": "/* Remove block gap between first-level blocks */ :where(.wp-site-blocks) > * { margin-block-start: 0; margin-block-end: 0; }\n\n.heading-bg {background: rgb(255,255,255);\nbackground: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,1) 50%, rgba(206,227,226,1) 50%, rgba(206,227,226,1) 100%);}",
+		"elements": {
+			"button": {
+				":active": {
+					"color": {
+						"background": "var(--wp--preset--color--contrast)",
+						"text": "var(--wp--preset--color--base)"
+					}
+				},
+				":focus": {
+					"color": {
+						"background": "var(--wp--preset--color--contrast)",
+						"text": "var(--wp--preset--color--base)"
+					},
+					"outline": {
+						"color": "var(--wp--preset--color--contrast)",
+						"offset": "2px",
+						"style": "dotted",
+						"width": "1px"
+					}
+				},
+				":hover": {
+					"color": {
+						"background": "var(--wp--preset--color--accent-5)",
+						"text": "var(--wp--preset--color--contrast)"
+					}
+				},
+				"border": {
+					"radius": "0.25rem"
+				},
+				"color": {
+					"background": "var(--wp--preset--color--accent-2)",
+					"text": "var(--wp--preset--color--contrast)"
+				},
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--dm-mono)"
+				}
+			},
+			"h1": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xxx-large)",
+					"lineHeight": "1.127"
+				}
+			},
+			"h2": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--xx-large)",
+					"lineHeight": "1.152"
+				}
+			},
+			"h3": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--x-large)",
+					"lineHeight": "1.28"
+				}
+			},
+			"h4": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--large)",
+					"lineHeight": "1.5"
+				}
+			},
+			"h5": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.5"
+				}
+			},
+			"h6": {
+				"typography": {
+					"fontSize": "var(--wp--preset--font-size--medium)",
+					"lineHeight": "1.5"
+				}
+			},
+			"heading": {
+				"typography": {
+					"fontFamily": "var(--wp--preset--font-family--dm-serif-display)",
+					"fontStyle": "normal",
+					"fontWeight": "400",
+					"lineHeight": "1.2"
+				}
+			},
+			"link": {
+				":hover": {
+					"color": {
+						"text": "var(--wp--preset--color--accent-1)"
+					},
+					"typography": {
+						"textDecoration": "none"
+					}
+				},
+				"color": {
+					"text": "var(--wp--preset--color--contrast)"
+				}
+			}
+		},
+		"spacing": {
+			"blockGap": "var(--wp--preset--spacing--50)",
+			"padding": {
+				"bottom": "0px",
+				"left": "var(--wp--preset--spacing--50)",
+				"right": "var(--wp--preset--spacing--50)",
+				"top": "0px"
+			}
+		},
+		"typography": {
+			"fontFamily": "var(--wp--preset--font-family--system-font)",
+			"fontSize": "var(--wp--preset--font-size--small)",
+			"fontStyle": "normal",
+			"fontWeight": "300",
+			"lineHeight": "1.6"
+		}
+	},
+	"templateParts": [
+		{
+			"area": "header",
+			"name": "header"
+		},
+		{
+			"area": "footer",
+			"name": "footer"
+		}
+	],
+	"version": 2,
+	"$schema": "https://schemas.wp.org/trunk/theme.json"
+}