Compare commits

..

No commits in common. "trunk" and "clean/ie-hack" have entirely different histories.

1675 changed files with 16310 additions and 61038 deletions

View file

@ -1,21 +1,17 @@
name: Bug Report
description: Report issues with one of our products.
labels: [ 'Needs triage', '[Type] Bug' ]
description: Helps us improve our product!
labels: "Needs triage, [Type] Bug"
title: "[Bug]: "
body:
- type: markdown
attributes:
value: |
### Thanks for contributing!
Please write a clear title, then fill in the fields below and submit.
Please write a clear title, then fill in as much details as possible.
Please **do not** link to image hosting services such as Cloudup, Droplr, Imgur, etc…
Instead, directly embed screenshot(s) or recording(s) in any of the text areas below: click, then drag and drop.
- type: markdown
attributes:
value: |
---
## Core Information
__Avoid using image hosting services such as Cloudup, Droplr, Imgur, etc., to link to media.__
Instead, attach screenshot(s) or recording(s) directly in any of the text areas below: click, then drag and drop.
- type: textarea
id: summary
attributes:
@ -29,32 +25,95 @@ body:
2. Click on any blog post.
3. Click on the 'Like' button.
4. ...
Attach any media by drag and dropping or selecting upload.
validations:
required: true
- type: textarea
id: expected
attributes:
label: A clear and concise description of what you expected to happen.
label: What you expected to happen
placeholder: |
eg. Post should be liked.
e.g. The post should be liked.
validations:
required: true
- type: textarea
id: actual
attributes:
label: What actually happened
placeholder: |
eg. Clicking the button does nothing visibly.
e.g. Clicking the button does nothing visibly.
validations:
required: true
- type: dropdown
id: browser
attributes:
label: Browser
description: (You may select more than one)
options:
- Google Chrome/Chromium
- Mozilla Firefox
- Microsoft Edge
- Apple Safari
- iOS Safari
- Android Chrome
multiple: true
- type: input
id: issue_context
attributes:
label: Context
placeholder: |
e.g. Customer report, details of your exploratory testing, etc.
- type: markdown
attributes:
value: |
---
## Additional context
The following section is optional. If you're an Automattician, you should be able to fill it in. If not, please scroll to the bottom and submit the issue.
- type: dropdown
id: site-type
attributes:
label: Platform (Simple, Atomic, or both?)
description: (You may select more than one)
options:
- Simple
- Atomic
- Self-hosted
multiple: true
- type: textarea
id: other_notes
attributes:
label: Other notes
placeholder: |
e.g. Logs, CLI or console errors, notes, observations, etc.
- type: markdown
attributes:
value: |
---
## Issue severity
Please provide details around how often the issue is reproducible & how many users are affected.
- type: dropdown
id: reproducibility
attributes:
label: Reproducibility
options:
- Consistent
- Intermittent
- Once
validations:
required: true
- type: dropdown
id: users-affected
attributes:
label: Impact
description: Approximately how many users are impacted?
label: Severity
description: How many users are impacted? A guess is fine.
options:
- One
- Some (< 50%)
- Most (> 50%)
- All
validations:
required: true
- type: dropdown
id: workarounds
attributes:
@ -65,45 +124,10 @@ body:
- Yes, difficult to implement
- Yes, easy to implement
- There is no user impact
validations:
required: true
- type: markdown
attributes:
value: |
<br>
- type: textarea
id: workaround-detail
id: workarounds-detail
attributes:
label: If the above answer is "Yes...", outline the workaround.
label: Workaround details
description: If you are aware of a workaround, please describe it below.
placeholder: |
Provide details of the specific steps to take that resolve the issue, e.g.:
- Open "Setting X".
- Toggle "Option Y".
- Click "Button Z".
- type: markdown
attributes:
value: |
<br>
## Optional Information
The following section is optional.
- type: dropdown
id: site-type
attributes:
label: Platform (Simple and/or Atomic)
description: (You may select more than one)
options:
- Simple
- Atomic
- Self-hosted
multiple: true
- type: textarea
id: logs
attributes:
label: Logs or notes
placeholder: |
Add any information that may be relevant, such as:
- Browser/Platform
- Theme
- Logs/Errors
e.g. There is an alternative way to access this setting in the sidebar, but it's not readily apparent.

View file

@ -1,23 +1,111 @@
name: Preview Theme Changes
on:
pull_request_target:
pull_request:
types: [opened, synchronize]
permissions:
pull-requests: write
jobs:
preview-theme-changes:
check-for-changes-to-themes:
runs-on: ubuntu-latest
outputs:
HAS_THEME_CHANGES: ${{ steps.check-for-changes.outputs.HAS_THEME_CHANGES }}
CHANGED_THEMES: ${{ steps.check-for-changes.outputs.CHANGED_THEMES }}
steps:
- name: Checkout
uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.sha }}
- name: Preview Theme Changes
uses: vcanales/action-wp-playground-pr-preview@trunk
with:
- name: Retrieved Theme Changes
id: check-for-changes
run: |
# Retrieve list of all changed files
git fetch origin
changed_files=$(git diff --name-only HEAD origin/trunk)
# Loop through changed files and identify parent directories
declare -A unique_dirs
for file in $changed_files; do
dir_name=$(dirname "$file")
while [[ "$dir_name" != "." ]]; do
if [[ -f "$dir_name/style.css" ]]; then
# Get theme name from style.css
theme_name=$(grep -m 1 "Theme Name:" "$dir_name/style.css" | sed 's/Theme Name: //')
parent_theme=$(grep -m 1 "Template:" "$dir_name/style.css" | sed 's/Template: //')
# Append parent theme to the theme name if it exists
[ -n "$parent_theme" ] && theme_name="${theme_name}_childof_${parent_theme}"
# Store theme name and directory in associative array
unique_dirs["$theme_name"]=$dir_name
break
fi
dir_name=$(dirname "$dir_name")
done
done
# Check if themes have changed
if [[ ${#unique_dirs[@]} -eq 0 ]]; then
echo "No theme changes detected"
echo "HAS_THEME_CHANGES=false" >> $GITHUB_OUTPUT
exit 0
fi
# Output list of theme slugs with changes
echo "HAS_THEME_CHANGES=true" >> $GITHUB_OUTPUT
# Serialize associative array of theme dirs to a string
declare -A CHANGED_THEMES
for theme in "${!unique_dirs[@]}"; do
# Append each entry as key:value,
CHANGED_THEMES+="$theme:${unique_dirs[$theme]},"
done
# Remove the last comma for correct JSON formatting
CHANGED_THEMES=${CHANGED_THEMES%,}
echo "CHANGED_THEMES=$CHANGED_THEMES" >> $GITHUB_OUTPUT
echo "Theme directories with changes: $CHANGED_THEMES"
handle-pr-comment:
runs-on: ubuntu-latest
needs: check-for-changes-to-themes
steps:
- name: Checkout create-preview-links script from trunk
uses: actions/checkout@v3
with:
repository: Automattic/themes
sparse-checkout: .github/scripts/create-preview-links
ref: trunk
- name: Add Preview Links comment
id: comment-on-pr
if: ${{ needs.check-for-changes-to-themes.outputs.HAS_THEME_CHANGES == 'true' }}
uses: actions/github-script@v7
env:
CHANGED_THEMES: ${{ needs.check-for-changes-to-themes.outputs.CHANGED_THEMES }}
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ github.event.pull_request.head.sha }}
base-branch: trunk
script: |
const createPreviewLinks = require('.github/scripts/create-preview-links');
createPreviewLinks(github, context, process.env.CHANGED_THEMES);
- name: Remove comment if no changes are detected
if: ${{ needs.check-for-changes-to-themes.outputs.HAS_THEME_CHANGES == 'false' }}
uses: actions/github-script@v7
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
const { data: comments } = await github.rest.issues.listComments({
issue_number: context.payload.pull_request.number,
owner: context.repo.owner,
repo: context.repo.repo
});
const existingComment = comments.find(comment => comment.user.login === 'github-actions[bot]' && comment.body.startsWith('### Preview changes'));
if (existingComment) {
await github.rest.issues.deleteComment({
comment_id: existingComment.id,
owner: context.repo.owner,
repo: context.repo.repo
});
}

1
.gitignore vendored
View file

@ -5,7 +5,6 @@ theme-dev-utils/
theme-dev-utils
vendor/
*.DS_Store
.DS_Store
*.zip
*.rej
**/*.map

Binary file not shown.

Before

Width:  |  Height:  |  Size: 415 KiB

View file

@ -1,85 +0,0 @@
<?php
/**
* Adonay functions and definitions
*
* @link https://developer.wordpress.org/themes/basics/theme-functions/
*
* @package Adonay
* @since Adonay 1.0
*/
if ( ! function_exists( 'adonay_support' ) ) :
/**
* Sets up theme defaults and registers support for various WordPress features.
*
* @since Adonay 1.0
*
* @return void
*/
function adonay_support() {
// Enqueue editor styles.
add_editor_style( 'style.css' );
// Make theme available for translation.
load_theme_textdomain( 'adonay' );
}
endif;
add_action( 'after_setup_theme', 'adonay_support' );
if ( ! function_exists( 'adonay_styles' ) ) :
/**
* Enqueue styles.
*
* @since Adonay 1.0
*
* @return void
*/
function adonay_styles() {
// Register theme stylesheet.
wp_register_style(
'adonay-style',
get_stylesheet_directory_uri() . '/style.css',
array(),
wp_get_theme()->get( 'Version' )
);
// Enqueue theme stylesheet.
wp_enqueue_style( 'adonay-style' );
}
endif;
add_action( 'wp_enqueue_scripts', 'adonay_styles' );
/**
* Register pattern categories.
*/
if ( ! function_exists( 'adonay_pattern_categories' ) ) :
/**
* Register pattern categories
*
* @since Adonay 1.0
* @return void
*/
function adonay_pattern_categories() {
register_block_pattern_category(
'page',
array(
'label' => _x( 'Pages', 'Block pattern category', 'adonay' ),
'description' => __( 'A collection of full page layouts.', 'adonay' ),
)
);
}
endif;
add_action( 'init', 'adonay_pattern_categories' );

View file

@ -1,11 +0,0 @@
<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} -->
<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)"><!-- wp:paragraph {"align":"left","style":{"typography":{"fontSize":"14px"}}} -->
<p class="has-text-align-left" style="font-size:14px">Designed with <a href="https://wordpress.org" rel="nofollow">WordPress</a></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->

View file

