Worked on a quick fix for the design tab so you can add your custom css.
Working in 2.4.4
2 lines, one to add the css section and the other to clear the app cache.
Thank me or tip me.
if ! grep -q "MainDashboardCSS" /usr/local/CyberCP/baseTemplate/templates/baseTemplate/index.html; then sed -i -E 's/(\s?+|\s+?)<\!-- Modern Design System -->/&\n\1<style>\n\1 {{ cosmetic.MainDashboardCSS | safe }}\n\1<\/style>/' /usr/local/CyberCP/baseTemplate/templates/baseTemplate/index.html; fi
find /usr/local/CyberCP/ -type d -name __pycache__ -exec rm -r {} \+ && systemctl restart lscpd && systemctl restart lsws
Quick design changes:
:root {
--accent-color: cornflowerblue !important;
--accent-hover: cornflowerblue !important;
--bg-hover: azure !important;
/*--accent-color: yellowgreen !important;
--accent-hover: yellowgreen !important;
--bg-hover: honeydew !important;
--accent-color: violet !important;
--accent-hover: violet !important;
--bg-hover: seashell !important;
--accent-color: dodgerblue !important;
--accent-hover: dodgerblue !important;
--bg-hover: lightcyan !important;*/
}