Don't use accent color in Halloween mode

merge-requests/1060/head
Alex Gleason 3 years ago
parent 2eefdbe235
commit 7a3c014ac7
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7

@ -64,7 +64,7 @@ const mapStateToProps = (state) => {
// In demo mode, force the default brand color
const brandColor = settings.get('demo') ? '#0482d8' : soapboxConfig.get('brandColor');
const accentColor = settings.get('demo') ? null : soapboxConfig.get('accentColor');
const accentColor = (settings.get('demo') || settings.get('halloween')) ? null : soapboxConfig.get('accentColor');
const singleUserMode = soapboxConfig.get('singleUserMode') && soapboxConfig.get('singleUserModeProfile');

Loading…
Cancel
Save