Initial commit.
This commit is contained in:
@@ -0,0 +1,67 @@
|
||||
<?php
|
||||
if ( !defined( 'WPINC' ) ) {
|
||||
die;
|
||||
}
|
||||
|
||||
$colors = Array(
|
||||
'default' => '#000000',
|
||||
'level3-dark' => '#666666',
|
||||
'link' => '#004774',
|
||||
'link-hover' => '#003663',
|
||||
'header-bg' => '#ffffff',
|
||||
'header-text' => '#000000',
|
||||
'header-menu' => '#f7f7f7',
|
||||
'header-sidebar' => '#f0f0f0',
|
||||
'level1' => '#ffffff',
|
||||
'level2' => '#f7f7f7',
|
||||
'tint' => '#ffd900',
|
||||
'tint-dark' => '#c1a400',
|
||||
'tint-alt' => '#0060c1',
|
||||
'tint-contrast' => '#00281d',
|
||||
'contrast' => '#000000',
|
||||
'contrast-dark' => '#ffffff',
|
||||
'footer-text' => '#ffffff',
|
||||
'footer-bg' => '#333333'
|
||||
);
|
||||
|
||||
$labels = Array(
|
||||
'level1' => __( 'Content Background', 'minimalistflex' ),
|
||||
'level2' => __( 'Sidebar Background', 'minimalistflex' ),
|
||||
'level3-dark' => __( 'Secondary Text', 'minimalistflex' ),
|
||||
'default' => __( 'Default', 'minimalistflex' ),
|
||||
'link' => __( 'Link', 'minimalistflex' ),
|
||||
'link-hover' => __( 'Link Hover', 'minimalistflex' ),
|
||||
'tint' => __( 'Tint A', 'minimalistflex' ),
|
||||
'tint-dark' => __( 'Tint A Dark', 'minimalistflex' ),
|
||||
'tint-alt' => __( 'Tint B', 'minimalistflex' ),
|
||||
'tint-contrast' => __( 'Tint C', 'minimalistflex' ),
|
||||
'contrast' => __( 'Contrast (Light)', 'minimalistflex' ),
|
||||
'contrast-dark' => __( 'Contrast (Dark)', 'minimalistflex' ),
|
||||
'footer-text' => __( 'Footer Text', 'minimalistflex' ),
|
||||
'footer-bg' => __( 'Footer Background', 'minimalistflex' ),
|
||||
'header-bg' => __( 'Header Background', 'minimalistflex' ),
|
||||
'header-menu' => __( 'Navigation Menu Background', 'minimalistflex' ),
|
||||
'header-sidebar' => __( 'Navigation Menu Sidebar Background', 'minimalistflex' ),
|
||||
'header-text' => __( 'Navigation Menu', 'minimalistflex' )
|
||||
);
|
||||
|
||||
$desciprtions = Array(
|
||||
'level1' => __( 'The background color of the main content area.', 'minimalistflex' ),
|
||||
'level2' => __( 'The background color of the sidebar.', 'minimalistflex' ),
|
||||
'level3-dark' => __( 'The secondary text color. Should be lighter than the default color.', 'minimalistflex' ),
|
||||
'default' => __( 'The default text color.', 'minimalistflex' ),
|
||||
'link' => __( 'The link color.', 'minimalistflex' ),
|
||||
'link-hover' => __( 'The link color when hovered.', 'minimalistflex' ),
|
||||
'tint' => __( 'Tint color A. Should be a light color.', 'minimalistflex' ),
|
||||
'tint-dark' => __( 'A darker variant of the tint color A. Only used on the scroll bars.', 'minimalistflex' ),
|
||||
'tint-alt' => __( 'Tint color B. Should be a dark color.', 'minimalistflex' ),
|
||||
'tint-contrast' => __( 'Tint color C. Should be a *even darker* color.', 'minimalistflex' ),
|
||||
'contrast' => __( 'Text color on a light background. Better keep it as is.', 'minimalistflex' ),
|
||||
'contrast-dark' => __( 'Text color on a dark background. Better keep it as is.', 'minimalistflex' ),
|
||||
'footer-text' => __( 'The footer text color.', 'minimalistflex' ),
|
||||
'footer-bg' => __( 'The footer background color.', 'minimalistflex' ),
|
||||
'header-bg' => __( 'The background color of the header.', 'minimalistflex' ),
|
||||
'header-menu' => __( 'The background color of the navigation menu dropdown.', 'minimalistflex' ),
|
||||
'header-sidebar' => __( 'The background color of the sidebar of the navigation menu dropdown.', 'minimalistflex' ),
|
||||
'header-text' => __( 'The text color of the navigation menu dropdown.', 'minimalistflex' )
|
||||
);
|
||||
Reference in New Issue
Block a user