Issues (1724)

includes/lsx-customizer-colour-options.php (349 issues)

1
<?php
2
/**
3
 * Customizer colour options
4
 *
5
 * @package   LSX Customizer
6
 * @author    LightSpeed
7
 * @license   GPL3
8
 * @link
9
 * @copyright 2016 LightSpeed
10
 */
11
12
global $customizer_colour_names;
13
global $customizer_colour_choices;
14
15
$customizer_colour_names = apply_filters( 'lsx_customizer_colour_names', array(
16
	'button_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
17
	'button_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
18
	'button_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
19
	'button_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
20
	'button_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
21
22
	'button_cta_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
23
	'button_cta_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
24
	'button_cta_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
25
	'button_cta_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
26
	'button_cta_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
27
28
	'button_secondary_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
29
	'button_secondary_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
30
	'button_secondary_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
31
	'button_secondary_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
32
	'button_secondary_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
33
34
	'button_tertiary_background_color'       => esc_html__( 'Background', 'lsx-customizer' ),
35
	'button_tertiary_background_hover_color' => esc_html__( 'Background (hover)', 'lsx-customizer' ),
36
	'button_tertiary_text_color'             => esc_html__( 'Text', 'lsx-customizer' ),
37
	'button_tertiary_text_color_hover'       => esc_html__( 'Text (hover)', 'lsx-customizer' ),
38
	'button_tertiary_shadow'                 => esc_html__( 'Shadow', 'lsx-customizer' ),
39
40
	'top_menu_background_color'          => esc_html__( 'Background', 'lsx-customizer' ),
41
	'top_menu_link_color'                => esc_html__( 'Link', 'lsx-customizer' ),
42
	'top_menu_link_hover_color'          => esc_html__( 'Link (hover)', 'lsx-customizer' ),
43
	'top_menu_icon_color'                => esc_html__( 'Icon', 'lsx-customizer' ),
44
	'top_menu_icon_hover_color'          => esc_html__( 'Icon (hover)', 'lsx-customizer' ),
45
	'top_menu_dropdown_color'            => esc_html__( 'Dropdown', 'lsx-customizer' ),
46
	'top_menu_dropdown_hover_color'      => esc_html__( 'Dropdown (hover)', 'lsx-customizer' ),
47
	'top_menu_dropdown_link_color'       => esc_html__( 'Dropdown link', 'lsx-customizer' ),
48
	'top_menu_dropdown_link_hover_color' => esc_html__( 'Dropdown link (hover)', 'lsx-customizer' ),
49
50
	'header_background_color'  => esc_html__( 'Background', 'lsx-customizer' ),
51
	'header_link_color'        => esc_html__( 'Link', 'lsx-customizer' ),
52
	'header_link_hover_color'  => esc_html__( 'Link (hover)', 'lsx-customizer' ),
53
	'header_description_color' => esc_html__( 'Description', 'lsx-customizer' ),
54
55
	'main_menu_background_color'                => esc_html__( 'Background', 'lsx-customizer' ),
56
	'main_menu_link_color'                      => esc_html__( 'Link', 'lsx-customizer' ),
57
	'main_menu_link_hover_color'                => esc_html__( 'Link (hover)', 'lsx-customizer' ),
58
	'main_menu_dropdown_background_color'       => esc_html__( 'Dropdown', 'lsx-customizer' ),
59
	'main_menu_dropdown_background_hover_color' => esc_html__( 'Dropdown (hover)', 'lsx-customizer' ),
60
	'main_menu_dropdown_link_color'             => esc_html__( 'Dropdown link', 'lsx-customizer' ),
61
	'main_menu_dropdown_link_hover_color'       => esc_html__( 'Dropdown link (hover)', 'lsx-customizer' ),
62
63
	'banner_background_color'               => esc_html__( 'Background', 'lsx-customizer' ),
64
	'banner_text_color'                     => esc_html__( 'Text', 'lsx-customizer' ),
65
	'banner_text_image_color'               => esc_html__( 'Text (over image)', 'lsx-customizer' ),
66
	'banner_breadcrumb_background_color'    => esc_html__( 'Breadcrumb Background', 'lsx-customizer' ),
67
	'banner_breadcrumb_text_color'          => esc_html__( 'Breadcrumb Text', 'lsx-customizer' ),
68
	'banner_breadcrumb_text_selected_color' => esc_html__( 'Breadcrumb Text (selected)', 'lsx-customizer' ),
69
70
	'background_color'                       => esc_html__( 'Background', 'lsx-customizer' ),
71
	'body_line_color'                        => esc_html__( 'Line', 'lsx-customizer' ),
72
	'body_text_heading_color'                => esc_html__( 'Text (heading)', 'lsx-customizer' ),
73
	'body_text_small_color'                  => esc_html__( 'Text (small)', 'lsx-customizer' ),
74
	'body_text_color'                        => esc_html__( 'Text', 'lsx-customizer' ),
75
	'body_link_color'                        => esc_html__( 'Link', 'lsx-customizer' ),
76
	'body_link_hover_color'                  => esc_html__( 'Link (hover)', 'lsx-customizer' ),
77
	'body_section_full_background_color'     => esc_html__( 'Section full (background)', 'lsx-customizer' ),
78
	'body_section_full_text_color'           => esc_html__( 'Section full (text)', 'lsx-customizer' ),
79
	'body_section_full_link_color'           => esc_html__( 'Section full (link)', 'lsx-customizer' ),
80
	'body_section_full_link_hover_color'     => esc_html__( 'Section full (link hover)', 'lsx-customizer' ),
81
	'body_section_full_cta_background_color' => esc_html__( 'Section full CTA (background)', 'lsx-customizer' ),
82
	'body_section_full_cta_text_color'       => esc_html__( 'Section full CTA (text)', 'lsx-customizer' ),
83
	'body_section_full_cta_link_color'       => esc_html__( 'Section full CTA (link)', 'lsx-customizer' ),
84
	'body_section_full_cta_link_hover_color' => esc_html__( 'Section full CTA (link hover)', 'lsx-customizer' ),
85
86
	'footer_cta_background_color' => esc_html__( 'Background', 'lsx-customizer' ),
87
	'footer_cta_text_color'       => esc_html__( 'Text', 'lsx-customizer' ),
88
	'footer_cta_link_color'       => esc_html__( 'Link', 'lsx-customizer' ),
89
	'footer_cta_link_hover_color' => esc_html__( 'Link (hover)', 'lsx-customizer' ),
90
91
	'footer_widgets_background_color' => esc_html__( 'Background', 'lsx-customizer' ),
92
	'footer_widgets_text_color'       => esc_html__( 'Text', 'lsx-customizer' ),
93
	'footer_widgets_link_color'       => esc_html__( 'Link', 'lsx-customizer' ),
94
	'footer_widgets_link_hover_color' => esc_html__( 'Link (hover)', 'lsx-customizer' ),
95
96
	'footer_background_color' => esc_html__( 'Background', 'lsx-customizer' ),
97
	'footer_text_color'       => esc_html__( 'Text', 'lsx-customizer' ),
98
	'footer_link_color'       => esc_html__( 'Link', 'lsx-customizer' ),
99
	'footer_link_hover_color' => esc_html__( 'Link (hover)', 'lsx-customizer' ),
100
) );
101
102
$customizer_colour_choices = apply_filters( 'lsx_customizer_colour_choices', array(
103
	'default' => array(
104
		'label'  => __( 'Default', 'lsx-customizer' ),
105
		'colors' => apply_filters( 'lsx_customizer_colour_choices_default', array(
106
			'button_background_color'       => '#418AD0',
107
			'button_background_hover_color' => '#367DC0',
108
			'button_text_color'             => '#FFFFFF',
109
			'button_text_color_hover'       => '#FFFFFF',
110
			'button_shadow'                 => '#27639E',
111
112
			'button_cta_background_color'       => '#F7AE00',
113
			'button_cta_background_hover_color' => '#EDA700',
114
			'button_cta_text_color'             => '#FFFFFF',
115
			'button_cta_text_color_hover'       => '#FFFFFF',
116
			'button_cta_shadow'                 => '#AB7800',
117
118
			'button_secondary_background_color'       => '#EAEAEA',
119
			'button_secondary_background_hover_color' => '#CCCCCC',
120
			'button_secondary_text_color'             => '#4A4A4A',
121
			'button_secondary_text_color_hover'       => '#4A4A4A',
122
			'button_secondary_shadow'                 => '#C4C4C4',
123
124
			'button_tertiary_background_color'       => '#6BA913',
125
			'button_tertiary_background_hover_color' => '#649E12',
126
			'button_tertiary_text_color'             => '#FFFFFF',
127
			'button_tertiary_text_color_hover'       => '#FFFFFF',
128
			'button_tertiary_shadow'                 => '#3F640B',
129
130
			'top_menu_background_color'          => '#333333',
131
			'top_menu_link_color'                => '#FFFFFF',
132
			'top_menu_link_hover_color'          => '#D93A3A',
133
			'top_menu_icon_color'                => '#D93A3A',
134
			'top_menu_icon_hover_color'          => '#D93A3A',
135
			'top_menu_dropdown_color'            => '#333333',
136
			'top_menu_dropdown_hover_color'      => '#333333',
137
			'top_menu_dropdown_link_color'       => '#FFFFFF',
138
			'top_menu_dropdown_link_hover_color' => '#D93A3A',
139
140
			'header_background_color'  => '#FFFFFF',
141
			'header_link_color'        => '#D84E2E',
142
			'header_link_hover_color'  => '#F7AE00',
143
			'header_description_color' => '#434343',
144
145
			'main_menu_background_color'                => '#FFFFFF',
146
			'main_menu_link_color'                      => '#515151',
147
			'main_menu_link_hover_color'                => '#418AD0',
148
			'main_menu_dropdown_background_color'       => '#374750',
149
			'main_menu_dropdown_background_hover_color' => '#2B3840',
150
			'main_menu_dropdown_link_color'             => '#FFFFFF',
151
			'main_menu_dropdown_link_hover_color'       => '#418AD0',
152
153
			'banner_background_color'               => '#2B3840',
154
			'banner_text_color'                     => '#FFFFFF',
155
			'banner_text_image_color'               => '#FFFFFF',
156
			'banner_breadcrumb_background_color'    => '#374750',
157
			'banner_breadcrumb_text_color'          => '#919191',
158
			'banner_breadcrumb_text_selected_color' => '#FFFFFF',
159
160
			'background_color'                       => '#F6F6F6',
161
			'body_line_color'                        => '#DADDDF',
162
			'body_text_heading_color'                => '#4A4A4A',
163
			'body_text_small_color'                  => '#919191',
164
			'body_text_color'                        => '#4A4A4A',
165
			'body_link_color'                        => '#418AD0',
166
			'body_link_hover_color'                  => '#F7AE00',
167
			'body_section_full_background_color'     => '#FFFFFF',
168
			'body_section_full_text_color'           => '#4A4A4A',
169
			'body_section_full_link_color'           => '#418AD0',
170
			'body_section_full_link_hover_color'     => '#F7AE00',
171
			'body_section_full_cta_background_color' => '#418AD0',
172
			'body_section_full_cta_text_color'       => '#FFFFFF',
173
			'body_section_full_cta_link_color'       => '#374750',
174
			'body_section_full_cta_link_hover_color' => '#F7AE00',
175
176
			'footer_cta_background_color' => '#2B3840',
177
			'footer_cta_text_color'       => '#FFFFFF',
178
			'footer_cta_link_color'       => '#418AD0',
179
			'footer_cta_link_hover_color' => '#367DC0',
180
181
			'footer_widgets_background_color' => '#374750',
182
			'footer_widgets_text_color'       => '#FFFFFF',
183
			'footer_widgets_link_color'       => '#FFFFFF',
184
			'footer_widgets_link_hover_color' => '#F7AE00',
185
186
			'footer_background_color' => '#2B3840',
187
			'footer_text_color'       => '#ffffff',
188
			'footer_link_color'       => '#F7AE00',
189
			'footer_link_hover_color' => '#CE9100',
190
		) ),
191
	),
192
	// 'red' => array(
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
193
	// 	'label'  => __( 'Red', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
194
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_red', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
195
	// 		'button_background_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
196
	// 		'button_background_hover_color' => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
197
	// 		'button_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
198
	// 		'button_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
199
	// 		'button_shadow'                 => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
200
201
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
202
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
203
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
204
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
205
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
206
207
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
208
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
209
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
210
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
211
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
212
213
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
214
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
215
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
216
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
217
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
218
219
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
220
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
221
	// 		'top_menu_link_hover_color'          => '#eaa520',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
222
	// 		'top_menu_icon_color'                => '#eaa520',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
223
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
224
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
225
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
226
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
227
	// 		'top_menu_dropdown_link_hover_color' => '#eaa520',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
228
229
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
230
	// 		'header_link_color'        => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
231
	// 		'header_link_hover_color'  => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
232
	// 		'header_description_color' => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
233
234
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
235
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
236
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
237
	// 		'main_menu_dropdown_background_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
238
	// 		'main_menu_dropdown_background_hover_color' => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
239
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
240
	// 		'main_menu_dropdown_link_hover_color'       => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
241
242
	// 		'banner_background_color'               => '#87291c',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
243
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
244
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
245
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
246
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
247
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
248
249
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
250
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
251
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
252
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
253
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
254
	// 		'body_link_color'                        => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
255
	// 		'body_link_hover_color'                  => '#87291c',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
256
	// 		'body_section_full_background_color'     => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
257
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
258
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
259
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
260
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
261
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
262
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
263
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
264
265
	// 		'footer_cta_background_color' => '#b64d3f',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
266
	// 		'footer_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
267
	// 		'footer_cta_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
268
	// 		'footer_cta_link_hover_color' => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
269
270
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
271
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
272
	// 		'footer_widgets_link_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
273
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
274
275
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
276
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
277
	// 		'footer_link_color'       => '#b64d3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
278
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
279
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
280
	// ),
281
	// 'orange' => array(
282
	// 	'label'  => __( 'Orange', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
283
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_orange', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
284
	// 		'button_background_color'       => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
285
	// 		'button_background_hover_color' => '#e49435',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
286
	// 		'button_text_color'             => '#260e03',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
287
	// 		'button_text_color_hover'       => '#260e03',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
288
	// 		'button_shadow'                 => '#e49435',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
289
290
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
291
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
292
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
293
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
294
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
295
296
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
297
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
298
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
299
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
300
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
301
302
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
303
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
304
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
305
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
306
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
307
308
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
309
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
310
	// 		'top_menu_link_hover_color'          => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
311
	// 		'top_menu_icon_color'                => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
312
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
313
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
314
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
315
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
316
	// 		'top_menu_dropdown_link_hover_color' => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
317
318
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
319
	// 		'header_link_color'        => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
320
	// 		'header_link_hover_color'  => '#cc4800',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
321
	// 		'header_description_color' => '#777777',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
322
323
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
324
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
325
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
326
	// 		'main_menu_dropdown_background_color'       => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
327
	// 		'main_menu_dropdown_background_hover_color' => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
328
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
329
	// 		'main_menu_dropdown_link_hover_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
330
331
	// 		'banner_background_color'               => '#e49435',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
332
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
333
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
334
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
335
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
336
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
337
338
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
339
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
340
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
341
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
342
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
343
	// 		'body_link_color'                        => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
344
	// 		'body_link_hover_color'                  => '#cc4800',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
345
	// 		'body_section_full_background_color'     => '#fbaf3f',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
346
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
347
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
348
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
349
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
350
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
351
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
352
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
353
354
	// 		'footer_cta_background_color' => '#fbaf3f',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
355
	// 		'footer_cta_text_color'       => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
356
	// 		'footer_cta_link_color'       => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
357
	// 		'footer_cta_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
358
359
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
360
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
361
	// 		'footer_widgets_link_color'       => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
362
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
363
364
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
365
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
366
	// 		'footer_link_color'       => '#e4701e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
367
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
368
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
369
	// ),
370
	// 'green' => array(
371
	// 	'label'  => __( 'Green', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
372
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_green', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
373
	// 		'button_background_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
374
	// 		'button_background_hover_color' => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
375
	// 		'button_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
376
	// 		'button_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
377
	// 		'button_shadow'                 => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
378
379
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
380
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
381
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
382
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
383
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
384
385
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
386
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
387
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
388
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
389
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
390
391
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
392
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
393
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
394
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
395
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
396
397
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
398
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
399
	// 		'top_menu_link_hover_color'          => '#a5a370',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
400
	// 		'top_menu_icon_color'                => '#a5a370',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
401
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
402
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
403
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
404
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
405
	// 		'top_menu_dropdown_link_hover_color' => '#a5a370',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
406
407
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
408
	// 		'header_link_color'        => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
409
	// 		'header_link_hover_color'  => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
410
	// 		'header_description_color' => '#777777',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
411
412
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
413
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
414
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
415
	// 		'main_menu_dropdown_background_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
416
	// 		'main_menu_dropdown_background_hover_color' => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
417
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
418
	// 		'main_menu_dropdown_link_hover_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
419
420
	// 		'banner_background_color'               => '#3d4a30',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
421
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
422
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
423
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
424
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
425
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
426
427
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
428
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
429
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
430
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
431
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
432
	// 		'body_link_color'                        => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
433
	// 		'body_link_hover_color'                  => '#3d4a30',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
434
	// 		'body_section_full_background_color'     => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
435
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
436
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
437
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
438
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
439
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
440
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
441
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
442
443
	// 		'footer_cta_background_color' => '#596b46',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
444
	// 		'footer_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
445
	// 		'footer_cta_link_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
446
	// 		'footer_cta_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
447
448
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
449
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
450
	// 		'footer_widgets_link_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
451
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
452
453
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
454
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
455
	// 		'footer_link_color'       => '#596b46',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
456
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
457
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
458
	// ),
459
	// 'brown' => array(
460
	// 	'label'  => __( 'Brown', 'lsx-customizer' ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
461
	// 	'colors' => apply_filters( 'lsx_customizer_colour_choices_brown', array(
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
462
	// 		'button_background_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
463
	// 		'button_background_hover_color' => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
464
	// 		'button_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
465
	// 		'button_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
466
	// 		'button_shadow'                 => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
467
468
	// 		'button_cta_background_color'       => '#f7941d',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
469
	// 		'button_cta_background_hover_color' => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
470
	// 		'button_cta_text_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
471
	// 		'button_cta_text_color_hover'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
472
	// 		'button_cta_shadow'                 => '#f7741d',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
473
474
	// 		'button_secondary_background_color'       => '#EAEAEA',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
475
	// 		'button_secondary_background_hover_color' => '#CCCCCC',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
476
	// 		'button_secondary_text_color'             => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
477
	// 		'button_secondary_text_color_hover'       => '#4A4A4A',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
478
	// 		'button_secondary_shadow'                 => '#C4C4C4',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
479
480
	// 		'button_tertiary_background_color'       => '#6BA913',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
481
	// 		'button_tertiary_background_hover_color' => '#649E12',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
482
	// 		'button_tertiary_text_color'             => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
483
	// 		'button_tertiary_text_color_hover'       => '#FFFFFF',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
484
	// 		'button_tertiary_shadow'                 => '#3F640B',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
485
486
	// 		'top_menu_background_color'          => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
487
	// 		'top_menu_link_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
488
	// 		'top_menu_link_hover_color'          => '#dfad55',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
489
	// 		'top_menu_icon_color'                => '#dfad55',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
490
	// 		'top_menu_icon_hover_color'          => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
491
	// 		'top_menu_dropdown_color'            => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
492
	// 		'top_menu_dropdown_hover_color'      => '#444444',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
493
	// 		'top_menu_dropdown_link_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
494
	// 		'top_menu_dropdown_link_hover_color' => '#dfad55',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
495
496
	// 		'header_background_color'  => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
497
	// 		'header_link_color'        => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
498
	// 		'header_link_hover_color'  => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
499
	// 		'header_description_color' => '#777777',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
500
501
	// 		'main_menu_background_color'                => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
52% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
502
	// 		'main_menu_link_color'                      => '#555555',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
503
	// 		'main_menu_link_hover_color'                => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
504
	// 		'main_menu_dropdown_background_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
505
	// 		'main_menu_dropdown_background_hover_color' => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
506
	// 		'main_menu_dropdown_link_color'             => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
507
	// 		'main_menu_dropdown_link_hover_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
508
509
	// 		'banner_background_color'               => '#5b452e',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
510
	// 		'banner_text_color'                     => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
511
	// 		'banner_text_image_color'               => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
512
	// 		'banner_breadcrumb_background_color'    => '#374750',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
513
	// 		'banner_breadcrumb_text_color'          => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
514
	// 		'banner_breadcrumb_text_selected_color' => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
515
516
	// 		'background_color'                       => '#ffffff',
0 ignored issues
show
Unused Code Comprehensibility introduced by
51% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
517
	// 		'body_line_color'                        => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
518
	// 		'body_text_heading_color'                => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
519
	// 		'body_text_small_color'                  => '#919191',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
520
	// 		'body_text_color'                        => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
521
	// 		'body_link_color'                        => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
522
	// 		'body_link_hover_color'                  => '#5b452e',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
523
	// 		'body_section_full_background_color'     => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
524
	// 		'body_section_full_text_color'           => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
525
	// 		'body_section_full_link_color'           => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
526
	// 		'body_section_full_link_hover_color'     => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
527
	// 		'body_section_full_cta_background_color' => '#333333',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
528
	// 		'body_section_full_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
529
	// 		'body_section_full_cta_link_color'       => '#eeeeee',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
530
	// 		'body_section_full_cta_link_hover_color' => '#dddddd',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
531
532
	// 		'footer_cta_background_color' => '#8c6a45',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
533
	// 		'footer_cta_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
534
	// 		'footer_cta_link_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
535
	// 		'footer_cta_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
536
537
	// 		'footer_widgets_background_color' => '#333333',
0 ignored issues
show
Unused Code Comprehensibility introduced by
54% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
538
	// 		'footer_widgets_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
539
	// 		'footer_widgets_link_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
540
	// 		'footer_widgets_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
541
542
	// 		'footer_background_color' => '#232222',
0 ignored issues
show
Unused Code Comprehensibility introduced by
53% of this comment could be valid code. Did you maybe forget this after debugging?

Sometimes obsolete code just ends up commented out instead of removed. In this case it is better to remove the code once you have checked you do not need it.

The code might also have been commented out for debugging purposes. In this case it is vital that someone uncomments it again or your project may behave in very unexpected ways in production.

This check looks for comments that seem to be mostly valid code and reports them.

Loading history...
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
543
	// 		'footer_text_color'       => '#ffffff',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
544
	// 		'footer_link_color'       => '#8c6a45',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
545
	// 		'footer_link_hover_color' => '#969696',
0 ignored issues
show
Expected 1 space before comment text but found 6; use block comment if you need indentation
Loading history...
546
	// 	) ),
0 ignored issues
show
Expected 1 space before comment text but found 2; use block comment if you need indentation
Loading history...
547
	// ),
548
) );
549