The dark mode setting for this web page can be controlled via a query string parameter in the URL which is passed via the app to any external webview. For example adding ?darkmode=Dark or ?darkmode=Light to the URL, the script extracts this theme parameter using the URLSearchParams API and applies the corresponding theme by setting a data-theme attribute on the html element. This attribute change activates the CSS rules that define the styles for light and dark themes, allowing the page to dynamically switch themes based on the query string input. Furthermore if the query string is set to ?darkmode=System we default to the browser behaviour and extract from the systems `prefers-color-scheme` setting. This is one example of how to achieve this, there are many ways of achieving similar behaviour.