Greasy Fork is available in English.

Google Bard Dark Mode

Google Bard dark mode switcher

// ==UserScript==
// @name         Google Bard Dark Mode
// @namespace    https://bard.google.com/
// @version      1.0
// @description  Google Bard dark mode switcher
// @author       Babico
// @match        https://bard.google.com/*
// @icon         https://www.google.com/s2/favicons?sz=64&domain=bard.google.com
// @grant        none
// @license      MIT 
// ==/UserScript==

(function() {
    'use strict';
    document.body.classList.value = "dark-theme";
    document.body.querySelector("header").style.backgroundColor = "var(--bard-color-main-container-background)";
})();