1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
|
<?php ! defined( 'ABSPATH' ) && exit(); ?><customizer-tabs> <customizer-tab target="primary"><?php _e( 'Primary', 'totalpoll' ); ?></customizer-tab> <customizer-tab target="secondary"><?php _e( 'Secondary', 'totalpoll' ); ?></customizer-tab> <customizer-tab target="accent"><?php _e( 'Accent', 'totalpoll' ); ?></customizer-tab> <customizer-tab target="gray"><?php _e( 'Gray', 'totalpoll' ); ?></customizer-tab> <customizer-tab target="dark"><?php _e( 'Dark', 'totalpoll' ); ?></customizer-tab> </customizer-tabs>
<customizer-tab-content name="primary"> <customizer-control type="color" label="<?php esc_attr_e( 'Primary', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.primary"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Primary (Contrast)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.primaryContrast"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Primary (Light)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.primaryLight"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Primary (Lighter)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.primaryLighter"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Primary (Dark)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.primaryDark"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Primary (Darker)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.primaryDarker"></customizer-control> </customizer-tab-content>
<customizer-tab-content name="secondary"> <customizer-control type="color" label="<?php esc_attr_e( 'Secondary', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.secondary"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Secondary (Contrast)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.secondaryContrast"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Secondary (Light)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.secondaryLight"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Secondary (Lighter)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.secondaryLighter"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Secondary (Dark)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.secondaryDark"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Secondary (Darker)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.secondaryDarker"></customizer-control> </customizer-tab-content>
<customizer-tab-content name="accent"> <customizer-control type="color" label="<?php esc_attr_e( 'Accent', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.accent"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Accent (Contrast)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.accentContrast"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Accent (Light)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.accentLight"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Accent (Lighter)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.accentLighter"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Accent (Dark)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.accentDark"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Accent (Darker)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.accentDarker"></customizer-control> </customizer-tab-content>
<customizer-tab-content name="gray"> <customizer-control type="color" label="<?php esc_attr_e( 'Gray', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.gray"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Gray (Contrast)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.grayContrast"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Gray (Light)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.grayLight"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Gray (Lighter)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.grayLighter"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Gray (Dark)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.grayDark"></customizer-control> <customizer-control type="color" label="<?php esc_attr_e( 'Gray (Darker)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.grayDarker"></customizer-control> </customizer-tab-content>
<customizer-tab-content name="dark"> <customizer-control type="color" label="<?php esc_attr_e( 'Dark (Body Text)', 'totalpoll' ); ?>" ng-model="$ctrl.settings.colors.dark"></customizer-control> </customizer-tab-content>
|