@ -1,11 +0,0 @@
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"bottom":"var:preset|spacing|60","top":"var:preset|spacing|60","right":"var:preset|spacing|50","left":"var:preset|spacing|50"}}},"layout":{"type":"flex","justifyContent":"space-between"}} -->
<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--60);padding-right:var(--wp--preset--spacing--50);padding-bottom:var(--wp--preset--spacing--60);padding-left:var(--wp--preset--spacing--50)"><!-- wp:site-title {"fontSize":"large"} /-->
<!-- wp:navigation {"ref":4,"overlayBackgroundColor":"base","overlayTextColor":"contrast","layout":{"type":"flex","setCascadingProperties":true,"justifyContent":"right","orientation":"horizontal"},"style":{"spacing":{"margin":{"top":"0"}}}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->

View file

@ -1,7 +0,0 @@
<!-- wp:group {"layout":{"type":"default"}} -->
<div class="wp-block-group"><!-- wp:group {"layout":{"type":"flex","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:post-date {"isLink":true,"fontSize":"small"} /-->
<!-- wp:post-terms {"term":"category","fontSize":"small"} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->

View file

@ -1,16 +0,0 @@
<?php
/**
* Title: A 404 page
* Slug: adonay/404
* Inserter: no
*/
?>
<!-- wp:heading {"textAlign":"center","level":1,"fontSize":"x-large"} -->
<h1 class="has-text-align-center has-x-large-font-size" id="oops-that-page-can-t-be-found"><?php echo esc_html__( 'Oops! That page can&rsquo;t be found.', 'adonay' ); ?></h1>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p><?php echo esc_html__( 'It looks like nothing was found at this location. Maybe try a search?', 'adonay' ); ?></p>
<!-- /wp:paragraph -->

View file

@ -1,52 +0,0 @@
<?php
/**
* Title: Comments
* slug: adonay/comments
* inserter: no
*/
?>
<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
<div class="wp-block-comments wp-block-comments-query-loop">
<!-- wp:comments-title {"level":3} /-->
<!-- wp:comment-template -->
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)">
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"},"style":{"spacing":{"blockGap":"0.5em"}}} -->
<div class="wp-block-group">
<!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}}}} /-->
<!-- wp:group -->
<div class="wp-block-group">
<!-- wp:comment-author-name /-->
<!-- wp:group {"layout":{"type":"flex"},"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}}} -->
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px">
<!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a"} /-->
<!-- wp:comment-edit-link /-->
</div>
<!-- /wp:group -->
</div>
<!-- /wp:group -->
</div>
<!-- /wp:group -->
<!-- wp:comment-content /-->
<!-- wp:comment-reply-link /-->
</div>
<!-- /wp:group -->
<!-- /wp:comment-template -->
<!-- wp:comments-pagination -->
<!-- wp:comments-pagination-previous /-->
<!-- wp:comments-pagination-numbers /-->
<!-- wp:comments-pagination-next /-->
<!-- /wp:comments-pagination -->
<!-- wp:post-comments-form /-->
</div>
<!-- /wp:comments -->

View file

@ -1,33 +0,0 @@
<?php
/**
* Title: Default footer
* Slug: adonay/footer
* Categories: footer
* Block Types: core/template-part/footer
*/
?>
<!-- wp:spacer {"height":"var(--wp--preset--spacing--80)"} -->
<div style="height:var(--wp--preset--spacing--80)" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group">
<!-- wp:group {"style":{"spacing":{"padding":{"top":"var(--wp--preset--spacing--60)","bottom":"var(--wp--preset--spacing--60)"}}}} -->
<div class="wp-block-group" style="padding-top:var(--wp--preset--spacing--60);padding-bottom:var(--wp--preset--spacing--60)">
<!-- wp:paragraph {"align":"center"} -->
<p class="has-text-align-center">
<?php
/* Translators: WordPress link. */
$wordpress_link = '<a href="' . esc_url( __( 'https://wordpress.org', 'adonay' ) ) . '" rel="nofollow">WordPress</a>';
echo sprintf(
esc_html__( 'Designed with %1$s', 'adonay' ),
$wordpress_link
);
?>
</p>
<!-- /wp:paragraph -->
</div>
<!-- /wp:group -->
</div>
<!-- /wp:group -->

View file

@ -1,10 +0,0 @@
<?php
/**
* Title: Hidden No Results Content
* Slug: adonay/hidden-no-results-content
* Inserter: no
*/
?>
<!-- wp:paragraph -->
<p><?php echo esc_html_x( 'Sorry, but nothing matched your search terms. Please try again with some different keywords.', 'Message explaining that there are no results returned from a search', 'adonay' ); ?></p>
<!-- /wp:paragraph -->

View file

@ -1,51 +0,0 @@
<?php
/**
* Title: home
* Slug: adonay/home
* Categories: hidden
* Inserter: no
*/
?>
<!-- wp:columns {"lock":{"move":false,"remove":true},"style":{"spacing":{"blockGap":{"left":"0"}}}} -->
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}}} -->
<div class="wp-block-column" 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:group {"style":{"dimensions":{"minHeight":"100%"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"left","verticalAlignment":"space-between"}} -->
<div class="wp-block-group" style="min-height:100%"><!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"100px","selfStretch":"fixed"}}} -->
<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:site-title /-->
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.3"},"spacing":{"margin":{"right":"var:preset|spacing|80"}}}} -->
<p style="margin-right:var(--wp--preset--spacing--80);line-height:1.3">Im a photographer and art director based in Manchester, United Kingdom. When Im not shooting weddings and portraits, you can find me posting on Instagram. Currently available for hire.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
<div class="wp-block-group"><!-- wp:paragraph -->
<p><a href="#">Get in Touch</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><a href="#">Instagram</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><a href="#">X</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><a href="#">Youtube</a></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column -->
<div class="wp-block-column"><!-- wp:cover {"url":"<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/adonay_image-1-scaled.jpg","id":149,"dimRatio":0,"overlayColor":"base","isUserOverlayColor":true,"minHeight":100,"minHeightUnit":"vh","contentPosition":"bottom right","style":{"layout":{"selfStretch":"fit","flexSize":null},"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"color":[]},"layout":{"type":"constrained"}} -->
<div class="wp-block-cover has-custom-content-position is-position-bottom-right" 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);min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-base-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background wp-image-149" alt="" src="<?php echo esc_url( get_stylesheet_directory_uri() ); ?>/assets/images/adonay_image-1-scaled.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"align":"right","placeholder":"Write title…","style":{"typography":{"fontSize":"14px"}}} -->
<p class="has-text-align-right" style="font-size:14px">Designed with WordPress</p>
<!-- /wp:paragraph --></div></div>
<!-- /wp:cover --></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->

View file

@ -1,41 +0,0 @@
<?php
/**
* Title: Homepage with a small, rounded image
* Slug: adonay/homepage-with-a-small-rounded-image
* Categories: page
* Inserter: yes
*/
?>
<!-- wp:group {"style":{"dimensions":{"minHeight":"100%"},"spacing":{"padding":{"left":"5.1vw","right":"5.1vw","top":"5.1vh","bottom":"5.1vh"}}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"left","verticalAlignment":"center"}} -->
<div class="wp-block-group" style="min-height:100%;padding-top:5.1vh;padding-right:5.1vw;padding-bottom:5.1vh;padding-left:5.1vw"><!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"100px","selfStretch":"fixed"}}} -->
<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:image {"id":149,"width":"200px","aspectRatio":"1","scale":"cover","sizeSlug":"full","linkDestination":"none","style":{"layout":{"flexSize":"13px","selfStretch":"fixed"}},"className":"is-style-rounded"} -->
<figure class="wp-block-image size-full is-resized is-style-rounded"><img src="https://linkinbioone.mystagingwebsite.com/wp-content/uploads/2023/11/adonay_image-1-scaled.jpg" alt="" class="wp-image-149" style="aspect-ratio:1;object-fit:cover;width:200px"/></figure>
<!-- /wp:image -->
<!-- wp:spacer {"height":"13px","style":{"layout":{"flexSize":"20px","selfStretch":"fixed"}}} -->
<div style="height:13px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:site-title /-->
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.2","fontSize":"38px"}}} -->
<p style="font-size:38px;line-height:1.2">Im a photographer and art director based in Manchester, United Kingdom. When Im not shooting weddings and portraits, you can find me posting on <a href="#">Instagram</a>. Currently available for hire.</p>
<!-- /wp:paragraph -->
<!-- wp:social-links {"iconColor":"contrast","iconColorValue":"#ffffff","size":"has-large-icon-size","className":"is-style-logos-only"} -->
<ul class="wp-block-social-links has-large-icon-size has-icon-color is-style-logos-only"><!-- wp:social-link {"url":"#","service":"instagram"} /-->
<!-- wp:social-link {"url":"#","service":"x"} /-->
<!-- wp:social-link {"url":"#","service":"youtube"} /--></ul>
<!-- /wp:social-links --></div>
<!-- /wp:group -->
<!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"100px","selfStretch":"fixed"}}} -->
<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer --></div>
<!-- /wp:group -->

View file

@ -1,51 +0,0 @@
<?php
/**
* Title: Homepage with a full height image
* Slug: adonay/homepage-with-a-full-height-image
* Categories: page
* Inserter: yes
*/
?>
<!-- wp:columns {"lock":{"move":false,"remove":true},"style":{"spacing":{"blockGap":{"left":"0"}}}} -->
<div class="wp-block-columns"><!-- wp:column {"style":{"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}}}} -->
<div class="wp-block-column" 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:group {"style":{"dimensions":{"minHeight":"100%"}},"layout":{"type":"flex","orientation":"vertical","justifyContent":"left","verticalAlignment":"space-between"}} -->
<div class="wp-block-group" style="min-height:100%"><!-- wp:spacer {"height":"0px","style":{"layout":{"flexSize":"100px","selfStretch":"fixed"}}} -->
<div style="height:0px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical"}} -->
<div class="wp-block-group"><!-- wp:site-title /-->
<!-- wp:paragraph {"style":{"typography":{"lineHeight":"1.3"},"spacing":{"margin":{"right":"var:preset|spacing|80"}}}} -->
<p style="margin-right:var(--wp--preset--spacing--80);line-height:1.3">Im a photographer and art director based in Manchester, United Kingdom. When Im not shooting weddings and portraits, you can find me posting on Instagram. Currently available for hire.</p>
<!-- /wp:paragraph --></div>
<!-- /wp:group -->
<!-- wp:group {"layout":{"type":"flex","flexWrap":"nowrap"}} -->
<div class="wp-block-group"><!-- wp:paragraph -->
<p><a href="#">Get in Touch</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><a href="#">Instagram</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><a href="#">X</a></p>
<!-- /wp:paragraph -->
<!-- wp:paragraph -->
<p><a href="#">Youtube</a></p>
<!-- /wp:paragraph --></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div>
<!-- /wp:column -->
<!-- wp:column -->
<div class="wp-block-column"><!-- wp:cover {"url":"https://linkinbioone.mystagingwebsite.com/wp-content/uploads/2023/11/adonay_image-1-scaled.jpg","id":149,"dimRatio":0,"overlayColor":"base","isUserOverlayColor":true,"minHeight":100,"minHeightUnit":"vh","contentPosition":"bottom right","style":{"layout":{"selfStretch":"fit","flexSize":null},"spacing":{"padding":{"right":"var:preset|spacing|50","left":"var:preset|spacing|50","top":"var:preset|spacing|50","bottom":"var:preset|spacing|50"}},"color":{}},"layout":{"type":"constrained"}} -->
<div class="wp-block-cover has-custom-content-position is-position-bottom-right" 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);min-height:100vh"><span aria-hidden="true" class="wp-block-cover__background has-base-background-color has-background-dim-0 has-background-dim"></span><img class="wp-block-cover__image-background wp-image-149" alt="" src="https://linkinbioone.mystagingwebsite.com/wp-content/uploads/2023/11/adonay_image-1-scaled.jpg" data-object-fit="cover"/><div class="wp-block-cover__inner-container"><!-- wp:paragraph {"align":"right","placeholder":"Write title…","style":{"typography":{"fontSize":"14px"}}} -->
<p class="has-text-align-right" style="font-size:14px">Designed with WordPress</p>
<!-- /wp:paragraph --></div></div>
<!-- /wp:cover --></div>
<!-- /wp:column --></div>
<!-- /wp:columns -->

