-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconfig.php
75 lines (74 loc) · 2.33 KB
/
config.php
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
<?php
/**
* Mai Engine default settings config.
* This config sets default settings.
* Once settings are saved in the Customizer the saved values takeover.
*
* Use https://bizbudding.com/mai-theme/plugins/mai-config-generator to generate a custom config for your site defaults.
* or see /mai-engine/config/_default.php for all config options.
*
* @package BizBudding\MaiEngine
* @link https://bizbudding.com
* @author BizBudding
* @copyright Copyright © 2020 BizBudding
* @license GPL-2.0-or-later
*/
return [
// // Default global styles, colors, and fonts.
// 'global-styles' => [
// 'colors' => [
// 'header' => '#ffffff', // Site header background.
// 'background' => '#ffffff', // Body background.
// 'alt' => '#f8f9fa', // Background alt.
// 'body' => '#6c747d', // Body text color.
// 'heading' => '#343a40', // Heading text color.
// 'link' => '#007bff', // Link color.
// 'primary' => '#007bff', // Button primary background color.
// 'secondary' => '#6c747d', // Button secondary background color.
// 'black' => '#000000',
// 'white' => '#ffffff',
// ],
// 'custom-colors' => [
// [
// 'color' => '#bcda83', // var(--color-custom-1).
// ],
// ],
// 'fonts' => [
// 'body' => 'Roboto:300,500', // 300 is regular and 500 is bold.
// 'heading' => 'Playfair Display:400',
// ],
// ],
// // Set default theme support settings.
// 'theme-support' => [
// 'add' => [
// 'sticky-header',
// 'transparent-header',
// ],
// ],
// // Enable image orientations and set aspect ratio.
// 'image-sizes' => [
// 'add' => [
// 'landscape' => '4:3',
// 'portrait' => '3:4',
// 'square' => '1:1',
// ],
// ],
// // Custom template parts.
// 'template-parts' => [
// // Only show Before Header template part on the homepage.
// 'before-header' => [
// 'condition' => 'is_front_page',
// ],
// // Add new Featured Posts template part before entries on category/tag archives.
// 'featured-posts' => [
// 'hook' => 'genesis_before_content_sidebar_wrap',
// 'priority' => 16,
// 'menu_order' => 80,
// 'before' => '<div class="archive-featured template-part">',
// 'after' => '</div>',
// 'condition' => function() {
// return is_category() || is_tag();
// },
// ],
// ],
];