Guest User

Untitled

a guest
May 27th, 2026
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.05 KB | None | 0 0
  1. /* =========================================================
  2. COMPLETE PURE JET BLACK OVERRIDE FOR ABOUT:PREFERENCES
  3. ========================================================= */
  4. @-moz-document url-prefix("about:preferences") {
  5.  
  6. /* Force Firefox's internal layout engine variables to absolute black */
  7. :root {
  8. --in-content-page-background: #000000 !important;
  9. --in-content-box-background: #000000 !important;
  10. --in-content-box-background-odd: #000000 !important;
  11. --in-content-sidebar-background: #000000 !important;
  12.  
  13. /* Clean text contrast against pitch black */
  14. --in-content-text-color: #e0e0e0 !important;
  15. --in-content-deemphasized-text: #a0a0a0 !important;
  16.  
  17. background-color: #000000 !important;
  18. }
  19.  
  20. /* Force the outer frame, background walls, and search margins black */
  21. page, html, body, .main-content, #preferences-content, .categorybox {
  22. background-color: #000000 !important;
  23. color: #e0e0e0 !important;
  24. }
  25.  
  26. /* TARGET THE LEFT NAVIGATION STRIP: Force the category list wall pure black */
  27. .navigation, #categories, category {
  28. background-color: #000000 !important;
  29. border-right: none !important;
  30. }
  31.  
  32. /* Fix individual row hovering states inside the left menu strip */
  33. richlistitem.category[selected="true"] {
  34. background-color: #1a1a1a !important;
  35. color: #ffffff !important;
  36. }
  37.  
  38. richlistitem.category:hover {
  39. background-color: #121212 !important;
  40. }
  41.  
  42. /* Make the top search box area blend completely into the pure black ceiling */
  43. .search-container, #search-box {
  44. background-color: #121212 !important;
  45. border: 1px solid #252525 !important;
  46. color: #ffffff !important;
  47. }
  48.  
  49. /* Clean up all action buttons, text fields, and dropdown elements */
  50. input, select, button, menulist, tabpanels, textbox {
  51. background-color: #161616 !important;
  52. color: #ffffff !important;
  53. border: 1px solid #2a2a2a !important;
  54. }
  55.  
  56. /* Keep all links sharply legible and blue */
  57. a, .link, .text-link {
  58. color: #64b5f6 !important;
  59. }
  60. }
Advertisement
Add Comment
Please, Sign In to add comment