This commit is contained in:
nguyen dung
2022-02-18 16:43:41 +07:00
commit 39b8cb3612
4470 changed files with 1378320 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
<?php
return array(
array(
'title' => 'Dark',
'value' => 'rgba(0,0,0,.5)',
),
array(
'title' => 'White',
'value' => 'rgba(255,255,255,.5)',
),
array(
'title' => 'Primary',
'value' => get_theme_mod( 'color_primary', Flatsome_Default::COLOR_PRIMARY ),
),
);

View File

@@ -0,0 +1,24 @@
<?php
return array(
array(
'title' => 'Dark',
'value' => 'rgb(0,0,0)',
),
array(
'title' => 'White',
'value' => 'rgb(255,255,255)',
),
array(
'title' => 'Primary',
'value' => get_theme_mod( 'color_primary', Flatsome_Default::COLOR_PRIMARY ),
),
array(
'title' => 'Secondary',
'value' => get_theme_mod( 'color_secondary', Flatsome_Default::COLOR_SECONDARY ),
),
array(
'title' => 'Success',
'value' => get_theme_mod( 'color_success', Flatsome_Default::COLOR_SUCCESS ),
),
);

View File

@@ -0,0 +1,9 @@
<?php
return array(
array('title' => 'Auto','value' => ''),
array('title' => 'Full','value' => '100%'),
array('title' => '16:9','value' => '56.25%'),
array('title' => '1:2','value' => '50%'),
array('title' => '1:1','value' => '99.99%'),
);

View File

@@ -0,0 +1,10 @@
<?php
return array(
array('title' => 'X','value' => ''),
array('title' => '1:1','value' => '100%'),
array('title' => '2:1','value' => '200%'),
array('title' => '4:3','value' => '75%'),
array('title' => '16:9','value' => '56.25%'),
array('title' => '1:2','value' => '50%'),
);