Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- // ==UserScript==
- // @name New Userscript
- // @namespace http://tampermonkey.net/
- // @version 2025-04-03
- // @description try to take over the world!
- // @author You
- // @match https://chatgpt.com/*
- // @icon https://www.google.com/s2/favicons?sz=64&domain=chatgpt.com
- // @grant GM_addStyle
- // ==/UserScript==
- (function () {
- 'use strict';
- // Inject custom CSS to override the background of user messages
- GM_addStyle(`
- div[class*="py-2.5"][class*="px-5"][class*="rounded-3xl"][class*="bg-token-message-surface"][class*="max-w-\\[var\\(--user-chat-width\\,70%\\)\\]"][class*="relative"] {
- background-color: #2a2a2a !important; /* adjust to match your desired dark mode tone */
- color: #f0f0f0 !important; /* optional: ensure text remains visible */
- }
- `);
- })();
Advertisement
Add Comment
Please, Sign In to add comment