Darkest ChatGPT with a wide input field

A custom-themed version of ChatGPT interface with a deep dark colors and an extended input field for a more comfortable and immersive user experience. The wide input area allows for easier text entry, making it perfect for extended conversations or more detailed prompts.

  1. // ==UserScript==
  2. // @name Darkest ChatGPT with a wide input field
  3. // @namespace Violentmonkey Scripts
  4. // @match *://chatgpt.com/*
  5. // @grant none
  6. // @version 1.0
  7. // @author Kenseori
  8. // @license MIT
  9. // @description A custom-themed version of ChatGPT interface with a deep dark colors and an extended input field for a more comfortable and immersive user experience. The wide input area allows for easier text entry, making it perfect for extended conversations or more detailed prompts.
  10. // ==/UserScript==
  11.  
  12. (function() {
  13. 'use strict';
  14. const style = document.createElement('style');
  15. style.innerHTML = `
  16. * { color: #FFF !important; text-shadow: none !important; }
  17. body, .app, .chat-container, .conversation-container, .messages { background-color: #121212 !important; }
  18. .input-area, .user-message, .bot-message { background-color: #333 !important; border-color: #444 !important; }
  19. .message-input, .input-area input, .input-area textarea { background-color: #444 !important; color: #FFF !important; padding: 12px !important; font-size: 16px !important; border-radius: 8px !important; border: 1px solid #444 !important; width: 100% !important; }
  20. .header, .footer, .sidebar, .nav-bar { background-color: #1C1C1C !important; }
  21. a, a:visited, a:hover { color: #FFF !important; text-decoration: none !important; }
  22. .button, .button:hover { background-color: #444 !important; border-color: #555 !important; color: #FFF !important; padding: 12px 20px !important; font-size: 14px !important; border-radius: 8px !important; }
  23. .message-area .message-time { color: #FFF !important; }
  24. .scrollbar { background-color: #333 !important; }
  25. .mx-auto { max-width: 100% !important; width: auto !important; }
  26. .h-full { height: 100% !important; }
  27. .w-full { width: 100% !important; }
  28. .group.relative.flex { padding: 10px 15px !important; font-size: 16px !important; }
  29. .group.relative.flex svg { width: 28px !important; height: 28px !important; }
  30. .h-[116px] { height: auto !important; }
  31. `;
  32. document.head.appendChild(style);
  33. })();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址