longcat css

a

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey, Greasemonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

You will need to install an extension such as Tampermonkey to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey किंवा Violentmonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

You will need to install an extension such as Tampermonkey or Userscripts to install this script.

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला Tampermonkey यासारखे एक्स्टेंशन इंस्टॉल करावे लागेल..

ही स्क्रिप्ट इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्क्रिप्ट व्यवस्थापक एक्स्टेंशन इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्क्रिप्ट व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला Stylus सारखे एक्स्टेंशन इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

ही स्टाईल इंस्टॉल करण्यासाठी तुम्हाला एक युझर स्टाईल व्यवस्थापक इंस्टॉल करावे लागेल.

(माझ्याकडे आधीच युझर स्टाईल व्यवस्थापक आहे, मला इंस्टॉल करू द्या!)

// ==UserScript==
// @name        longcat css
// @description a
// @match       https://longcat.chat/*
// @run-at      document-start
// @version 0.0.1.20251216140424
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function () {

    const css = `
    :root {
            color-scheme: light dark !important;
        }

html, body {
    background: revert !important;
}

div#app > div.v-app-container > div.slider-menus {
    background: none !important;
}

* {
    color: revert !important;
    background: revert !important;
}

symbol#icon-phone path {
    fill: currentColor !important;
}

div:not(div.active) {
    border-color: revert !important;
}

symbol path {
    fill: currentColor !important;
}

#icon-new-fill {
    display: none !important;
}

div.download-btn {
    display: none !important;
}

div.platform-icon {
    display: none !important;
}

div.chat-home-title img.longcat-text {
    display: none !important;
}

span.custom-avatar {
    /* display: none !important; */
}

div.user-text {
    background-color: red !important;
    color: black !important;
}

svg path {
    fill: currentColor !important;
}

pre.code-block-wrapper {
    border: 1px solid red !important;
}

div.chat-input-wrap {
    background-color: black !important;
}

div.to-bottom-icon {
    display: none !important;
}
        `;

    const style = document.createElement('style');
    style.id = 'longcatCssStyleId';
    style.textContent = css;
    document.head.appendChild(style);
})();