To create configuration sets in shopware 5 follow the below steps:
Step 1: Go to shopware theme directory of your website.
Step 2: Open Theme.php file to add the configuration set.

Step 3: Add below code in Theme.php
use Doctrine\Common\Collections\ArrayCollection; use Shopware\Components\Theme\ConfigSet;
public function createConfigSets(ArrayCollection $collection)
{
$set = new ConfigSet();
$set->setName('Red theme');
$set->setDescription('Set all colors to red and increase the font size');
$set->setValues(array(
'basic_font_size' => '20px',
'custom-color-main' => '#ff0000'
));
$collection->add($set);
}
Step 4: Now go to the Theme manager section in the backend and click on the Configure theme.

Step 5: After clicked on the Configure theme, Click on the Configuration sets to see the result.

Result:

Please contact us at manish@bay20.com or call us at +91-8800519180 for any support related to shopware 5 and shopware 6. You can also visit the Shopware development page to check the services we offer.






