Simple Theme for Kick.com

A simple theme for Kick.com

  1. // ==UserScript==
  2. // @name Simple Theme for Kick.com
  3. // @namespace http://tampermonkey.net/
  4. // @version 1.0
  5. // @description A simple theme for Kick.com
  6. // @author fredtheceo
  7. // @match https://kick.com/*
  8. // @grant GM_addStyle
  9. // ==/UserScript==
  10.  
  11. (function() {
  12. 'use strict';
  13.  
  14. // Add custom styles
  15. GM_addStyle(`
  16. body {
  17. background-color: #121212 !important; /* Dark background */
  18. color: #ffffff !important; /* Light text color */
  19. }
  20. a {
  21. color: #bb86fc !important; /* Custom link color */
  22. }
  23. /* Styling for headers */
  24. h1, h2, h3, h4, h5, h6 {
  25. color: #ffffff !important;
  26. }
  27. /* Optional: Style for buttons */
  28. button {
  29. background-color: #1f1f1f !important; /* Dark button background */
  30. color: #ffffff !important; /* Button text color */
  31. border: 1px solid #bb86fc !important; /* Button border */
  32. }
  33. /* Optional: additional styles */
  34. /* You can add more styles as needed */
  35. `);
  36. })();

QingJ © 2025

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