-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy paththeme.yaml
3838 lines (3742 loc) · 137 KB
/
theme.yaml
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
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
name: 'BFF WCMS'
description: 'Big F****ing Framework'
author: 'OG'
homepage: ''
code: '1'
require:
- "winter.wn-translate-plugin"
## Configuration
form:
fields:
site_name:
label: Style Properties
type: section
tabs:
fields:
# General
# Contains besic details about the brand
section_general:
label: themes.bff-wcms::lang.options.general_section
comment: themes.bff-wcms::lang.options.general_description
tab: themes.bff-wcms::lang.options.general_tab
type: section
website_name:
label: themes.bff-wcms::lang.options.website_name
commentAbove: themes.bff-wcms::lang.options.website_name_desc
default: Website
type: text
tab: themes.bff-wcms::lang.options.general_tab
span: storm
cssClass: col-lg-12
website_fb:
label: Facebook
commentAbove: themes.bff-wcms::lang.options.website_facebook_desc
default: Facebook
type: text
tab: themes.bff-wcms::lang.options.general_tab
span: storm
cssClass: col-sm-12 col-md-4 col-lg-3
website_twitter:
label: Twitter
commentAbove: themes.bff-wcms::lang.options.website_twitter_desc
default: Twitter
type: text
tab: themes.bff-wcms::lang.options.general_tab
span: storm
cssClass: col-sm-12 col-md-4 col-lg-3
website_ig:
label: Instagram
commentAbove: themes.bff-wcms::lang.options.website_instagram_desc
default: Instagram
type: text
tab: themes.bff-wcms::lang.options.general_tab
span: storm
cssClass: col-sm-12 col-md-4 col-lg-3
website_yt:
label: Youtube
commentAbove: themes.bff-wcms::lang.options.website_youtube_desc
default: Youtube
type: text
tab: themes.bff-wcms::lang.options.general_tab
span: storm
cssClass: col-sm-12 col-md-4 col-lg-3
# Color Section
section_color_branding:
label: themes.bff-wcms::lang.options.color_branding_tab
comment: themes.bff-wcms::lang.options.color_branding_tab_desc
tab: themes.bff-wcms::lang.options.color_branding_tab
type: section
primary_color:
label: themes.bff-wcms::lang.options.primary_color
commentAbove: themes.bff-wcms::lang.options.primary_color_desc
commentHtml: true
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-12 col-md-3
availableColors: []
showAlpha: true
default: '#3498db'
allowEmpty: true
assetVar: theme_primary_color
secondary_color:
label: Secondary Color
commentAbove: Defines the color that will be displayed the most frequently to contrast with your primary color</br></br>ℹ️ <span style="color:#007ADE">Shades will be automatically generated for this variable. </br>You can access them with $brand-secondary-(50 to 900, with a step of 100)</span>
commentHtml: true
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-12 col-md-3
availableColors: []
default: '#34495e'
allowEmpty: true
assetVar: theme_secondary_color
accent_color:
label: Accent Color
commentAbove: Defines the color that will be used the most frequently to give emphasis to certain elements (buttons, important elements etc...)</br></br>ℹ️ <span style="color:#007ADE">Shades will be automatically generated for this variable. </br>You can access them with $brand-accent-(50 to 900, with a step of 100)</span>
commentHtml: true
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-12 col-md-3
availableColors: []
default: '#e74c3c'
allowEmpty: true
assetVar: theme_accent_color
neutral_color:
label: Neutral Color
commentAbove: Defines the color that will be used the most frequently to color the text throughout your website</br></br>ℹ️ <span style="color:#007ADE">Shades will be automatically generated for this variable. </br>You can access them with $brand-neutral-(50 to 900, with a step of 100)</span>
commentHtml: true
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-12 col-md-3
availableColors: []
default: '#444444'
allowEmpty: true
assetVar: theme_neutral_color
branding_color_spacer:
tab: themes.bff-wcms::lang.options.color_branding_tab
type: section
primary_color_shade_1:
label: 'Primary Color - Shade #1'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
default: '#2980b9'
allowEmpty: true
assetVar: theme_primary_color_shade_1
secondary_color_shade_1:
label: 'Secondary Color - Shade #1'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
default: '#2c3e50'
allowEmpty: true
assetVar: theme_secondary_color_shade_1
accent_color_shade_1:
label: 'Accent Color - Shade #1'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
default: '#c0392b'
allowEmpty: true
assetVar: theme_accent_color_shade_1
neutral_color_shade_1:
label: 'Neutral Color - Shade #1'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
default: '#333333'
allowEmpty: true
assetVar: theme_neutral_color_shade_1
primary_color_shade_2:
label: 'Primary Color - Shade #2'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_primary_color_shade_2
secondary_color_shade_2:
label: 'Secondary Color - Shade #2'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_secondary_color_shade_2
accent_color_shade_2:
label: 'Accent Color - Shade #2'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_accent_color_shade_2
neutral_color_shade_2:
label: 'Neutral Color - Shade #2'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_neutral_color_shade_2
primary_color_shade_3:
label: 'Primary Color - Shade #3'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_primary_color_shade_3
secondary_color_shade_3:
label: 'Secondary Color - Shade #3'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_secondary_color_shade_3
accent_color_shade_3:
label: 'Accent Color - Shade #3'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_accent_color_shade_3
neutral_color_shade_3:
label: 'Neutral Color - Shade #3'
commentAbove:
type: colorpicker
tab: themes.bff-wcms::lang.options.color_branding_tab
span: storm
cssClass: col-xs-6 col-md-3
availableColors: []
allowEmpty: true
assetVar: theme_neutral_color_shade_3
#
section_colors:
label: Color Palette
comment: Defines the colors that will be used throughout your website.
tab: Color Palette
type: section
text_subsection:
label: Basic Text
tab: Color Palette
type: section
text_color:
label: Text Color
commentAbove: "Variable name is theme_text_color. Default value is #444444"
assetVar: theme_text_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#444444'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
muted_color:
label: Muted Color
commentAbove: "Variable name is theme_muted_color. Default value is #7F8FA6"
assetVar: theme_muted_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#7F8FA6'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
dimmed_color:
label: Dimmed Color
commentAbove: "Variable name is theme_dimmed_color. Default value is #abb3bf"
assetVar: theme_dimmed_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#abb3bf'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
text_spacer:
tab: Color Palette
type: section
secondary_text_color:
label: Secondary Text Color
commentAbove: "Variable name is theme_secondary_text_color. Default value is #353B48"
assetVar: theme_secondary_text_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#353B48'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-6
text_color_light:
label: Text Color Light
commentAbove: "Variable name is theme_text_color_light. Default value is #DCDDE1"
assetVar: theme_text_color_light
type: colorpicker
availableColors: []
allowEmpty: true
default: '#DCDDE1'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-6
link_section:
label: Links
type: section
tab: Color Palette
link_color:
label: Link Color
commentAbove: "Variable name is theme_link_color. Default value is #2F3640. </br>The :hover color will be automatically generated. This can be modified in the theme variables."
commentHtml: true
assetVar: theme_link_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#2F3640'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
link_color_active:
label: Link Color Active
commentAbove: "Variable name is theme_link_color_active. Default value is #C00C00"
commentHtml: true
assetVar: theme_link_color_active
type: colorpicker
availableColors: []
allowEmpty: true
default: '#C00C00'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
link_color_visited:
label: Link Color Visited
commentAbove: "Variable name is theme_link_color_visited. Default value is #551A8B"
commentHtml: true
assetVar: theme_link_color_visited
type: colorpicker
availableColors: []
allowEmpty: true
default: '#551A8B'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
section_layout_color:
label: Layout Colors
tab: Color Palette
type: section
page_background:
label: Page Background
commentAbove: Variable name is theme_page_background
assetVar: theme_page_background
type: colorpicker
availableColors: []
allowEmpty: true
default: '#FFFFFF'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-4
important_section:
label: Important
type: section
tab: Color Palette
important_color:
label: Important Text Color
commentAbove: "Variable name is theme_important_color. Default value is #00A8FF"
assetVar: theme_important_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#00A8FF'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
important_background_color:
label: Important Background Color
commentAbove: "Variable name is theme_important_background_color. Default value is #00A8FF"
assetVar: theme_important_background_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#99ddff'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
success_section:
label: Success
type: section
tab: Color Palette
success_color:
label: Success Text Color
commentAbove: "Variable name is theme_success_color. Default value is #44BD32"
assetVar: theme_success_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#44BD32'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
success_background_color:
label: Success background_Color
commentAbove: "Variable name is theme_success_background_color. Default value is #44BD32"
assetVar: theme_success_background_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#c8efc3'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
info_section:
label: Info
type: section
tab: Color Palette
info_color:
label: Info Text Color
commentAbove: "Variable name is theme_info_color. Default value is #9C88FF"
assetVar: theme_info_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#9C88FF'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
info_background_color:
label: Info Background Color
commentAbove: "Variable name is theme_info_background_color. Default value is #9C88FF"
assetVar: theme_info_background_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#d0c7ff'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
warning_section:
label: Warning
type: section
tab: Color Palette
warning_color:
label: Warning Text Color
commentAbove: "Variable name is theme_warning_color. Default value is #FBC531"
assetVar: theme_warning_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#FBC531'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
warning_background_color:
label: Warning Background Color
commentAbove: "Variable name is theme_warning_background_color. Default value is #FBC531"
assetVar: theme_warning_background_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#fcf6e7'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
danger_section:
label: Danger
type: section
tab: Color Palette
danger_color:
label: Danger Text Color
commentAbove: "Variable name is theme_danger_color. Default value is #E84118"
assetVar: theme_danger_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#E84118'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
danger_background_color:
label: Danger Background Color
commentAbove: "Variable name is theme_danger_background_color. Default value is #E84118"
assetVar: theme_danger_background_color
type: colorpicker
availableColors: []
allowEmpty: true
default: '#f8c2b5'
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
section_button:
label: Basic Buttons
type: section
tab: Buttons
comment: Defines the global styles your buttons will have throughout your website
button_activated:
label: Activates the Buttons
commentAbove: Enabling this will make your buttons use the following rules
tab: Buttons
type: switch
default: 0
assetVar: theme_button_activated
button_text_color:
label: Color
commentAbove: Choose a color
assetVar: theme_button_text_color
type: colorpicker
span: storm
cssClass: col-sm-2
allowEmpty: true
availableColors: []
tab: Buttons
button_primary_background:
label: Primary
commentAbove: Background
assetVar: theme_button_primary_background
type: colorpicker
span: storm
cssClass: col-sm-1
allowEmpty: true
availableColors: []
tab: Buttons
button_secondary_background:
label: Secondary
commentAbove: Background
assetVar: theme_button_secondary_background
type: colorpicker
span: storm
cssClass: col-sm-1
allowEmpty: true
availableColors: []
tab: Buttons
button_border_width:
label: Border Width
commentAbove: Define a length
assetVar: theme_button_border_width
type: number
span: storm
cssClass: col-sm-2
tab: Buttons
buttons_border_width_unit:
label: Unit
commentAbove: Pick a unit
assetVar: theme_button_border_width_unit
type: dropdown
span: storm
cssClass: col-sm-1
options:
px: px
em: em
rem: rem
%: %
default: px
tab: Buttons
button_border_style:
label: Border Style
commentAbove: Pick a border style
assetVar: theme_button_border_style
type: dropdown
options:
none: None
hidden: Hidden
dotted: Dotted
dashed: Dashed
solid: Solid
double: Double
groove: Groove
ridge: Ridge
inset: Inset
outset: Outset
default: none
span: storm
cssClass: col-sm-3
tab: Buttons
button_border_color:
label: Border Color
commentAbove: Border Color
assetVar: theme_button_border_color
type: colorpicker
span: storm
cssClass: col-sm-1
allowEmpty: true
availableColors: []
tab: Buttons
button_secondary_border_color:
label: Secondary
commentAbove: Border Color
assetVar: theme_button_secondary_border_color
type: colorpicker
span: storm
cssClass: col-sm-1
allowEmpty: true
availableColors: []
tab: Buttons
buttons_spacer_1:
type: section
tab: Buttons
button_padding_top:
label: Padding Top
commentAbove: Choose a length
assetVar: theme_button_padding_top
type: number
span: storm
cssClass: col-sm-2 col-md-2
tab: Buttons
button_padding_top_unit:
label: Unit
commentAbove: Pick a unit
assetVar: theme_button_padding_top_unit
type: dropdown
options:
px: px
em: em
rem: rem
%: %
default: px
span: storm
cssClass: col-sm-1 col-md-1
tab: Buttons
button_padding_right:
label: Padding Right
commentAbove: Choose a length
assetVar: theme_button_padding_right
type: number
span: storm
cssClass: col-sm-2 col-md-2
tab: Buttons
button_padding_right_unit:
label: Unit
commentAbove: Pick a unit
assetVar: theme_button_padding_right_unit
type: dropdown
options:
px: px
em: em
rem: rem
%: %
default: px
span: storm
cssClass: col-sm-1 col-md-1
tab: Buttons
button_padding_bottom:
label: Padding Bottom
commentAbove: Choose a length
assetVar: theme_button_padding_bottom
type: number
span: storm
cssClass: col-sm-2 col-md-2
tab: Buttons
button_padding_bottom_unit:
label: Unit
commentAbove: Pick a unit
assetVar: theme_button_padding_bottom_unit
type: dropdown
options:
px: px
em: em
rem: rem
%: %
default: px
span: storm
cssClass: col-sm-1 col-md-1
tab: Buttons
button_padding_left:
label: Padding Left
commentAbove: Choose a length
assetVar: theme_button_padding_left
type: number
span: storm
cssClass: col-sm-2 col-md-2
tab: Buttons
button_padding_left_unit:
label: Unit
commentAbove: Pick a unit
assetVar: theme_button_padding_left_unit
type: dropdown
options:
px: px
em: em
rem: rem
%: %
default: px
span: storm
cssClass: col-sm-1 col-md-1
tab: Buttons
buttons_spacer_2:
label: Call to Action Buttons (CTA)
type: section
tab: Buttons
cta_button_activated:
label: Activate
commentAbove: Enabling this will make your CTA buttons use the following rules
assetVar: theme_cta_button_activated
type: switch
default: 0
tab: Buttons
cta_button_text_color:
label: Color
commentAbove: Choose a color
assetVar: theme_cta_button_text_color
type: colorpicker
span: storm
cssClass: col-sm-2
allowEmpty: true
availableColors: []
tab: Buttons
cta_button_background:
label: Background
commentAbove: Choose a background
assetVar: theme_cta_button_background
type: colorpicker
span: storm
cssClass: col-sm-2
allowEmpty: true
availableColors: []
tab: Buttons
cta_button_border_width:
label: Border Width
commentAbove: Define a length
assetVar: theme_cta_button_border_width
type: number
span: storm
cssClass: col-sm-2
tab: Buttons
cta_button_border_width_unit:
label: Unit
commentAbove: Pick a unit
assetVar: theme_cta_button_border_width_unit
type: dropdown
span: storm
cssClass: col-sm-1
options:
px: px
em: em
rem: rem
%: %
default: px
tab: Buttons
cta_button_border_style:
label: Border Style
commentAbove: Choose a style
assetVar: theme_cta_button_border_style
type: dropdown
options:
none: None
hidden: Hidden
dotted: Dotted
dashed: Dashed
solid: Solid
double: Double
groove: Groove
ridge: Ridge
inset: Inset
outset: Outset
default: none
span: storm
cssClass: col-sm-3
allowEmpty: true
availableColors: []
tab: Buttons
cta_button_border_color:
label: Call to Action - Border Color
commentAbove: Pick a color
assetVar: theme_cta_button_border_color
type: colorpicker
span: storm
cssClass: col-sm-2
allowEmpty: true
availableColors: []
tab: Buttons
section_input:
label: Input Section
commentAbove: Defines the global styles your inputs will use. WIP
type: section
tab: Inputs
input_text_color:
label: Input Text Color
commentAbove:
assetVar: theme_input_text_color
type: colorpicker
span: storm
cssClass: col-xs-6 col-md-4 col-lg-3
allowEmpty: true
availableColors: []
tab: Inputs
input_text_background:
label: Input Text Background
commentAbove:
assetVar: theme_input_text_background
type: colorpicker
span: storm
cssClass: col-xs-6 col-md-4 col-lg-3
allowEmpty: true
availableColors: []
tab: Inputs
input_focused_background:
label: Input Focused Background
commentAbove:
assetVar: theme_input_focused_background
type: colorpicker
span: storm
cssClass: col-xs-6 col-md-4 col-lg-3
allowEmpty: true
availableColors: []
tab: Inputs
# misc_section:
section_color_misc:
label: Misc Settings
comment: Contains various other settings
tab: Color Palette
type: section
text_selection_color:
label: Text Selection Color
commentAbove: "Variable name is theme_text_selection_color. Default value is #FFFFFF"
type: colorpicker
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
availableColors: []
default: '#FFFFFF'
allowEmpty: true
assetVar: theme_text_selection_color
text_selection_background:
label: Text Selection Background
commentAbove: "Variable name is theme_text_selection_background. Default value is #468EFE"
type: colorpicker
tab: Color Palette
span: storm
cssClass: col-sm-6 col-md-3
availableColors: []
default: '#468EFE'
allowEmpty: true
assetVar: theme_text_selection_background
chrome_tab_background:
label: Theme Color
commentAbove: todo
type: colorpicker
tab: Color Palette
span: storm
cssClass: col-sm-6
availanleColors: []
default: '#FF0000'
allowEmpty: true
# Layout
section_layout:
label: Layout Settings
comment: Contains settings to manage the basic layout of your website
tab: Page - Layout
type: section
span: storm
cssClass: col-lg-12
layout_type:
label: Type of Layout
comment: Choose which type of layout you want your website to use:<ul><li class="help-block"style="display:list-item;margin-top:15px"><b>Default</b> extends the Navigation and Footer from and to the edge of the page, while encasing the rest of your page elements inside a container of fixed width</li><li class="help-block"style="display:list-item"><b>Fixed Width</b> encases all your entire website inside a container of fixed width</li><li class="help-block"style="display:list-item"><b>Full Width</b> extends your entire website from and to the edge of the page.</li><li class="help-block"style="display:list-item"><b>Custom Layout</b> allows you to set the width for your navigation, your footer and the rest of your website independantly</li></ul>
commentHtml: true
tab: Page - Layout
type: dropdown
span: storm
cssClass: col-sm-5
options:
fixed_Width: Fixed Width
full_Width: Full Width
default: Default
custom: Custom Layout
default: default
assetVar: theme_layout_type
layout_gap:
label: Gap between the Navigation, the Content and the Footer
comment: Choose a length
tab: Page - Layout
type: number
default: 2
span: storm
cssClass: col-sm-2
assetVar: theme_layout_gap
layout_gap_unit:
label: Unit
comment: Choose a unit
tab: Page - Layout
type: dropdown
span: storm
cssClass: col-sm-1
options:
px: px
em: em
rem: rem
%: %
default: em
assetVar: theme_layout_gap_unit
layout_type_max-page-width:
label: Max Page Width (in pixels)
comment: This setting will be applied to these following options:<ul><li class="help-block"style="display:list-item;margin-top:15px"><b>Default</b> and <b>Custom</b> - For the container in which the rest of your website is</li><li class="help-block"style="display:list-item"><b>Fixed Width</b> - For your entire page</li></ul>
commentHtml: true
tab: Page - Layout
type: number
default: 1180
span: storm
cssClass: col-sm-3
assetVar: theme_page_width
layout_type_max-page-width_unit:
label: Unit
comment: Choose a unit
tab: Page - Layout
type: dropdown
span: storm
cssClass: col-sm-1
options:
px: px
em: em
rem: rem
%: %
default: px
assetVar: theme_page_width_unit
# Custom Options
section_custom_options:
label: "Additional Options : Custom Layout"
comment: <b class="text-danger">Will be ignored if you didn't pick Custom to Layout Settings > Type of Layout</b>
commentHtml: true
tab: Page - Layout
type: section
custom_nav_type:
label: Navigation Bar Layout
commentAbove: Choose which type you want your navigation bar to be on your website. Will be ignored if you picked "Default" or "Full Width" to Layout Settings > Type of Layout
tab: Page - Layout
type: dropdown
span: storm
cssClass: col-lg-8
options:
fixed_width: Fixed Width
full_width: Full Width
default: full_width
assetVar: theme_custom_nav_type
custom_nav_fixed_width:
label: Navigation Width (in pixels)
commentAbove: Will be ignored if you picked "Full Width" to "Navigation Bar Layout"
tab: Page - Layout
type: number
default: 1180
span: storm
cssClass: col-lg-3
assetVar: theme_custom_nav_fixed_width
custom_nav_fixed_width_unit:
label: Unit
commentAbove: Choose a unit
tab: Page - Layout
type: dropdown
span: storm
cssClass: col-sm-1
options:
px: px
em: em
rem: rem
%: %
default: px
assetVar: theme_custom_nav_fixed_width_unit
custom_footer_type:
label: Footer Layout
commentAbove: Choose which type you want your Footer to be on your website. Will be ignored if you picked "Default" or "Full Width" to Layout Settings > Type of Layout
tab: Page - Layout
type: dropdown
span: storm
cssClass: col-lg-8
options:
fixed_width: Fixed Width
full_width: Full Width
default: full_width
assetVar: theme_custom_footer_type
custom_footer_fixed_width: