Greasy Fork is available in English.

Wolt Dark Theme

Enable Wolt's unoffical web dark theme

// ==UserScript==
// @name        Wolt Dark Theme
// @description Enable Wolt's unoffical web dark theme
// @match       https://wolt.com/*
// @grant       none
// @version     1.0
// @run-at      document-idle
// @icon        https://www.google.com/s2/favicons?sz=64&domain=wolt.com
// @license     GPL v3
// @author      incognico
// @namespace   https://greasyfork.org/users/931787
// ==/UserScript==

(() => {
    document.documentElement.setAttribute('data-cb-theme', 'dark');
    // Set cookie app-theme-setting=dark otherwise it will be overriden
    document.cookie = "app-theme-setting=dark; expires=" + new Date(Date.now() + 400 * 24 * 60 * 60 * 1000).toUTCString() + "; path=/";
})();