Update Woo's default colour (#1769)

* Update default Woo colour

Woo's branding colour has changed to #7f54b3 so this commit fixes that.

* Update default colours in customizer
This commit is contained in:
Job 2021-08-26 14:54:50 +02:00 committed by GitHub
parent 3eb3c0f593
commit ed2530f09d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

View file

@ -43,7 +43,7 @@ if ( ! class_exists( 'Storefront_Customizer' ) ) :
$args = array(
'storefront_heading_color' => '#333333',
'storefront_text_color' => '#6d6d6d',
'storefront_accent_color' => '#96588a',
'storefront_accent_color' => '#7f54b3',
'storefront_hero_heading_color' => '#000000',
'storefront_hero_text_color' => '#000000',
'storefront_header_background_color' => '#ffffff',
@ -232,7 +232,7 @@ if ( ! class_exists( 'Storefront_Customizer' ) ) :
$wp_customize->add_setting(
'storefront_accent_color',
array(
'default' => apply_filters( 'storefront_default_accent_color', '#96588a' ),
'default' => apply_filters( 'storefront_default_accent_color', '#7f54b3' ),
'sanitize_callback' => 'sanitize_hex_color',
)
);