MinimalistFlex/includes/color-definitions.php

67 lines
3.6 KiB
PHP

<?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' => '#000000',
'footer-bg' => '#ffffff'
);
$labels = Array(
'level1' => esc_html__( 'Content Background', 'minimalistflex' ),
'level2' => esc_html__( 'Sidebar Background', 'minimalistflex' ),
'level3-dark' => esc_html__( 'Secondary Text', 'minimalistflex' ),
'default' => esc_html__( 'Default', 'minimalistflex' ),
'link' => esc_html__( 'Link', 'minimalistflex' ),
'link-hover' => esc_html__( 'Link Hover', 'minimalistflex' ),
'tint' => esc_html__( 'Tint A', 'minimalistflex' ),
'tint-dark' => esc_html__( 'Tint A Dark', 'minimalistflex' ),
'tint-alt' => esc_html__( 'Tint B', 'minimalistflex' ),
'tint-contrast' => esc_html__( 'Tint C', 'minimalistflex' ),
'contrast' => esc_html__( 'Contrast (Light)', 'minimalistflex' ),
'contrast-dark' => esc_html__( 'Contrast (Dark)', 'minimalistflex' ),
'footer-text' => esc_html__( 'Footer Text', 'minimalistflex' ),
'footer-bg' => esc_html__( 'Footer Background', 'minimalistflex' ),
'header-bg' => esc_html__( 'Header Background', 'minimalistflex' ),
'header-menu' => esc_html__( 'Navigation Menu Background', 'minimalistflex' ),
'header-sidebar' => esc_html__( 'Navigation Menu Submenu Background', 'minimalistflex' ),
'header-text' => esc_html__( 'Navigation Menu', 'minimalistflex' )
);
$desciprtions = Array(
'level1' => esc_html__( 'The background color of the main content area.', 'minimalistflex' ),
'level2' => esc_html__( 'The background color of the sidebar.', 'minimalistflex' ),
'level3-dark' => esc_html__( 'The secondary text color. Should be lighter than the default color.', 'minimalistflex' ),
'default' => esc_html__( 'The default text color.', 'minimalistflex' ),
'link' => esc_html__( 'The link color.', 'minimalistflex' ),
'link-hover' => esc_html__( 'The link color when hovered.', 'minimalistflex' ),
'tint' => esc_html__( 'Tint color A. Should be a light color.', 'minimalistflex' ),
'tint-dark' => esc_html__( 'A darker variant of the tint color A. Only used on the scroll bars.', 'minimalistflex' ),
'tint-alt' => esc_html__( 'Tint color B. Should be a dark color.', 'minimalistflex' ),
'tint-contrast' => esc_html__( 'Tint color C. Should be a *even darker* color.', 'minimalistflex' ),
'contrast' => esc_html__( 'Text color on a light background. Better keep it as is.', 'minimalistflex' ),
'contrast-dark' => esc_html__( 'Text color on a dark background. Better keep it as is.', 'minimalistflex' ),
'footer-text' => esc_html__( 'The footer text color.', 'minimalistflex' ),
'footer-bg' => esc_html__( 'The footer background color.', 'minimalistflex' ),
'header-bg' => esc_html__( 'The background color of the header.', 'minimalistflex' ),
'header-menu' => esc_html__( 'The background color of the navigation menu dropdown.', 'minimalistflex' ),
'header-sidebar' => esc_html__( 'The background color of the submenus of the navigation menu dropdown.', 'minimalistflex' ),
'header-text' => esc_html__( 'The text color of the navigation menu dropdown.', 'minimalistflex' )
);