View file

@ -1,62 +0,0 @@
=== Adonay ===
Contributors: Automattic
Requires at least: 6.0
Tested up to: 6.4.1
Requires PHP: 5.7
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
== Description ==
Adonay is crafted for single page websites that want to leave a stunning and memorable first impression. It also provides post and page templates for those looking to customize and broaden their website's functionality. Adonay comes with 3 distinctive style variations and 12 vibrant color options.
== Changelog ==
= 1.0.0 =
* Initial release
== Copyright ==
Adonay is based on Block Canvas (https://github.com/Automattic/themes/tree/trunk/block-canvas), (C) Automattic, [GPLv2 or later](http://www.gnu.org/licenses/gpl-2.0.html) Block Canvas WordPress Theme, (C) 2022 Automattic Block Canvas 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.
BioRhyme Expanded Font
Copyright 2016 Aoife Mooney (aoifemooney@gmail.com www.aoifemooney.org)
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.aoifemooney.org
-- End of BioRhyme Expanded Font credits --
Instrument Serif Font
Copyright 2022 The Instrument Serif Project Authors (https://github.com/Instrument/instrument-serif)
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
License URL: https://scripts.sil.org/OFL
Source: www.fragtypefoundry.xyz
-- End of Instrument Serif Font credits --
Public Sans Font
Copyright 2015 The Public Sans Project Authors (https://github.com/uswds/public-sans)
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL. The license for USWDSs Modified Version,...
License URL: SIL Open Font License, Version 1.1: https://scripts.sil.org/cms/scripts/page.php?site_id=nrsi&id=OFL_web; USWDS Modified Version: https://github.com/uswds/public-sans/blob/master/LICENSE.md
-- End of Public Sans Font credits --
adonay_image-1-scaled.jpg
CC0 License
https://nappy.co/photo/435
Zilla Slab Font
Copyright 2017, The Mozilla Foundation
Source: http://www.typotheque.com
-- End of Zilla Slab Font credits --
Libre Caslon Condensed Font
Copyright 2020 The Libre Caslon Text Project Authors (https://github.com/thundernixon/Libre-Caslon)
This Font Software is licensed under the SIL Open Font License, Version 1.1. This license is available with a FAQ at: https://scripts.sil.org/OFL
License URL: https://scripts.sil.org/OFL
Source: https://fonts.google.com/
-- End of Libre Caslon Condensed Font credits --

Binary file not shown.

Before

Width:  |  Height:  |  Size: 334 KiB

View file

@ -1,35 +0,0 @@
/*
Theme Name: Adonay
Theme URI:
Author: Automattic
Author URI: https://automattic.com
Description: Adonay is crafted for single page websites that want to leave a stunning and memorable first impression. Nonetheless, the theme provides post and page templates for those looking to customize and broaden their website's functionality. Adonay comes with 3 distinctive style variations and an array of 12 vibrant color options.
Requires at least: 6.0
Tested up to: 6.4.1
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: adonay
Tags: one-column, two-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--base);
border-color: var(--wp--preset--color--secondary);
}
/*
* Link styles
* https://github.com/WordPress/gutenberg/issues/42319
*/
a {
text-decoration-thickness: .0625em !important;
text-underline-offset: .15em;
}

View file

@ -1,36 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#000000",
"name": "Base",
"slug": "base"
},
{
"color": "#ffffff",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#ffffff",
"name": "Primary",
"slug": "primary"
},
{
"color": "#d7d7d7",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#262626",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"title": "Black",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,67 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#feffcc",
"name": "Base",
"slug": "base"
},
{
"color": "#3f4b50",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#3f4b50",
"name": "Primary",
"slug": "primary"
},
{
"color": "#3f4b50",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#ffffe2",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"radius": "0px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--instrument-serif)",
"fontSize": "8rem",
"lineHeight": "1.2"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontStyle": "normal",
"fontWeight": "400"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontSize": "1.6rem",
"fontStyle": "normal",
"fontWeight": "400"
}
},
"title": "Funky Serif Cream",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,67 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#232732",
"name": "Base",
"slug": "base"
},
{
"color": "#ffffff",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#ffffff",
"name": "Primary",
"slug": "primary"
},
{
"color": "#ffffff",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#313846",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"radius": "0px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--instrument-serif)",
"fontSize": "8rem",
"lineHeight": "1.2"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontStyle": "normal",
"fontWeight": "400"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontSize": "1.6rem",
"fontStyle": "normal",
"fontWeight": "400"
}
},
"title": "Funky Serif Indigo",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,67 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#ecdddd",
"name": "Base",
"slug": "base"
},
{
"color": "#853322",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#853322",
"name": "Primary",
"slug": "primary"
},
{
"color": "#853322",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#f4efef",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"radius": "0px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--instrument-serif)",
"fontSize": "8rem",
"lineHeight": "1.2"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontStyle": "normal",
"fontWeight": "400"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontSize": "1.6rem",
"fontStyle": "normal",
"fontWeight": "400"
}
},
"title": "Funky Serif Pink",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,82 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#f3f3f3",
"name": "Base",
"slug": "base"
},
{
"color": "#ab18d0",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#ab18d0",
"name": "Primary",
"slug": "primary"
},
{
"color": "#ab18d0",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#ebebeb",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"radius": "0px"
}
},
"core/cover": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-2)"
}
},
"core/image": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-2)"
}
},
"core/post-featured-image": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-2)"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--instrument-serif)",
"fontSize": "8rem",
"lineHeight": "1.2"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontStyle": "normal",
"fontWeight": "400"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--libre-caslon-condensed)",
"fontSize": "1.6rem",
"fontStyle": "normal",
"fontWeight": "400"
}
},
"title": "Funky Serif Purple",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,95 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#542723",
"name": "Base",
"slug": "base"
},
{
"color": "#ffdef7",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#ffdef7",
"name": "Primary",
"slug": "primary"
},
{
"color": "#ffdef7",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#6d3731",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"bottom": {
"style": "none",
"width": "0px"
},
"color": null,
"left": {
"style": "none",
"width": "0px"
},
"radius": "100px",
"right": {
"style": "none",
"width": "0px"
},
"style": null,
"top": {
"style": "none",
"width": "0px"
},
"width": null
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontSize": "var(--wp--preset--font-size--medium)"
}
},
"core/search": {
"border": {
"radius": "100px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme-expanded)",
"fontSize": "3.6rem"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontStyle": "normal",
"fontWeight": "700"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--zilla-slab)",
"fontSize": "1.5rem",
"fontStyle": "normal",
"fontWeight": "300",
"lineHeight": "1.3"
}
},
"title": "Funky Slab Brown",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,95 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#f5c1ad",
"name": "Base",
"slug": "base"
},
{
"color": "#24101f",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#24101f",
"name": "Primary",
"slug": "primary"
},
{
"color": "#24101f",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#eab39d",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"bottom": {
"style": "none",
"width": "0px"
},
"color": null,
"left": {
"style": "none",
"width": "0px"
},
"radius": "100px",
"right": {
"style": "none",
"width": "0px"
},
"style": null,
"top": {
"style": "none",
"width": "0px"
},
"width": null
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontSize": "var(--wp--preset--font-size--medium)"
}
},
"core/search": {
"border": {
"radius": "100px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme-expanded)",
"fontSize": "3.6rem"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontStyle": "normal",
"fontWeight": "700"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--zilla-slab)",
"fontSize": "1.5rem",
"fontStyle": "normal",
"fontWeight": "300",
"lineHeight": "1.3"
}
},
"title": "Funky Slab Desert",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,110 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#feeee8",
"name": "Base",
"slug": "base"
},
{
"color": "#11620a",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#11620a",
"name": "Primary",
"slug": "primary"
},
{
"color": "#11620a",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#f8e0d8",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"bottom": {
"style": "none",
"width": "0px"
},
"color": null,
"left": {
"style": "none",
"width": "0px"
},
"radius": "100px",
"right": {
"style": "none",
"width": "0px"
},
"style": null,
"top": {
"style": "none",
"width": "0px"
},
"width": null
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontSize": "var(--wp--preset--font-size--medium)"
}
},
"core/cover": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/image": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/post-featured-image": {
"filter": {
"duotone": "var(--wp--preset--duotone--duotone-1)"
}
},
"core/search": {
"border": {
"radius": "100px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme-expanded)",
"fontSize": "3.6rem"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontStyle": "normal",
"fontWeight": "700"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--zilla-slab)",
"fontSize": "1.5rem",
"fontStyle": "normal",
"fontWeight": "300",
"lineHeight": "1.3"
}
},
"title": "Funky Slab Linen",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,95 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#5b5b39",
"name": "Base",
"slug": "base"
},
{
"color": "#fffb83",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#fffb83",
"name": "Primary",
"slug": "primary"
},
{
"color": "#fffb83",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#535332",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"styles": {
"blocks": {
"core/button": {
"border": {
"bottom": {
"style": "none",
"width": "0px"
},
"color": null,
"left": {
"style": "none",
"width": "0px"
},
"radius": "100px",
"right": {
"style": "none",
"width": "0px"
},
"style": null,
"top": {
"style": "none",
"width": "0px"
},
"width": null
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontSize": "var(--wp--preset--font-size--medium)"
}
},
"core/search": {
"border": {
"radius": "100px"
}
},
"core/site-title": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme-expanded)",
"fontSize": "3.6rem"
}
}
},
"elements": {
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--biorhyme)",
"fontStyle": "normal",
"fontWeight": "700"
}
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--zilla-slab)",
"fontSize": "1.5rem",
"fontStyle": "normal",
"fontWeight": "300",
"lineHeight": "1.3"
}
},
"title": "Funky Slab Olive",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,36 +0,0 @@
{
"settings": {
"color": {
"palette": [
{
"color": "#fefefe",
"name": "Base",
"slug": "base"
},
{
"color": "#1a1a1a",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#1a1a1a",
"name": "Primary",
"slug": "primary"
},
{
"color": "#555555",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#eeeeee",
"name": "Tertiary",
"slug": "tertiary"
}
]
}
},
"title": "White",
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

View file

@ -1,17 +0,0 @@
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
<!-- wp:group {"tagName":"main","style":{"spacing":{"blockGap":"var:preset|spacing|50","margin":{"top":"var:preset|spacing|80","bottom":"var:preset|spacing|60"}}},"layout":{"type":"constrained"}} -->
<main class="wp-block-group" style="margin-top:var(--wp--preset--spacing--80);margin-bottom:var(--wp--preset--spacing--60)"><!-- wp:group {"align":"wide","layout":{"type":"default"}} -->
<div class="wp-block-group alignwide"><!-- wp:heading {"textAlign":"left","level":1,"fontSize":"large"} -->
<h1 class="wp-block-heading has-text-align-left has-large-font-size" id="oops-that-page-can-t-be-found">Oops! That page cant be found.</h1>
<!-- /wp:heading -->
<!-- wp:paragraph -->
<p>It looks like nothing was found at this location. Maybe try a search?</p>
<!-- /wp:paragraph -->
<!-- wp:search {"label":""} /--></div>
<!-- /wp:group --></main>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

View file

@ -1,33 +0,0 @@
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
<!-- wp:query {"queryId":1,"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:query-title {"type":"archive","textAlign":"left","align":"wide","style":{"spacing":{"margin":{"bottom":"100px"}}},"fontSize":"large"} /-->
<!-- wp:post-template {"align":"wide"} -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}}} -->
<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"auto"} /-->
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:template-part {"slug":"post-meta"} /-->
<!-- wp:post-title {"textAlign":"left","isLink":true} /--></div>
<!-- /wp:group -->
<!-- wp:post-excerpt /-->
<!-- 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","layout":{"type":"constrained"}} -->
<div class="wp-block-group alignwide"><!-- wp:query-pagination {"paginationArrow":"chevron","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 -->
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

View file

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

View file

@ -1,31 +0,0 @@
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
<!-- wp:query {"queryId":1,"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:post-template {"align":"wide"} -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}}} -->
<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"auto"} /-->
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:template-part {"slug":"post-meta"} /-->
<!-- wp:post-title {"textAlign":"left","isLink":true} /--></div>
<!-- /wp:group -->
<!-- wp:post-excerpt /-->
<!-- 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","layout":{"type":"constrained"}} -->
<div class="wp-block-group alignwide"><!-- wp:query-pagination {"paginationArrow":"chevron","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 -->
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

View file

@ -1,19 +0,0 @@
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"layout":{"type":"constrained"}} -->
<main class="wp-block-group"><!-- wp:post-featured-image {"aspectRatio":"3/2","align":"wide"} /-->
<!-- wp:spacer {"height":"30px"} -->
<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:post-title {"textAlign":"left","align":"wide","fontSize":"x-large"} /--></main>
<!-- /wp:group -->
<!-- wp:group {"lock":{"move":false,"remove":true},"align":"full","layout":{"type":"default"}} -->
<div class="wp-block-group alignfull"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"default"}} -->
<div class="wp-block-group alignfull" style="padding-right:0;padding-left:0"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"full","layout":{"type":"constrained"}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

