YouTube Logo - Solid Red Color on All Pages

Force the YouTube logo to be solid red instead of pink on all YouTube pages

  1. // ==UserScript==
  2. // @name YouTube Logo - Solid Red Color on All Pages
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.1
  5. // @description Force the YouTube logo to be solid red instead of pink on all YouTube pages
  6. // @author GPT
  7. // @match https://www.youtube.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Apply custom CSS styling to make the YouTube logo solid red
  15. GM_addStyle(`
  16. /* Target the YouTube logo icon and make it solid red */
  17. #logo-icon {
  18. fill: #FF0000 !important; /* Solid red color */
  19. }
  20.  
  21. /* Ensure no hover effects or shadows affect the color */
  22. #logo-icon:hover,
  23. #logo-icon-shadow {
  24. fill: #FF0000 !important;
  25. }
  26.  
  27. /* Adjust text logo color if needed */
  28. #logo-icon-container, #logo-text {
  29. color: #FF0000 !important; /* Solid red for text portion */
  30. }
  31. `);
  32.  
  33. console.log("Custom YouTube logo styling applied: solid red logo on all pages.");
  34. })();