clone of olivero for island lives

16 lines
320 B

1 year ago
<?php
/**
* @file
* Post update functions for Olives.
*/
/**
* Sets the default `base_primary_color` value of Olives's theme settings.
*/
function olives_post_update_add_olives_primary_color() {
\Drupal::configFactory()->getEditable('olives.settings')
->set('base_primary_color', '#1b9ae4')
->save();
}