Guest User

Untitled

a guest
Oct 5th, 2024
93
0
83 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.23 KB | None | 0 0
  1. /* Remove 'List All Tabs' button from the title-bar */
  2. #alltabs-button {
  3.     display: none !important;
  4. }
  5.  
  6. :root {
  7.     --green: #16484b;
  8.     --yellow: #f8e168;
  9.     --orange: #ff4500;
  10. }
  11.  
  12. /* Change the background color of the main browser window */
  13. #main-window {
  14.     background-color: var(--green) !important;
  15. }
  16.  
  17. /* Change the background color of the tab bar */
  18. #TabsToolbar {
  19.     background-color: var(--green) !important;
  20. }
  21.  
  22. /* Change the background color of the navigation toolbar */
  23. #nav-bar {
  24.     background-color: var(--green) !important;
  25. }
  26.  
  27. /* Change the background color of the bookmarks toolbar */
  28. #PersonalToolbar {
  29.     background-color: var(--green) !important;
  30. }
  31.  
  32. /* Change the color of icons on toolbars */
  33. #nav-bar .toolbarbutton-1 {
  34.     color: var(--orange) !important;
  35. }
  36.  
  37. #PersonalToolbar .toolbarbutton-1 {
  38.     color: var(--orange) !important;
  39. }
  40.  
  41. #PlacesToolbarItems menupopup>hbox {
  42.     color: blue !important;
  43.     background: rgba(221, 238, 255, 0.3) none !important;
  44. }
  45.  
  46. /* Change the background and label colors of tabs */
  47. .tab-background {
  48.     background-color: var(--green) !important;
  49.     color: var(--yellow) !important;
  50. }
  51.  
  52. .tab-background[selected] {
  53.     background-color: var(--yellow) !important;
  54.     color: var(--green) !important;
  55.     font-family: 'JetBrains Mono', monospace !important;
  56. }
  57.  
  58. .tab-label {
  59.     color: var(--yellow) !important;
  60. }
  61.  
  62. .tab-label[selected] {
  63.     font-weight: bold;
  64.     color: var(--green) !important;
  65. }
  66.  
  67. /* Change the color of tab close button */
  68. .tabbrowser-tab .close-icon {
  69.     fill: var(--orange) !important;
  70. }
  71.  
  72. .tabbrowser-tab .close-icon:hover {
  73.     fill: var(--yellow) !important;
  74.     background-color: var(--orange) !important;
  75.     border-radius: 4px;
  76. }
  77.  
  78. /* Change the color of newtab button */
  79. #tabs-newtab-button {
  80.     color: var(--orange) !important;
  81. }
  82.  
  83. #tabs-newtab-button:hover {
  84.     fill: var(--yellow) !important;
  85.     background-color: var(--orange) !important;
  86.     border-radius: 2px;
  87. }
  88.  
  89. /* Change the background color of the URL bar */
  90. #urlbar {
  91.     background-color: var(--green) !important;
  92.     color: var(--orange) !important;
  93. }
  94.  
  95. /* Change the background color of the search bar */
  96. #searchbar {
  97.     background-color: var(--green) !important;
  98.     color: var(--yellow) !important;
  99. }
  100.  
  101. /* Change the text color of the URL bar */
  102. #urlbar-input {
  103.     color: var(--orange) !important;
  104. }
  105.  
  106. /* Change the text color of the search bar */
  107. #searchbar .searchbar-textbox {
  108.     color: var(--yellow) !important;
  109. }
  110.  
  111. #PlacesToolbarItems>.bookmark-item {
  112.     fill: var(--orange) !important;
  113.     color: var(--yellow);
  114. }
  115.  
  116. #allTabsMenu-allTabsView .subviewbutton-iconic>.toolbarbutton-icon {
  117.     fill: blue !important;
  118. }
  119.  
  120. .menuitem-iconic {
  121.     color: var(--orange) !important;
  122. }
  123.  
  124. .menupopup-arrowscrollbox:not([part="arrowscrollbox"]),
  125. .menupopup-arrowscrollbox[exportparts="scrollbox: arrowscrollbox-scrollbox"] {
  126.     /* appearance: none !important; */
  127.     background-color: var(--green) !important;
  128.     color: var(--yellow) !important;
  129.     box-shadow: 0px 4px 6px -3px rgba(0, 0, 0, 0.4) !important;
  130.     border-radius: 14px !important;
  131.     border: 1px solid rgba(0, 0, 0, 0.2) !important;
  132.     overflow: hidden !important;
  133. }
Add Comment
Please, Sign In to add comment