View file

@ -1,41 +0,0 @@
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group"><!-- wp:query-title {"type":"search","fontSize":"large"} /-->
<!-- wp:search {"showLabel":false} /-->
<!-- wp:spacer {"height":"40px"} -->
<div style="height:40px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer --></div>
<!-- /wp:group -->
<!-- wp:query {"queryId":1,"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:post-template {"align":"wide"} -->
<!-- wp:group {"style":{"spacing":{"blockGap":"var:preset|spacing|60"}}} -->
<div class="wp-block-group"><!-- wp:post-featured-image {"isLink":true,"aspectRatio":"auto"} /-->
<!-- wp:group {"layout":{"type":"flex","orientation":"vertical","justifyContent":"left"}} -->
<div class="wp-block-group"><!-- wp:template-part {"slug":"post-meta"} /-->
<!-- wp:post-title {"textAlign":"left","isLink":true} /--></div>
<!-- /wp:group -->
<!-- wp:post-excerpt /-->
<!-- 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","layout":{"type":"constrained"}} -->
<div class="wp-block-group alignwide"><!-- wp:query-pagination {"paginationArrow":"chevron","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 -->
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

View file

@ -1,61 +0,0 @@
<!-- wp:template-part {"slug":"header","tagName":"header"} /-->
<!-- wp:group {"tagName":"main","lock":{"move":false,"remove":false},"layout":{"type":"constrained"}} -->
<main class="wp-block-group"><!-- wp:template-part {"slug":"post-meta","align":"wide"} /-->
<!-- wp:post-title {"textAlign":"left","align":"wide","fontSize":"x-large"} /-->
<!-- wp:spacer {"height":"30px"} -->
<div style="height:30px" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:post-featured-image {"aspectRatio":"auto","align":"wide"} /--></main>
<!-- /wp:group -->
<!-- wp:group {"align":"full","style":{"spacing":{"padding":{"top":"var:preset|spacing|70","bottom":"var:preset|spacing|70"}}},"layout":{"type":"default"}} -->
<div class="wp-block-group alignfull" style="padding-top:var(--wp--preset--spacing--70);padding-bottom:var(--wp--preset--spacing--70)"><!-- wp:group {"align":"full","style":{"spacing":{"padding":{"right":"0","left":"0"}}},"layout":{"type":"default"}} -->
<div class="wp-block-group alignfull" style="padding-right:0;padding-left:0"><!-- wp:post-content {"lock":{"move":false,"remove":false},"align":"full","layout":{"type":"constrained"}} /--></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:group {"layout":{"type":"constrained"}} -->
<div class="wp-block-group"><!-- wp:spacer {"height":"4rem"} -->
<div style="height:4rem" aria-hidden="true" class="wp-block-spacer"></div>
<!-- /wp:spacer -->
<!-- wp:comments {"className":"wp-block-comments-query-loop"} -->
<div class="wp-block-comments wp-block-comments-query-loop"><!-- wp:comments-title {"level":3} /-->
<!-- wp:comment-template -->
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0","bottom":"var:preset|spacing|50"}}}} -->
<div class="wp-block-group" style="margin-top:0;margin-bottom:var(--wp--preset--spacing--50)"><!-- wp:group {"style":{"spacing":{"blockGap":"0.5em"}},"layout":{"type":"flex","flexWrap":"nowrap"}} -->
<div class="wp-block-group"><!-- wp:avatar {"size":40,"style":{"spacing":{"margin":{"top":"0.5em"}}}} /-->
<!-- wp:group -->
<div class="wp-block-group"><!-- wp:comment-author-name /-->
<!-- wp:group {"style":{"spacing":{"margin":{"top":"0px","bottom":"0px"},"blockGap":"0.5em"}},"layout":{"type":"flex"}} -->
<div class="wp-block-group" style="margin-top:0px;margin-bottom:0px"><!-- wp:comment-date {"format":"F j, Y \\a\\t g:i a"} /-->
<!-- wp:comment-edit-link /--></div>
<!-- /wp:group --></div>
<!-- /wp:group --></div>
<!-- /wp:group -->
<!-- wp:comment-content /-->
<!-- wp:comment-reply-link /--></div>
<!-- /wp:group -->
<!-- /wp:comment-template -->
<!-- wp:comments-pagination {"paginationArrow":"chevron","layout":{"type":"flex","justifyContent":"space-between"}} -->
<!-- wp:comments-pagination-previous /-->
<!-- wp:comments-pagination-next /-->
<!-- /wp:comments-pagination -->
<!-- wp:post-comments-form /--></div>
<!-- /wp:comments --></div>
<!-- /wp:group -->
<!-- wp:template-part {"slug":"footer","tagName":"footer"} /-->

View file

@ -1,733 +0,0 @@
{
"settings": {
"appearanceTools": true,
"color": {
"duotone": [
{
"colors": [
"#4F9249",
"#FEEEE8"
],
"name": "Green",
"slug": "duotone-1"
},
{
"colors": [
"#BC2BE0",
"#F3F3F3"
],
"name": "Purple",
"slug": "duotone-2"
}
],
"palette": [
{
"color": "#ce0808",
"name": "Base",
"slug": "base"
},
{
"color": "#ffffff",
"name": "Contrast",
"slug": "contrast"
},
{
"color": "#ffffff",
"name": "Primary",
"slug": "primary"
},
{
"color": "#ffffff",
"name": "Secondary",
"slug": "secondary"
},
{
"color": "#b80c0c",
"name": "Tertiary",
"slug": "tertiary"
}
]
},
"layout": {
"contentSize": "800px",
"wideSize": "800px"
},
"spacing": {
"units": [
"%",
"px",
"em",
"rem",
"vh",
"vw"
]
},
"typography": {
"fluid": true,
"fontFamilies": [
{
"fontFamily": "-apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif",
"name": "System Font",
"slug": "system-font"
},
{
"fontFace": [
{
"fontFamily": "BioRhyme Expanded",
"fontStyle": "normal",
"fontWeight": "800",
"src": [
"file:./assets/fonts/biorhyme-expanded_normal_800.ttf"
]
}
],
"fontFamily": "BioRhyme Expanded",
"slug": "biorhyme-expanded"
},
{
"fontFace": [
{
"fontFamily": "Instrument Serif",
"fontStyle": "italic",
"fontWeight": "400",
"src": [
"file:./assets/fonts/instrument-serif_italic_400.ttf"
]
},
{
"fontFamily": "Instrument Serif",
"fontStyle": "normal",
"fontWeight": "400",
"src": [
"file:./assets/fonts/instrument-serif_normal_400.ttf"
]
}
],
"fontFamily": "Instrument Serif",
"slug": "instrument-serif"
},
{
"fontFace": [
{
"fontFamily": "Public Sans",
"fontStyle": "normal",
"fontWeight": "200",
"src": [
"file:./assets/fonts/public-sans_normal_200.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "normal",
"fontWeight": "300",
"src": [
"file:./assets/fonts/public-sans_normal_300.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "normal",
"fontWeight": "400",
"src": [
"file:./assets/fonts/public-sans_normal_400.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "normal",
"fontWeight": "500",
"src": [
"file:./assets/fonts/public-sans_normal_500.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "normal",
"fontWeight": "600",
"src": [
"file:./assets/fonts/public-sans_normal_600.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "normal",
"fontWeight": "700",
"src": [
"file:./assets/fonts/public-sans_normal_700.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "italic",
"fontWeight": "200",
"src": [
"file:./assets/fonts/public-sans_italic_200.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "italic",
"fontWeight": "300",
"src": [
"file:./assets/fonts/public-sans_italic_300.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "italic",
"fontWeight": "400",
"src": [
"file:./assets/fonts/public-sans_italic_400.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "italic",
"fontWeight": "500",
"src": [
"file:./assets/fonts/public-sans_italic_500.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "italic",
"fontWeight": "600",
"src": [
"file:./assets/fonts/public-sans_italic_600.ttf"
]
},
{
"fontFamily": "Public Sans",
"fontStyle": "italic",
"fontWeight": "700",
"src": [
"file:./assets/fonts/public-sans_italic_700.ttf"
]
}
],
"fontFamily": "Public Sans",
"slug": "public-sans"
},
{
"fontFace": [
{
"fontFamily": "BioRhyme",
"fontStyle": "normal",
"fontWeight": "400",
"src": [
"file:./assets/fonts/biorhyme_normal_400.ttf"
]
},
{
"fontFamily": "BioRhyme",
"fontStyle": "normal",
"fontWeight": "700",
"src": [
"file:./assets/fonts/biorhyme_normal_700.ttf"
]
}
],
"fontFamily": "BioRhyme",
"slug": "biorhyme"
},
{
"fontFace": [
{
"fontFamily": "Zilla Slab",
"fontStyle": "normal",
"fontWeight": "300",
"src": [
"file:./assets/fonts/zilla-slab_normal_300.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "italic",
"fontWeight": "300",
"src": [
"file:./assets/fonts/zilla-slab_italic_300.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "normal",
"fontWeight": "400",
"src": [
"file:./assets/fonts/zilla-slab_normal_400.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "italic",
"fontWeight": "400",
"src": [
"file:./assets/fonts/zilla-slab_italic_400.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "normal",
"fontWeight": "500",
"src": [
"file:./assets/fonts/zilla-slab_normal_500.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "italic",
"fontWeight": "500",
"src": [
"file:./assets/fonts/zilla-slab_italic_500.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "normal",
"fontWeight": "600",
"src": [
"file:./assets/fonts/zilla-slab_normal_600.ttf"
]
},
{
"fontFamily": "Zilla Slab",
"fontStyle": "italic",
"fontWeight": "600",
"src": [
"file:./assets/fonts/zilla-slab_italic_600.ttf"
]
}
],
"fontFamily": "Zilla Slab",
"slug": "zilla-slab"
},
{
"fontFace": [
{
"fontFamily": "Libre Caslon Condensed",
"fontStyle": "normal",
"fontWeight": "400",
"src": [
"file:./assets/fonts/libre-caslon-condensed_normal_400.otf"
]
},
{
"fontFamily": "Libre Caslon Condensed",
"fontStyle": "italic",
"fontWeight": "400",
"src": [
"file:./assets/fonts/libre-caslon-condensed_italic_400.otf"
]
},
{
"fontFamily": "Libre Caslon Condensed",
"fontStyle": "normal",
"fontWeight": "700",
"src": [
"file:./assets/fonts/libre-caslon-condensed_normal_700.otf"
]
},
{
"fontFamily": "Libre Caslon Condensed",
"fontStyle": "italic",
"fontWeight": "700",
"src": [
"file:./assets/fonts/libre-caslon-condensed_italic_700.otf"
]
}
],
"fontFamily": "Libre Caslon Condensed",
"slug": "libre-caslon-condensed"
}
],
"fontSizes": [
{
"fluid": {
"max": "1.0625rem",
"min": "0.825rem"
},
"name": "Small",
"size": "1rem",
"slug": "small"
},
{
"fluid": {
"max": "1.25rem",
"min": "1rem"
},
"name": "Medium",
"size": "1.125rem",
"slug": "medium"
},
{
"fluid": {
"max": "2rem",
"min": "1.75rem"
},
"name": "Large",
"size": "1.75rem",
"slug": "large"
},
{
"fluid": {
"max": "3rem",
"min": "2.5rem"
},
"name": "Extra Large",
"size": "3rem",
"slug": "x-large"
}
]
},
"useRootPaddingAwareAlignments": true
},
"styles": {
"blocks": {
"core/code": {
"border": {
"bottom": {
"style": "none",
"width": "0px"
},
"color": "var(--wp--preset--color--contrast)",
"left": {
"style": "none",
"width": "0px"
},
"radius": "0.25rem",
"right": {
"style": "none",
"width": "0px"
},
"style": "solid",
"top": {
"style": "none",
"width": "0px"
},
"width": "2px"
},
"color": {
"background": "var(--wp--preset--color--tertiary)"
},
"spacing": {
"padding": {
"bottom": "var(--wp--preset--spacing--50)",
"left": "var(--wp--preset--spacing--50)",
"right": "var(--wp--preset--spacing--50)",
"top": "var(--wp--preset--spacing--50)"
}
},
"typography": {
"fontFamily": "monospace"
}
},
"core/comment-author-name": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comment-date": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comment-edit-link": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/comment-reply-link": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/gallery": {
"spacing": {
"margin": {
"bottom": "var(--wp--preset--spacing--50)"
}
}
},
"core/list": {
"spacing": {
"padding": {
"left": "var(--wp--preset--spacing--70)"
}
}
},
"core/navigation": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
}
},
"core/post-author-name": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
}
},
"core/post-date": {
"color": {
"text": "var(--wp--preset--color--contrast)"
},
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
},
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/post-terms": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
}
},
"core/post-title": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
},
"spacing": {
"margin": {
"bottom": "0"
}
}
},
"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--large)",
"fontStyle": "normal",
"fontWeight": "400",
"lineHeight": "1.4",
"textTransform": "none"
}
},
"core/quote": {
"border": {
"color": "var(--wp--preset--color--primary)",
"style": "solid",
"width": "0 0 0 1px"
},
"spacing": {
"padding": {
"left": "var(--wp--preset--spacing--50)"
}
},
"typography": {
"fontStyle": "normal"
}
},
"core/search": {
"typography": {
"fontSize": "var(--wp--preset--font-size--medium)",
"lineHeight": "1.6"
}
},
"core/separator": {
"border": {
"color": "currentColor",
"style": "solid",
"width": "0 0 1px 0"
},
"color": {
"text": "var(--wp--preset--color--contrast)"
}
},
"core/site-tagline": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"core/site-title": {
"elements": {
"link": {
":hover": {
"typography": {
"textDecoration": "underline"
}
},
"typography": {
"textDecoration": "none"
}
}
},
"typography": {
"fontSize": "2.9rem",
"fontStyle": "normal",
"fontWeight": "600"
}
}
},
"color": {
"background": "var(--wp--preset--color--base)",
"text": "var(--wp--preset--color--contrast)"
},
"css": "a:any-link {\ncursor: auto;\n text-decoration-thickness: .02em !important;\n text-underline-offset: .20em;\n}\na:where(:not(.wp-element-button)):hover {\n text-decoration: none;\n}",
"elements": {
"button": {
":active": {
"color": {
"background": "var(--wp--preset--color--primary)",
"text": "var(--wp--preset--color--base)"
}
},
":focus": {
"color": {
"background": "var(--wp--preset--color--primary)",
"text": "var(--wp--preset--color--base)"
},
"outline": {
"color": "var(--wp--preset--color--primary)",
"offset": "2px",
"style": "dotted",
"width": "1px"
}
},
":hover": {
"color": {
"background": "var(--wp--preset--color--secondary)",
"text": "var(--wp--preset--color--base)"
}
},
"border": {
"radius": "0.25rem"
},
"color": {
"background": "var(--wp--preset--color--primary)",
"text": "var(--wp--preset--color--base)"
}
},
"h1": {
"typography": {
"fontSize": "var(--wp--preset--font-size--x-large)"
}
},
"h2": {
"typography": {
"fontSize": "var(--wp--preset--font-size--large)"
}
},
"h3": {
"typography": {
"fontSize": "clamp(1.5rem, calc(1.5rem + ((1vw - 0.48rem) * 0.4808)), 1.75rem)"
}
},
"h4": {
"typography": {
"fontSize": "clamp(1.25rem, calc(1.25rem + ((1vw - 0.48rem) * 0.4808)), 1.5rem)"
}
},
"h5": {
"typography": {
"fontSize": "var(--wp--preset--font-size--medium)"
}
},
"h6": {
"typography": {
"fontSize": "var(--wp--preset--font-size--small)"
}
},
"heading": {
"typography": {
"fontFamily": "var(--wp--preset--font-family--public-sans)",
"fontStyle": "normal",
"fontWeight": "500",
"lineHeight": "1.125"
}
},
"link": {
":hover": {
"typography": {
"textDecoration": "none"
}
},
"color": {
"text": "var(--wp--preset--color--secondary)"
}
}
},
"spacing": {
"blockGap": "var(--wp--preset--spacing--40)",
"padding": {
"bottom": "0",
"left": "var(--wp--preset--spacing--50)",
"right": "var(--wp--preset--spacing--50)",
"top": "0"
}
},
"typography": {
"fontFamily": "var(--wp--preset--font-family--public-sans)",
"fontSize": "var(--wp--preset--font-size--medium)",
"fontStyle": "normal",
"fontWeight": "300",
"lineHeight": "1.5"
}
},
"templateParts": [
{
"area": "header",
"name": "header"
},
{
"area": "footer",
"name": "footer"
}
],
"version": 2,
"$schema": "https://schemas.wp.org/trunk/theme.json"
}

1
alves/functions.php Normal file → Executable file
View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/**
* Child Theme Functions and definitions

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/* Custom Colors: Alves */

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/*
* Custom Editor Colors: Varia

1
alves/inc/wpcom.php Normal file → Executable file
View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/**
* WordPress.com-specific functions and definitions.

View file

@ -1,6 +1,6 @@
{
"name": "alves",
"version": "1.5.30",
"version": "1.5.28",
"description": "Alves",
"bugs": {
"url": "https://github.com/Automattic/themes/issues"

View file

@ -5,7 +5,7 @@ Author: Automattic
Author URI: https://automattic.com/
Description: Convincing design for your charity or organizations online presence. Highlight your actions, causes and projects, Alves is versatile enough to be your personal site too.
Requires at least: WordPress 4.9.6
Version: 1.5.30
Version: 1.5.28
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia

View file

@ -6,7 +6,7 @@ Author: Automattic
Author URI: https://automattic.com/
Description: Convincing design for your charity or organizations online presence. Highlight your actions, causes and projects, Alves is versatile enough to be your personal site too.
Requires at least: WordPress 4.9.6
Version: 1.5.30
Version: 1.5.28
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
@ -403,6 +403,15 @@ sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**

View file

@ -6,7 +6,7 @@ Author: Automattic
Author URI: https://automattic.com/
Description: Convincing design for your charity or organizations online presence. Highlight your actions, causes and projects, Alves is versatile enough to be your personal site too.
Requires at least: WordPress 4.9.6
Version: 1.5.30
Version: 1.5.28
License: GNU General Public License v2 or later
License URI: LICENSE
Template: varia
@ -403,6 +403,15 @@ sup {
top: -0.5em;
}
/* Embedded content
========================================================================== */
/**
* Remove the border on images inside links in IE 10.
*/
img {
border-style: none;
}
/* Forms
========================================================================== */
/**

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php if ( class_exists( 'A8C\FSE\WP_Template' ) ) : // If the FSE plugin is active, use the Header template for content. ?>
<footer class="fse-template-part fse-footer entry-content">
<?php

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<div class="site-info">
<?php get_template_part( 'template-parts/footer/site', 'name' ); ?>
</div>

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/**
* Displays the footer widget area

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/**
* Displays header site branding

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/**
* Title: Default footer block pattern

View file

@ -1,4 +1,3 @@
<?php declare( strict_types = 1 ); ?>
<?php
/**
* Artly functions and definitions

View file

@ -12,15 +12,6 @@ Assemble something beautiful.
== Changelog ==
= 0.0.19 =
* Minor style tweaks for Assembler (#7989)
= 0.0.18 =
* Assembler: Update typography theme styles with categories data. (#7998)
= 0.0.17 =
* Assembler: Use variation partials and move styles.blocks.variations to styles.variations (#7891)
= 0.0.15 =
* Assembler: Add fonts (#7729)
* Assembler: Update bundled color and typography theme styles (#7731)

View file

@ -7,7 +7,7 @@ Description: Assemble something beautiful.
Requires at least: 6.4
Tested up to: 6.4
Requires PHP: 7.0
Version: 0.0.19
Version: 0.0.16
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: assembler
@ -15,7 +15,6 @@ Tags: blog, one-column, three-columns, wide-blocks, block-patterns, custom-color
*/
/* Progresive enhancement to reduce widows and orphans. */
h1,
h2,
h3,
@ -26,103 +25,16 @@ blockquote {
text-wrap: balance;
}
/* Remove auto-applied padding on headings when color is applied. */
h1.has-background, h2.has-background, h3.has-background, h4.has-background, h5.has-background, h6.has-background {
padding: 0;
}
p {
text-wrap: pretty;
}
/* Set default line height for font size presets. */
.has-xx-large-font-size {
line-height: 1;
}
/* Add space between the header and first element, if its a paragraph. */
.entry-content > p:first-child {
margin-top: var(--wp--style--root--padding-left);
}
/* Fields */
label,
.jetpack-field-label .rich-text.jetpack-field-label__input,
.wp-block-jetpack-contact-form-container .wp-block-jetpack-contact-form label {
display: inline-block;
font-size: var(--wp--preset--font-size--small);
margin-bottom: 0.25em;
font-weight: inherit;
}
textarea,
input:not([type=submit]):not([type=checkbox]),
.wp-block-post-comments-form textarea,
.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]),
.jetpack-contact-form .jetpack-field .jetpack-field__input,
.jetpack-contact-form .jetpack-field .jetpack-field__textarea {
backdrop-filter: saturate(1.075);
background-color: transparent;
border-color: currentColor;
border-style: solid;
border-radius: 6px;
border-width: 1px;
box-shadow: none;
box-sizing: border-box;
color: currentColor;
filter: brightness(1.05);
font-size: var(--wp--preset--font-size--small);
font-weight: inherit;
line-height: 1.5;
min-height: 42px;
padding: 0.8rem 1rem;
width: 100%;
}
textarea:focus,
input:not([type=submit]):focus,
.wp-block-post-comments-form textarea:focus,
.wp-block-post-comments-form input:not([type=submit]):not([type=checkbox]):focus {
outline: 1px solid currentColor;
}
/* Jetpack Forms: Clean up errors */
.contact-form__error {
font-size: 13px;
}
.contact-form__input-error {
font-size: 13px;
gap: 8px;
}
.contact-form__input-error .contact-form__warning-icon {
border-width: 0;
}
/* Jetpack Forms: Animated block style tweaks */
.contact-form .is-style-animated .grunion-field-wrap.grunion-field-select-wrap .animated-label__label label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field.has-placeholder ~ .animated-label__label label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field:focus ~ .animated-label__label label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field:not(:placeholder-shown) ~ .animated-label__label label {
opacity: 0.7;
font-size: 11px;
}
/* Make sure footers have no margin. */
/* Tiny tweak to make sure footers are properly spaced. */
footer {
margin-top: 0 !important;
}
/* Social Links: Better default color. */
/* Provide better default color for social links */
.wp-block-social-links.is-style-logos-only li.wp-social-link {
color: currentcolor;
}
@ -136,8 +48,17 @@ footer {
font-size: 20px;
}
/* Move header core/navigation to the right on mobile. */
/* Set default line height for font size presets. */
.has-xx-large-font-size {
line-height: 1;
}
/* Add space between the header and first element, if its a paragraph. */
.entry-content > p:first-child {
margin-top: var(--wp--style--root--padding-left);
}
/* Move header core/navigation to the right on mobile. */
.order-0 {
order: 0;
}
@ -177,3 +98,70 @@ footer {
.overflow-hidden {
overflow: hidden;
}
/* Style Jetpack forms */
.wp-block-jetpack-contact-form-container {
--jetpack--contact-form--input-padding-left: 16px !important;
}
.wp-block-jetpack-contact-form input,
.wp-block-jetpack-contact-form textarea {
backdrop-filter: saturate(1.1);
background-color: transparent;
border-color: var(--wp--custom--input--border--color);
border-radius: var(--wp--custom--input--border--radius) !important; /* Requires !important to override local variables with theme variables. */
border-width: var(--wp--custom--input--border--width) !important; /* Requires !important to override local variables with theme variables. */
filter: brightness(0.975);
font-size: inherit;
color: inherit;
transition: border-color 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.jetpack-contact-form .jetpack-field .jetpack-field__input,
.jetpack-contact-form .jetpack-field .jetpack-field__textarea {
border-color: var(--wp--custom--input--border--color);
}
.wp-block-jetpack-contact-form input:not(:placeholder-shown),
.wp-block-jetpack-contact-form textarea:not(:placeholder-shown),
.wp-block-jetpack-contact-form input:focus,
.wp-block-jetpack-contact-form textarea:focus {
filter: brightness(1);
backdrop-filter: saturate(1);
}
.wp-block-jetpack-contact-form input:focus,
.wp-block-jetpack-contact-form textarea:focus {
border-color: var(--wp--custom--input--focus--border--color);
}
.contact-form .is-style-animated .grunion-field-wrap:not(.no-label) select,
.contact-form .is-style-animated .grunion-field-wrap:not(.no-label) > input,
.contact-form .is-style-animated .grunion-field-wrap:not(.no-label) > textarea {
padding-top: var(--field-padding); /* Remove unnecessary padding adjustment from Jetpack. */
}
.contact-form .is-style-animated .grunion-field-wrap .animated-label__label {
font-size: inherit;
width: auto;
padding: 0 4px;
transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1), top 0.15s cubic-bezier(0.4, 0, 0.2, 1), font-size 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}
.contact-form .is-style-animated .grunion-field-wrap.grunion-field-select-wrap .animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field.has-placeholder ~ .animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field:focus ~ .animated-label__label,
.contact-form .is-style-animated .grunion-field-wrap .grunion-field:not(:placeholder-shown) ~ .animated-label__label {
background-color: var(--wp--custom--input--color--background) !important;
transform: translateY(-11px) translateX(-4px); /* Moves the label out of the field. */
}
.contact-form label,
.wp-block-jetpack-contact-form label,
.jetpack-field-label .rich-text.jetpack-field-label__input {
font-weight: 500;
}
.contact-form__input-error {
font-size: var(--wp--preset--font-size--small);
}

View file

@ -1,58 +0,0 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"slug": "section-1",
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"styles": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
}
}

View file

@ -1,58 +0,0 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"slug": "section-2",
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"styles": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
}
}

View file

@ -1,58 +0,0 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"slug": "section-3",
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"styles": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Blueberry",
"categories": [
"business",
@ -39,19 +39,83 @@
"duotone": [
{
"colors": [
"#000000",
"#243FC6"
"#FFFFFF",
"#D3DDF5"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#233AAF",
"#D3DDF5"
"#FFFFFF",
"#243fc6"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#233AAF"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#171523"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#D3DDF5",
"#243fc6"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#D3DDF5",
"#233AAF"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#D3DDF5",
"#171523"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#243fc6",
"#233AAF"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#243fc6",
"#171523"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#233AAF",
"#171523"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -111,6 +175,21 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-3)"
}
}
}
}
},
"styles": {
@ -119,11 +198,194 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"caption": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
":hover": {
"color": {
"background": "#FFFFFFE3",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"caption": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
},
"elements": {
@ -151,159 +413,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"caption": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
":hover": {
"color": {
"background": "#FFFFFFE3",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"caption": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Pewter",
"categories": [
"vibrant",
@ -46,19 +46,123 @@
"duotone": [
{
"colors": [
"#01616B",
"#fdfafa",
"#d4bbbb"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#181515",
"#fdfafa",
"#01616B"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#fdfafa",
"#716B66"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#fdfafa",
"#181515"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#fdfafa",
"#f7ecec"
],
"slug": "duotone-0-5",
"name": "Duotone 5"
},
{
"colors": [
"#d4bbbb",
"#01616B"
],
"slug": "duotone-1-2",
"name": "Duotone 6"
},
{
"colors": [
"#d4bbbb",
"#716B66"
],
"slug": "duotone-1-3",
"name": "Duotone 7"
},
{
"colors": [
"#d4bbbb",
"#181515"
],
"slug": "duotone-1-4",
"name": "Duotone 8"
},
{
"colors": [
"#d4bbbb",
"#f7ecec"
],
"slug": "duotone-1-5",
"name": "Duotone 9"
},
{
"colors": [
"#01616B",
"#716B66"
],
"slug": "duotone-2-3",
"name": "Duotone 10"
},
{
"colors": [
"#01616B",
"#181515"
],
"slug": "duotone-2-4",
"name": "Duotone 11"
},
{
"colors": [
"#01616B",
"#f7ecec"
],
"slug": "duotone-2-5",
"name": "Duotone 12"
},
{
"colors": [
"#716B66",
"#181515"
],
"slug": "duotone-3-4",
"name": "Duotone 13"
},
{
"colors": [
"#716B66",
"#f7ecec"
],
"slug": "duotone-3-5",
"name": "Duotone 14"
},
{
"colors": [
"#181515",
"#f7ecec"
],
"slug": "duotone-4-5",
"name": "Duotone 15"
}
],
"gradients": [
@ -143,6 +247,21 @@
"name": "Gradient 15"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -156,6 +275,167 @@
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
}
}
},
"elements": {
@ -170,147 +450,16 @@
"ref": "styles.color.text"
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Pearl",
"categories": [
"corporate",
@ -42,19 +42,83 @@
"duotone": [
{
"colors": [
"#142445",
"#EBECF2"
"#ffffff",
"#ebecf2"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#030918",
"#ffffff",
"#184690"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#ffffff",
"#3C528D"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#ffffff",
"#142445"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#ebecf2",
"#184690"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#ebecf2",
"#3C528D"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#ebecf2",
"#142445"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#184690",
"#3C528D"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#184690",
"#142445"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#3C528D",
"#142445"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -114,6 +178,16 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
},
"styles": {
@ -122,11 +196,184 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-3)"
},
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "#14244514",
"text": "#14244514"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "#FFFFFF36",
"text": "#FFFFFF36"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "#FFFFFF36",
"text": "#FFFFFF36"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
@ -149,149 +396,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "#14244514",
"text": "#14244514"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "#FFFFFF36",
"text": "#FFFFFF36"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "#FFFFFF36",
"text": "#FFFFFF36"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Meadow",
"categories": [
"clean",
@ -47,19 +47,123 @@
"duotone": [
{
"colors": [
"#111111",
"#DABDB7"
"#FFFFFF",
"#DDDCDD"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#111111",
"#FFFFFF",
"#DABDB7"
],
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#D5DF37"
],
"slug": "duotone-2",
"name": "Duotone 2"
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#111111"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#FFFFFF",
"#111111CC"
],
"slug": "duotone-0-5",
"name": "Duotone 5"
},
{
"colors": [
"#DDDCDD",
"#DABDB7"
],
"slug": "duotone-1-2",
"name": "Duotone 6"
},
{
"colors": [
"#DDDCDD",
"#D5DF37"
],
"slug": "duotone-1-3",
"name": "Duotone 7"
},
{
"colors": [
"#DDDCDD",
"#111111"
],
"slug": "duotone-1-4",
"name": "Duotone 8"
},
{
"colors": [
"#DDDCDD",
"#111111CC"
],
"slug": "duotone-1-5",
"name": "Duotone 9"
},
{
"colors": [
"#DABDB7",
"#D5DF37"
],
"slug": "duotone-2-3",
"name": "Duotone 10"
},
{
"colors": [
"#DABDB7",
"#111111"
],
"slug": "duotone-2-4",
"name": "Duotone 11"
},
{
"colors": [
"#DABDB7",
"#111111CC"
],
"slug": "duotone-2-5",
"name": "Duotone 12"
},
{
"colors": [
"#D5DF37",
"#111111"
],
"slug": "duotone-3-4",
"name": "Duotone 13"
},
{
"colors": [
"#D5DF37",
"#111111CC"
],
"slug": "duotone-3-5",
"name": "Duotone 14"
},
{
"colors": [
"#111111",
"#111111CC"
],
"slug": "duotone-4-5",
"name": "Duotone 15"
}
],
"gradients": [
@ -144,6 +248,21 @@
"name": "Gradient 15"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -157,6 +276,167 @@
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
},
"elements": {
@ -184,149 +464,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Auburn",
"categories": [
"vibrant",
@ -41,19 +41,83 @@
"duotone": [
{
"colors": [
"#A14D00",
"#E6EDF3"
"#FFFFFF",
"#e6edf3"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#000000",
"#C77238"
"#FFFFFF",
"#c77238"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#a14d00"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#000000"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#e6edf3",
"#c77238"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#e6edf3",
"#a14d00"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#e6edf3",
"#000000"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#c77238",
"#a14d00"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#c77238",
"#000000"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#a14d00",
"#000000"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -113,6 +177,21 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -121,11 +200,184 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
}
}
},
"elements": {
@ -153,149 +405,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Periwinkle",
"categories": [
"vibrant",
@ -41,19 +41,83 @@
"duotone": [
{
"colors": [
"#141519",
"#EBEBFC"
"#fafafe",
"#ebebfc"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#141519",
"#fafafe",
"#CCCEF8"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#fafafe",
"#525263"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#fafafe",
"#141519"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#ebebfc",
"#CCCEF8"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#ebebfc",
"#525263"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#ebebfc",
"#141519"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#CCCEF8",
"#525263"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#CCCEF8",
"#141519"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#525263",
"#141519"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -113,6 +177,21 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -121,11 +200,184 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
@ -153,149 +405,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Mulberry",
"categories": [
"vibrant",
@ -42,19 +42,83 @@
"duotone": [
{
"colors": [
"#530C38",
"#FFFFFF",
"#F5EFE4"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#090207",
"#F5EFE4"
"#FFFFFF",
"#530C38"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#2F0C21"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#090207"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#F5EFE4",
"#530C38"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#F5EFE4",
"#2F0C21"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#F5EFE4",
"#090207"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#530C38",
"#2F0C21"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#530C38",
"#090207"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#2F0C21",
"#090207"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -114,6 +178,21 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -122,11 +201,184 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
@ -154,149 +406,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Fluorescent",
"categories": [
"vibrant",
@ -47,19 +47,123 @@
"duotone": [
{
"colors": [
"#F97AD1",
"#FFFFFF",
"#00DA01"
],
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#FFFFFF",
"#FFF832"
],
"slug": "duotone-1",
"name": "Duotone 1"
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#F97AD1"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#041F25"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#FFFFFF",
"#021316"
],
"slug": "duotone-0-5",
"name": "Duotone 5"
},
{
"colors": [
"#00DA01",
"#FFF832"
],
"slug": "duotone-2",
"name": "Duotone 2"
"slug": "duotone-1-2",
"name": "Duotone 6"
},
{
"colors": [
"#00DA01",
"#F97AD1"
],
"slug": "duotone-1-3",
"name": "Duotone 7"
},
{
"colors": [
"#00DA01",
"#041F25"
],
"slug": "duotone-1-4",
"name": "Duotone 8"
},
{
"colors": [
"#00DA01",
"#021316"
],
"slug": "duotone-1-5",
"name": "Duotone 9"
},
{
"colors": [
"#FFF832",
"#F97AD1"
],
"slug": "duotone-2-3",
"name": "Duotone 10"
},
{
"colors": [
"#FFF832",
"#041F25"
],
"slug": "duotone-2-4",
"name": "Duotone 11"
},
{
"colors": [
"#FFF832",
"#021316"
],
"slug": "duotone-2-5",
"name": "Duotone 12"
},
{
"colors": [
"#F97AD1",
"#041F25"
],
"slug": "duotone-3-4",
"name": "Duotone 13"
},
{
"colors": [
"#F97AD1",
"#021316"
],
"slug": "duotone-3-5",
"name": "Duotone 14"
},
{
"colors": [
"#041F25",
"#021316"
],
"slug": "duotone-4-5",
"name": "Duotone 15"
}
],
"gradients": [
@ -144,6 +248,21 @@
"name": "Gradient 15"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -152,11 +271,184 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "#FFFFFFE3",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
},
"elements": {
@ -184,149 +476,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "#FFFFFFE3",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Citron",
"categories": [
"vibrant",
@ -46,19 +46,123 @@
"duotone": [
{
"colors": [
"#000000",
"#FFFE00"
"#FFFFFF",
"#F3F2F0"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#000000",
"#F3F2F0"
"#FFFFFF",
"#FFFE00"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#E6E600"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#000000"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#FFFFFF",
"#000000CC"
],
"slug": "duotone-0-5",
"name": "Duotone 5"
},
{
"colors": [
"#F3F2F0",
"#FFFE00"
],
"slug": "duotone-1-2",
"name": "Duotone 6"
},
{
"colors": [
"#F3F2F0",
"#E6E600"
],
"slug": "duotone-1-3",
"name": "Duotone 7"
},
{
"colors": [
"#F3F2F0",
"#000000"
],
"slug": "duotone-1-4",
"name": "Duotone 8"
},
{
"colors": [
"#F3F2F0",
"#000000CC"
],
"slug": "duotone-1-5",
"name": "Duotone 9"
},
{
"colors": [
"#FFFE00",
"#E6E600"
],
"slug": "duotone-2-3",
"name": "Duotone 10"
},
{
"colors": [
"#FFFE00",
"#000000"
],
"slug": "duotone-2-4",
"name": "Duotone 11"
},
{
"colors": [
"#FFFE00",
"#000000CC"
],
"slug": "duotone-2-5",
"name": "Duotone 12"
},
{
"colors": [
"#E6E600",
"#000000"
],
"slug": "duotone-3-4",
"name": "Duotone 13"
},
{
"colors": [
"#E6E600",
"#000000CC"
],
"slug": "duotone-3-5",
"name": "Duotone 14"
},
{
"colors": [
"#000000",
"#000000CC"
],
"slug": "duotone-4-5",
"name": "Duotone 15"
}
],
"gradients": [
@ -143,6 +247,21 @@
"name": "Gradient 15"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -156,6 +275,176 @@
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/site-title": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
},
"elements": {
@ -183,158 +472,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/site-title": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Sunset",
"categories": [
"vibrant",
@ -47,19 +47,123 @@
"duotone": [
{
"colors": [
"#0F1214",
"#FF787D"
"#FBFDFE",
"#FCFEFFCC"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#000000",
"#FBFDFE",
"#FF787D"
],
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FBFDFE",
"#FFB678"
],
"slug": "duotone-2",
"name": "Duotone 2"
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FBFDFE",
"#0F1214"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#FBFDFE",
"#0F1214E0"
],
"slug": "duotone-0-5",
"name": "Duotone 5"
},
{
"colors": [
"#FCFEFFCC",
"#FF787D"
],
"slug": "duotone-1-2",
"name": "Duotone 6"
},
{
"colors": [
"#FCFEFFCC",
"#FFB678"
],
"slug": "duotone-1-3",
"name": "Duotone 7"
},
{
"colors": [
"#FCFEFFCC",
"#0F1214"
],
"slug": "duotone-1-4",
"name": "Duotone 8"
},
{
"colors": [
"#FCFEFFCC",
"#0F1214E0"
],
"slug": "duotone-1-5",
"name": "Duotone 9"
},
{
"colors": [
"#FF787D",
"#FFB678"
],
"slug": "duotone-2-3",
"name": "Duotone 10"
},
{
"colors": [
"#FF787D",
"#0F1214"
],
"slug": "duotone-2-4",
"name": "Duotone 11"
},
{
"colors": [
"#FF787D",
"#0F1214E0"
],
"slug": "duotone-2-5",
"name": "Duotone 12"
},
{
"colors": [
"#FFB678",
"#0F1214"
],
"slug": "duotone-3-4",
"name": "Duotone 13"
},
{
"colors": [
"#FFB678",
"#0F1214E0"
],
"slug": "duotone-3-5",
"name": "Duotone 14"
},
{
"colors": [
"#0F1214",
"#0F1214E0"
],
"slug": "duotone-4-5",
"name": "Duotone 15"
}
],
"gradients": [
@ -144,6 +248,21 @@
"name": "Gradient 15"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -157,6 +276,167 @@
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
},
"elements": {
@ -184,149 +464,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Linen",
"categories": [
"minimalistic",
@ -43,19 +43,83 @@
"duotone": [
{
"colors": [
"#000000",
"#FBFBF9",
"#F4F4EE"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#222222",
"#DCDCD6"
"#FBFBF9",
"#dcdcd6"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FBFBF9",
"#222222"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FBFBF9",
"#000000"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#F4F4EE",
"#dcdcd6"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#F4F4EE",
"#222222"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#F4F4EE",
"#000000"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#dcdcd6",
"#222222"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#dcdcd6",
"#000000"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#222222",
"#000000"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -115,6 +179,21 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-5)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -128,6 +207,157 @@
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
},
"core/button": {
"variations": {
"outline": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
},
"core/site-title": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "#FFFFFFE3",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
@ -155,130 +385,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
},
"core/site-title": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "#FFFFFFE3",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Dawn",
"categories": [
"fresh",
@ -47,19 +47,123 @@
"duotone": [
{
"colors": [
"#000000",
"#FFE019"
"#FFFFFF",
"#C6BBBA"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#000000",
"#C6BBBA"
"#FFFFFF",
"#E7C1BA"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#FFE019"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#FFCD19"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#FFFFFF",
"#000000"
],
"slug": "duotone-0-5",
"name": "Duotone 5"
},
{
"colors": [
"#C6BBBA",
"#E7C1BA"
],
"slug": "duotone-1-2",
"name": "Duotone 6"
},
{
"colors": [
"#C6BBBA",
"#FFE019"
],
"slug": "duotone-1-3",
"name": "Duotone 7"
},
{
"colors": [
"#C6BBBA",
"#FFCD19"
],
"slug": "duotone-1-4",
"name": "Duotone 8"
},
{
"colors": [
"#C6BBBA",
"#000000"
],
"slug": "duotone-1-5",
"name": "Duotone 9"
},
{
"colors": [
"#E7C1BA",
"#FFE019"
],
"slug": "duotone-2-3",
"name": "Duotone 10"
},
{
"colors": [
"#E7C1BA",
"#FFCD19"
],
"slug": "duotone-2-4",
"name": "Duotone 11"
},
{
"colors": [
"#E7C1BA",
"#000000"
],
"slug": "duotone-2-5",
"name": "Duotone 12"
},
{
"colors": [
"#FFE019",
"#FFCD19"
],
"slug": "duotone-3-4",
"name": "Duotone 13"
},
{
"colors": [
"#FFE019",
"#000000"
],
"slug": "duotone-3-5",
"name": "Duotone 14"
},
{
"colors": [
"#FFCD19",
"#000000"
],
"slug": "duotone-4-5",
"name": "Duotone 15"
}
],
"gradients": [
@ -144,6 +248,21 @@
"name": "Gradient 15"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-5)"
},
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -157,6 +276,176 @@
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
},
"core/button": {
"variations": {
"outline": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
},
"elements": {
@ -184,149 +473,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-6)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Blush",
"categories": [
"boutique",
@ -40,6 +40,88 @@
"slug": "theme-5"
}
],
"duotone": [
{
"colors": [
"#FFFFFF",
"#F6F4F2"
],
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#FFFFFF",
"#F7E3CD"
],
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFFFFF",
"#8D4E2F"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFFFFF",
"#000000"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#F6F4F2",
"#F7E3CD"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#F6F4F2",
"#8D4E2F"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#F6F4F2",
"#000000"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#F7E3CD",
"#8D4E2F"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#F7E3CD",
"#000000"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#8D4E2F",
"#000000"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
{
"slug": "gradient-text-transparent",
@ -97,6 +179,21 @@
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-1)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
},
":focus": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
}
}
}
}
},
"styles": {
@ -105,11 +202,184 @@
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-5)"
},
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
@ -132,149 +402,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-5)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-5)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-1)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -1,6 +1,6 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"version": 2,
"title": "Terracotta",
"categories": [
"luxury",
@ -24,6 +24,11 @@
"name": "Color 2",
"slug": "theme-2"
},
{
"color": "#000000",
"name": "Color 4",
"slug": "theme-4"
},
{
"color": "#FEA77A",
"name": "Color 5",
@ -33,29 +38,88 @@
"color": "#17100E",
"name": "Color 3",
"slug": "theme-3"
},
{
"color": "#000000",
"name": "Color 4",
"slug": "theme-4"
}
],
"duotone": [
{
"colors": [
"#17100E",
"#FEA77A"
"#FFF",
"#F4F3EC"
],
"slug": "duotone-1",
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#17100E",
"#F4F3EC"
"#FFF",
"#000000"
],
"slug": "duotone-2",
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFF",
"#FEA77A"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFF",
"#17100E"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#F4F3EC",
"#000000"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#F4F3EC",
"#FEA77A"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#F4F3EC",
"#17100E"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#000000",
"#FEA77A"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#000000",
"#17100E"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#FEA77A",
"#17100E"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
@ -71,50 +135,60 @@
},
{
"slug": "gradient-1-3",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-5) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-4) 100%)",
"name": "Gradient 2"
},
{
"slug": "gradient-1-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-3) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 3"
},
{
"slug": "gradient-1-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-4) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 4"
},
{
"slug": "gradient-2-3",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-5) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-4) 100%)",
"name": "Gradient 5"
},
{
"slug": "gradient-2-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-3) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 6"
},
{
"slug": "gradient-2-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-4) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 7"
},
{
"slug": "gradient-3-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-5) 0%, var(--wp--preset--color--theme-3) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 8"
},
{
"slug": "gradient-3-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-5) 0%, var(--wp--preset--color--theme-4) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 9"
},
{
"slug": "gradient-4-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-3) 0%, var(--wp--preset--color--theme-4) 100%)",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-5) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-2)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
}
}
}
},
"styles": {
@ -123,11 +197,181 @@
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
@ -150,149 +394,6 @@
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-3)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-3)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-3)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -1,297 +0,0 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 3,
"title": "Gainsboro",
"categories": [
"business",
"professional",
"crisp",
"bold",
"modern",
"dynamic"
],
"settings": {
"color": {
"palette": [
{
"color": "#FFF",
"name": "Color 1",
"slug": "theme-1"
},
{
"color": "#DADCDD",
"name": "Color 2",
"slug": "theme-2"
},
{
"color": "#3333EA",
"name": "Color 4",
"slug": "theme-4"
},
{
"color": "#2A2ACD",
"name": "Color 5",
"slug": "theme-5"
},
{
"color": "#161C1F",
"name": "Color 3",
"slug": "theme-3"
}
],
"duotone": [
{
"colors": [
"#3333EA",
"#FFFFFF"
],
"slug": "duotone-1",
"name": "Duotone 1"
},
{
"colors": [
"#3333EA",
"#DADCDD"
],
"slug": "duotone-2",
"name": "Duotone 2"
}
],
"gradients": [
{
"slug": "gradient-text-transparent",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) -50%, transparent 50%)",
"name": "Text to Transparent"
},
{
"slug": "gradient-1-2",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-2) 100%)",
"name": "Gradient 1"
},
{
"slug": "gradient-1-3",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-4) 100%)",
"name": "Gradient 2"
},
{
"slug": "gradient-1-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 3"
},
{
"slug": "gradient-1-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 4"
},
{
"slug": "gradient-2-3",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-4) 100%)",
"name": "Gradient 5"
},
{
"slug": "gradient-2-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 6"
},
{
"slug": "gradient-2-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 7"
},
{
"slug": "gradient-3-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 8"
},
{
"slug": "gradient-3-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 9"
},
{
"slug": "gradient-4-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-5) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 10"
}
]
}
},
"styles": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"link": {
"color": {
"text": {
"ref": "styles.color.text"
}
}
}
},
"variations": {
"section-1": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"section-2": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"section-3": {
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
}
}

