Hello Survey Js Team,
I want to change the default theme in theme tap ?
Kind Regards,
Amro
Hello Survey Js Team,
I want to change the default theme in theme tap ?
Kind Regards,
Amro
Hello Amro,
If you wish to modify the default survey theme, assign a target theme JSON definition to the creator.theme
property. The following demo shows how to apply a Plain theme to a survey.
JavaScriptimport { PlainLight } from "survey-core/themes/plain-light";
creator.theme = PlainLight;
View Demo
Let me know if it works for you.