falcon css

a

// ==UserScript==
// @name         falcon css
// @description  a
// @match        https://chat.falconllm.tii.ae/*
// @version 0.0.1.20250805124638
// @namespace https://greasyfork.org/users/1435046
// ==/UserScript==

(function() {
  const style = document.createElement('style');
style.id = 'falconCssStyleId';

  style.textContent = `
:root {
    color-scheme: light dark !important;
}

div.app > div {
    background-color: revert !important;
}

    div[class*="bg-gradient"]{
      bottom: unset !important;
height: 100% !important;
    }

    a[href="https://openinnovation.ai"] {
    display: none !important;
}

.chat-user > div > div > div.rounded-3xl:has(> p) {
    background-color: red !important;
color: black !important;
}

div:has(> div > div > div > div > form > div > div> div > div > #chat-input) > div > div:nth-of-type(1) {
    display: none !important;
}
  `;
  document.head.appendChild(style);
})();