View file

@ -0,0 +1,398 @@
{
"$schema": "https://schemas.wp.org/trunk/theme.json",
"version": 2,
"title": "Maritime",
"categories": [
"business",
"professional",
"crisp",
"bold",
"modern",
"dynamic"
],
"settings": {
"color": {
"palette": [
{
"color": "#FFF",
"name": "Color 1",
"slug": "theme-1"
},
{
"color": "#F9F7F4",
"name": "Color 2",
"slug": "theme-2"
},
{
"color": "#003297",
"name": "Color 4",
"slug": "theme-4"
},
{
"color": "#002C84",
"name": "Color 5",
"slug": "theme-5"
},
{
"color": "#0F1A35",
"name": "Color 3",
"slug": "theme-3"
}
],
"duotone": [
{
"colors": [
"#FFF",
"#F9F7F4"
],
"slug": "duotone-0-1",
"name": "Duotone 1"
},
{
"colors": [
"#FFF",
"#003297"
],
"slug": "duotone-0-2",
"name": "Duotone 2"
},
{
"colors": [
"#FFF",
"#002C84"
],
"slug": "duotone-0-3",
"name": "Duotone 3"
},
{
"colors": [
"#FFF",
"#0F1A35"
],
"slug": "duotone-0-4",
"name": "Duotone 4"
},
{
"colors": [
"#F9F7F4",
"#003297"
],
"slug": "duotone-1-2",
"name": "Duotone 5"
},
{
"colors": [
"#F9F7F4",
"#002C84"
],
"slug": "duotone-1-3",
"name": "Duotone 6"
},
{
"colors": [
"#F9F7F4",
"#0F1A35"
],
"slug": "duotone-1-4",
"name": "Duotone 7"
},
{
"colors": [
"#003297",
"#002C84"
],
"slug": "duotone-2-3",
"name": "Duotone 8"
},
{
"colors": [
"#003297",
"#0F1A35"
],
"slug": "duotone-2-4",
"name": "Duotone 9"
},
{
"colors": [
"#002C84",
"#0F1A35"
],
"slug": "duotone-3-4",
"name": "Duotone 10"
}
],
"gradients": [
{
"slug": "gradient-text-transparent",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) -50%, transparent 50%)",
"name": "Text to Transparent"
},
{
"slug": "gradient-1-2",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-2) 100%)",
"name": "Gradient 1"
},
{
"slug": "gradient-1-3",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-4) 100%)",
"name": "Gradient 2"
},
{
"slug": "gradient-1-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 3"
},
{
"slug": "gradient-1-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-1) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 4"
},
{
"slug": "gradient-2-3",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-4) 100%)",
"name": "Gradient 5"
},
{
"slug": "gradient-2-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 6"
},
{
"slug": "gradient-2-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-2) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 7"
},
{
"slug": "gradient-3-4",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) 0%, var(--wp--preset--color--theme-5) 100%)",
"name": "Gradient 8"
},
{
"slug": "gradient-3-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-4) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 9"
},
{
"slug": "gradient-4-5",
"gradient": "linear-gradient(to bottom, var(--wp--preset--color--theme-5) 0%, var(--wp--preset--color--theme-3) 100%)",
"name": "Gradient 10"
}
]
},
"custom": {
"input": {
"color": {
"background": "var(--wp--preset--color--theme-2)"
},
"border": {
"color": "var(--wp--preset--color--theme-4)"
}
}
}
},
"styles": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/button": {
"variations": {
"outline": {
"border": {
"color": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
},
"variations": {
"section-1": {
"title": "Style 1",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-4)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-4)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-4)"
}
}
}
},
"section-2": {
"title": "Style 2",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"section-3": {
"title": "Style 3",
"blockTypes": [
"core/group",
"core/columns",
"core/column"
],
"color": {
"background": "var(--wp--preset--color--theme-3)",
"text": "var(--wp--preset--color--theme-2)"
},
"blocks": {
"core/paragraph": {
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
},
"core/separator": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-2)"
}
}
},
"elements": {
"link": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
},
"button": {
"color": {
"background": "var(--wp--preset--color--theme-2)",
"text": "var(--wp--preset--color--theme-5)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-1)",
"text": "var(--wp--preset--color--theme-5)"
}
}
},
"heading": {
"color": {
"text": "var(--wp--preset--color--theme-2)"
}
}
}
}
}
},
"elements": {
"button": {
"color": {
"background": "var(--wp--preset--color--theme-4)",
"text": "var(--wp--preset--color--theme-1)"
},
":hover": {
"color": {
"background": "var(--wp--preset--color--theme-5)",
"text": "var(--wp--preset--color--theme-1)"
}
}
},
"link": {
"color": {
"text": {
"ref": "styles.color.text"
}
}
}
}
}
}

Some files were not shown because too many files have changed in this diff Show more