blob: 6c7edfa6550a185ecd16bef42d2c5fd6942ce16f [file] [log] [blame]
Faris Ansari5f8b3582019-03-19 11:48:32 +05301// Copyright (c) 2019, Frappe Technologies Pvt. Ltd. and Contributors
2// MIT License. See license.txt
3
4frappe.ui.form.on('Website Theme', {
5 apply_custom_theme(frm) {
6 let custom_theme = frm.doc.custom_theme;
7 custom_theme = custom_theme.split('\n');
8 if (
9 frm.doc.apply_custom_theme
10 && custom_theme.length === 2
11 && custom_theme[1].includes('frappe/public/scss/website')
12 ) {
13 frm.set_value('custom_theme',
14 `$primary: #7575ff;\n@import "frappe/public/scss/website";\n@import "erpnext/public/scss/website";`);
15 }
16 }
17});