I’m using the Indigo theme in my Tutor-based Open edX (Sumac version) and trying to change the primary color across the LMS and CMS and inside MFE.
Refer to the documentation here: GitHub - overhangio/tutor-indigo: An elegant, customizable theme for Open edX
Configuration
INDIGO_WELCOME_MESSAGE(default: “The place for all your online learning”)INDIGO_PRIMARY_COLOR(default: “#3b85ff”)INDIGO_FOOTER_NAV_LINKS(default:[{"title": "About", "url": "/about"}, {"title": "Contact", "url": "/contact"}])INDIGO_ENABLE_DARK_TOGGLE(default: True)The
INDIGO_*settings listed above may be modified by runningtutor config save --set INDIGO_...=.... For instance, to remove all links from the footer, run:
tutor config save --set "INDIGO_FOOTER_NAV_LINKS=[]"Or, to set the primary color to forest green, run:
Note:The nested quotes are needed in order to handle the hash (#) correctly.
tutor config save --set 'INDIGO_PRIMARY_COLOR="#225522"'
Thanks @joel.edwards Its working
1 Like