(function () { function getSearchParam(name) { var results = new RegExp('[\?&]' + name + '=([^&#]*)').exec( window.location.search ); if (results == null) { return null; } else { return decodeURI(results[1]) || ''; } } if ( window.matchMedia && window.matchMedia('(prefers-color-scheme: dark)').matches && getSearchParam('theme') !== null && getSearchParam('theme') !== 'light' ) { document.body.classList.add('dark'); } if (getSearchParam('locale') === 'ar') { document.querySelector('html').dir = 'rtl' } })();