From 2407a880f7ecc3b8e511727ee03027b2d7bfb8a0 Mon Sep 17 00:00:00 2001 From: Claudio Sanches Date: Mon, 22 Aug 2016 20:59:56 -0300 Subject: [PATCH] Updated the default colors for emails to match the Woo Style Guide Closes #11748 cc @jameskoster --- .../admin/settings/class-wc-settings-emails.php | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/includes/admin/settings/class-wc-settings-emails.php b/includes/admin/settings/class-wc-settings-emails.php index 270291caee6..1192432acbf 100644 --- a/includes/admin/settings/class-wc-settings-emails.php +++ b/includes/admin/settings/class-wc-settings-emails.php @@ -118,44 +118,44 @@ class WC_Settings_Emails extends WC_Settings_Page { array( 'title' => __( 'Base Colour', 'woocommerce' ), - 'desc' => __( 'The base colour for WooCommerce email templates. Default #557da1.', 'woocommerce' ), + 'desc' => __( 'The base colour for WooCommerce email templates. Default #96588a.', 'woocommerce' ), 'id' => 'woocommerce_email_base_color', 'type' => 'color', 'css' => 'width:6em;', - 'default' => '#557da1', + 'default' => '#96588a', 'autoload' => false, 'desc_tip' => true ), array( 'title' => __( 'Background Colour', 'woocommerce' ), - 'desc' => __( 'The background colour for WooCommerce email templates. Default #f5f5f5.', 'woocommerce' ), + 'desc' => __( 'The background colour for WooCommerce email templates. Default #f7f7f7.', 'woocommerce' ), 'id' => 'woocommerce_email_background_color', 'type' => 'color', 'css' => 'width:6em;', - 'default' => '#f5f5f5', + 'default' => '#f7f7f7', 'autoload' => false, 'desc_tip' => true ), array( 'title' => __( 'Body Background Colour', 'woocommerce' ), - 'desc' => __( 'The main body background colour. Default #fdfdfd.', 'woocommerce' ), + 'desc' => __( 'The main body background colour. Default #ffffff.', 'woocommerce' ), 'id' => 'woocommerce_email_body_background_color', 'type' => 'color', 'css' => 'width:6em;', - 'default' => '#fdfdfd', + 'default' => '#ffffff', 'autoload' => false, 'desc_tip' => true ), array( 'title' => __( 'Body Text Colour', 'woocommerce' ), - 'desc' => __( 'The main body text colour. Default #505050.', 'woocommerce' ), + 'desc' => __( 'The main body text colour. Default #3c3c3c.', 'woocommerce' ), 'id' => 'woocommerce_email_text_color', 'type' => 'color', 'css' => 'width:6em;', - 'default' => '#505050', + 'default' => '#3c3c3c', 'autoload' => false, 'desc_tip' => true ),