芝麻web文件管理V1.00
编辑当前文件:/home/r5772835/public_html/rigato.ycreate.site/wp-content/plugins/elementor/core/schemes/color.php
esc_html__( 'Primary', 'elementor' ), self::COLOR_2 => esc_html__( 'Secondary', 'elementor' ), self::COLOR_3 => esc_html__( 'Text', 'elementor' ), self::COLOR_4 => esc_html__( 'Accent', 'elementor' ), ]; } /** * Get default color scheme. * * Retrieve the default color scheme. * * @since 1.0.0 * @access public * * @return array Default color scheme. */ public function get_default_scheme() { return [ self::COLOR_1 => '#6ec1e4', self::COLOR_2 => '#54595f', self::COLOR_3 => '#7a7a7a', self::COLOR_4 => '#61ce70', ]; } /** * Print color scheme content template. * * Used to generate the HTML in the editor using Underscore JS template. The * variables for the class are available using `data` JS object. * * @since 1.0.0 * @access public */ public function print_template_content() { ?>
_get_system_schemes_to_print() as $scheme_name => $scheme ) : ?>
[ 'title' => 'Joker', 'items' => [ self::COLOR_1 => '#202020', self::COLOR_2 => '#b7b4b4', self::COLOR_3 => '#707070', self::COLOR_4 => '#f6121c', ], ], 'ocean' => [ 'title' => 'Ocean', 'items' => [ self::COLOR_1 => '#1569ae', self::COLOR_2 => '#b6c9db', self::COLOR_3 => '#545454', self::COLOR_4 => '#fdd247', ], ], 'royal' => [ 'title' => 'Royal', 'items' => [ self::COLOR_1 => '#d5ba7f', self::COLOR_2 => '#902729', self::COLOR_3 => '#ae4848', self::COLOR_4 => '#302a8c', ], ], 'violet' => [ 'title' => 'Violet', 'items' => [ self::COLOR_1 => '#747476', self::COLOR_2 => '#ebca41', self::COLOR_3 => '#6f1683', self::COLOR_4 => '#a43cbd', ], ], 'sweet' => [ 'title' => 'Sweet', 'items' => [ self::COLOR_1 => '#6ccdd9', self::COLOR_2 => '#763572', self::COLOR_3 => '#919ca7', self::COLOR_4 => '#f12184', ], ], 'urban' => [ 'title' => 'Urban', 'items' => [ self::COLOR_1 => '#db6159', self::COLOR_2 => '#3b3b3b', self::COLOR_3 => '#7a7979', self::COLOR_4 => '#2abf64', ], ], 'earth' => [ 'title' => 'Earth', 'items' => [ self::COLOR_1 => '#882021', self::COLOR_2 => '#c48e4c', self::COLOR_3 => '#825e24', self::COLOR_4 => '#e8c12f', ], ], 'river' => [ 'title' => 'River', 'items' => [ self::COLOR_1 => '#8dcfc8', self::COLOR_2 => '#565656', self::COLOR_3 => '#50656e', self::COLOR_4 => '#dc5049', ], ], 'pastel' => [ 'title' => 'Pastel', 'items' => [ self::COLOR_1 => '#f27f6f', self::COLOR_2 => '#f4cd78', self::COLOR_3 => '#a5b3c1', self::COLOR_4 => '#aac9c3', ], ], ]; } /** * Get system color schemes to print. * * Retrieve the system color schemes * * @since 1.0.0 * @access protected * * @return array The system color schemes. */ protected function _get_system_schemes_to_print() { return $this->get_system_schemes(); } /** * Get current color scheme title. * * Retrieve the current color scheme title. * * @since 1.0.0 * @access protected * @deprecated 3.3.0 * * @return string The current color scheme title. */ protected function _get_current_scheme_title() { Plugin::$instance->modules_manager->get_modules( 'dev-tools' )->deprecation->deprecated_function( __METHOD__, '3.3.0' ); return esc_html__( 'Color Palette', 'elementor' ); } }