OpenAI Chat Old Colors

Bring back the old colors/style in OpenAI Chat

You will need to install an extension such as Tampermonkey, Greasemonkey or Violentmonkey to install this script.

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

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

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

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

You will need to install a user script manager extension to install this script.

(I already have a user script manager, let me install it!)

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install an extension such as Stylus to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

You will need to install a user style manager extension to install this style.

(I already have a user style manager, let me install it!)

// ==UserScript==
// @name         OpenAI Chat Old Colors
// @namespace    http://tampermonkey.net/
// @version      1.5
// @description  Bring back the old colors/style in OpenAI Chat
// @author       Clavilux
// @match        https://chat.openai.com/*
// @grant        GM_addStyle
// @license MIT
// ==/UserScript==

(function() {
    'use strict';

    const customStyles = `

:root   {
--gray-900: #000;
--gray-700: #3f3f4b;
--gray-800: #343541;
}

.items-start {
  margin-left: 5.90px;
}

.dark.bg-gray-950.rounded-md {
   background-color: black;
}


    `;

  const cred = document.createElement('div');
  cred.textContent = 'ChatGPT Old Style by Clavilux';
  cred.style.fontSize = '6px';
  cred.style.color = '#888';
  cred.style.position = 'fixed';
  cred.style.bottom = '5px';
  cred.style.right = '5px';
  document.body.appendChild(cred);

    GM_addStyle(customStyles);
})();