deepseek css

a

// ==UserScript==
// @name         deepseek css
// @description  a
// @match        https://chat.deepseek.com/*
// @version 0.0.1.20250721193552
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
  style.textContent = `
* {
margin-left: revert !important;
margin-right: revert !important;
}

:root {
    color-scheme: light dark !important;
}

body {
    background-color: revert !important;
}

div:has(> div > div > svg > path[d^="M1.00008 2.41429C0.609551"]) {
background: linear-gradient(to bottom, transparent 0%, transparent 30%, black 30%, black 100%);
}

div:has(> div > div > svg > path[d^="M23.7222 4H4.27776C3.57207"]) {
    background-color: revert !important;
}
  `;
  document.head.appendChild(style);
})();