Hi Michael,
Thanks for using Syncfusion products.
Essential Theme Studio can only be used to customize the themes of Syncfusion controls and it is not supported to customize web pages like body tag etc. For user interaction purpose, we have set ‘darktheme’ class to the body tag from the application end when we select the dark themes option from theme list in the Theme Studio.
If you want to apply custom background theme like Theme Studio, then you can use custom styles with specific class name in your application to achieve your requirement. Please refer the below code snippet for further details.
<body class="darktheme">
-------
-------
</body>
<style>
.darktheme{
background-color: #111111;
}
</style>
|
Please let us know if you have any further concerns.
Regards,
Ajith R