[CYS on Core] Add the color palettes for the Nokul, Highline and Luminate themes in the Intro Screen (#45105)
* Add the color palettes for the highline theme. * Add the color palettes for the luminate theme. * Add the color palettes for the nokul theme. * Add changefile(s) from automation for the following project(s): woocommerce --------- Co-authored-by: github-actions <github-actions@github.com>
This commit is contained in:
parent
a668cf942e
commit
67f0d75b16
|
@ -0,0 +1,4 @@
|
|||
Significance: minor
|
||||
Type: add
|
||||
|
||||
Customize Your Store: Add the color palettes for the Nokul, Highline and Luminate themes in the intro screen.
|
|
@ -283,8 +283,29 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
|
|||
array(
|
||||
'name' => 'Highline',
|
||||
'price' => '$79/year',
|
||||
'color_palettes' => array(),
|
||||
'total_palettes' => 0,
|
||||
'color_palettes' => array(
|
||||
array(
|
||||
'title' => 'Primary',
|
||||
'primary' => '#211f1d',
|
||||
'secondary' => '#211f1d',
|
||||
),
|
||||
array(
|
||||
'title' => 'Additional color',
|
||||
'primary' => '#aaaaaa',
|
||||
'secondary' => '#aaaaaa',
|
||||
),
|
||||
array(
|
||||
'title' => 'Accent Background',
|
||||
'primary' => '#b04b3c',
|
||||
'secondary' => '#b04b3c',
|
||||
),
|
||||
array(
|
||||
'title' => 'Secondary Background',
|
||||
'primary' => '#dabfa1',
|
||||
'secondary' => '#dabfa1',
|
||||
),
|
||||
),
|
||||
'total_palettes' => 9,
|
||||
'slug' => 'highline',
|
||||
'thumbnail_url' => 'https://woo.com/wp-content/uploads/2023/12/Featured-image-538x403-1.png',
|
||||
'link_url' => 'https://woo.com/products/highline/',
|
||||
|
@ -292,8 +313,29 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
|
|||
array(
|
||||
'name' => 'Luminate',
|
||||
'price' => '$79/year',
|
||||
'color_palettes' => array(),
|
||||
'total_palettes' => 0,
|
||||
'color_palettes' => array(
|
||||
array(
|
||||
'title' => 'Primary',
|
||||
'primary' => '#242a2e',
|
||||
'secondary' => '#242a2e',
|
||||
),
|
||||
array(
|
||||
'title' => 'Lite',
|
||||
'primary' => '#f6f5f2',
|
||||
'secondary' => '#f6f5f2',
|
||||
),
|
||||
array(
|
||||
'title' => 'Grey',
|
||||
'primary' => '#a5a5a5',
|
||||
'secondary' => '#a5a5a5',
|
||||
),
|
||||
array(
|
||||
'title' => 'Lite Grey',
|
||||
'primary' => '#e4e4e1',
|
||||
'secondary' => '#e4e4e1',
|
||||
),
|
||||
),
|
||||
'total_palettes' => 5,
|
||||
'slug' => 'luminate',
|
||||
'thumbnail_url' => 'https://woo.com/wp-content/uploads/2022/07/Featured-image-538x403-2.png',
|
||||
'link_url' => 'https://woo.com/products/luminate/',
|
||||
|
@ -301,8 +343,29 @@ class OnboardingThemes extends \WC_REST_Data_Controller {
|
|||
array(
|
||||
'name' => 'Nokul',
|
||||
'price' => '$79/year',
|
||||
'color_palettes' => array(),
|
||||
'total_palettes' => 0,
|
||||
'color_palettes' => array(
|
||||
array(
|
||||
'title' => 'Foreground and background',
|
||||
'primary' => '#000000',
|
||||
'secondary' => '#f1eee2',
|
||||
),
|
||||
array(
|
||||
'title' => 'Foreground and secondary',
|
||||
'primary' => '#000000',
|
||||
'secondary' => '#999999',
|
||||
),
|
||||
array(
|
||||
'title' => 'Foreground and accent',
|
||||
'primary' => '#000000',
|
||||
'secondary' => '#d82f16',
|
||||
),
|
||||
array(
|
||||
'title' => 'Primary and background',
|
||||
'primary' => '#d9d0bf',
|
||||
'secondary' => '#f1eee2',
|
||||
),
|
||||
),
|
||||
'total_palettes' => 6,
|
||||
'slug' => 'nokul',
|
||||
'thumbnail_url' => 'https://woo.com/wp-content/uploads/2022/11/Product-logo.jpg',
|
||||
'link_url' => 'https://woo.com/products/nokul/',
|
||||
|
|
Loading…
Reference in New Issue