| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/elementor/core/schemes/ |
Upload File : |
<?php
namespace Elementor\Core\Schemes;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* Elementor color picker scheme.
*
* Elementor color picker scheme class is responsible for initializing a scheme
* for color pickers.
*
* @since 1.0.0
*/
class Color_Picker extends Base {
/**
* Get color picker scheme type.
*
* Retrieve the color picker scheme type.
*
* @since 1.0.0
* @access public
* @static
*
* @return string Color picker scheme type.
*/
public static function get_type() {
return 'color-picker';
}
/**
* Get default color picker scheme.
*
* Retrieve the default color picker scheme.
*
* @since 1.0.0
* @access public
*
* @return array Default color picker scheme.
*/
public function get_default_scheme() {
return [
1 => '#6ec1e4',
2 => '#54595f',
3 => '#7a7a7a',
4 => '#61ce70',
5 => '#4054b2',
6 => '#23a455',
7 => '#000',
8 => '#fff',
];
}
}