1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly }
/** * The default colors for this theme */ $defaults = array( 'body_background_color' => '#f8f5f4', 'body_text_color' => '#132147', 'header_background_color' => '#132147', 'footer_background_color' => '#132147', 'header_text_color' => '#ffffff', 'footer_color' => '#ffffff', 'link_color' => '#0073aa', 'button_color' => '#135bff', 'button_text_color' => '#ffffff', 'button_hover_color' => '#3a76ff', 'button_text_hover_color' => '#ffffff', 'secondary_button_color' => '#135bff', 'secondary_button_text_color' => '#ffffff', 'secondary_button_hover_color' => '#3a76ff', 'secondary_button_text_hover_color' => '#ffffff', 'summary_background_color' => '#eeeae7', 'summary_mobile_background_color' => '#eeeae7', 'summary_text_color' => '#333333', 'cart_item_quantity_color' => '#135bff', 'cart_item_quantity_text_color' => '#ffffff', 'accent_color' => '#dee6fe', 'breadcrumb_completed_text_color' => '#333333', 'breadcrumb_current_text_color' => '#135bff', 'breadcrumb_next_text_color' => '#dfdcdb', 'breadcrumb_completed_accent_color' => '#333333', 'breadcrumb_current_accent_color' => '#135bff', 'breadcrumb_next_accent_color' => '#dfdcdb', );
|