Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save andreiglingeanu/d7f4a9232a1d9bc48d3c7cc6e1bc761e to your computer and use it in GitHub Desktop.
Save andreiglingeanu/d7f4a9232a1d9bc48d3c7cc6e1bc761e to your computer and use it in GitHub Desktop.
<?php
// Current palette
$palette = blocksy_manager()->colors->get_color_palette();
print_r($palette);
// 1. Update palette
$current_palette = blocksy_get_theme_mod(
'colorPalette',
[
'color1' => [
'color' => '#2872fa',
],
'color2' => [
'color' => '#1559ed',
],
'color3' => [
'color' => '#3A4F66',
],
'color4' => [
'color' => '#192a3d',
],
'color5' => [
'color' => '#e1e8ed',
],
'color6' => [
'color' => '#f2f5f7',
],
'color7' => [
'color' => '#FAFBFC',
],
'color8' => [
'color' => '#ffffff',
]
]
);
// 2. Make changes to $current_palette
// ...
// 3. Update palette
set_theme_mod('colorPalette', $current_palette);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment