From 93dfe28aaf987d1ab47ef62dd083c5b47cb6320a Mon Sep 17 00:00:00 2001 From: hellofromTonya Date: Wed, 22 Feb 2023 16:00:21 +0000 Subject: [PATCH] Themes: Add 3 and update 2 shadow presets in `theme.json`. Adds Deep, Outlined, and Crisp default shadow presets to Core's `theme.json` file. Updates the Natural and Sharp `'shadow'` styles. These shadow presets are used to populate the Shadow tools in the Site Editor's Global Styles UI. References: * [https://github.com/WordPress/gutenberg/pull/46502 Gutenberg PR 46502] Follow-up to [55176]. Props franz00, madhudollu, ajlende, beafialho, costdev, dhrupo, fabiankaegy, hellofromTonya, jameskoster, joen, kellychoffman, mamaduka, mtias, oandregal, priethor, richtabor, scruffian. Fixes #57708. See #57559. Built from https://develop.svn.wordpress.org/trunk@55405 git-svn-id: http://core.svn.wordpress.org/trunk@54938 1a063a9b-81f0-0310-95a4-ce76da25c4cd --- wp-includes/theme.json | 20 ++++++++++++++++++-- wp-includes/version.php | 2 +- 2 files changed, 19 insertions(+), 3 deletions(-) diff --git a/wp-includes/theme.json b/wp-includes/theme.json index 512f6d796c..af44799060 100644 --- a/wp-includes/theme.json +++ b/wp-includes/theme.json @@ -326,16 +326,32 @@ } }, "shadow": { + "defaultPresets": true, "presets": [ { "name": "Natural", "slug": "natural", - "shadow": "0 .2rem .3rem 0 rgba(0,0,0, 0.3), 0 .5rem .6rem 0 rgba(0,0,0, 0.4)" + "shadow": "6px 6px 9px rgba(0, 0, 0, 0.2)" + }, + { + "name": "Deep", + "slug": "deep", + "shadow": "12px 12px 50px rgba(0, 0, 0, 0.4)" }, { "name": "Sharp", "slug": "sharp", - "shadow": ".5rem .5rem 0 0 rgba(0,0,0, 0.4)" + "shadow": "6px 6px 0px rgba(0, 0, 0, 0.2)" + }, + { + "name": "Outlined", + "slug": "outlined", + "shadow": "6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1)" + }, + { + "name": "Crisp", + "slug": "crisp", + "shadow": "6px 6px 0px rgba(0, 0, 0, 1)" } ] }, diff --git a/wp-includes/version.php b/wp-includes/version.php index 3aa8efcf29..e8534764c8 100644 --- a/wp-includes/version.php +++ b/wp-includes/version.php @@ -16,7 +16,7 @@ * * @global string $wp_version */ -$wp_version = '6.2-beta3-55404'; +$wp_version = '6.2-beta3-55405'; /** * Holds the WordPress DB revision, increments when changes are made to the WordPress DB schema.