Guest User

Untitled

a guest
Oct 6th, 2024
61
0
114 days
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 3.25 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. /* Change the color of icons in menus of navbar */
  38. #nav-bar .menu-iconic-icon {
  39.     fill: var(--orange) !important;
  40. }
  41.  
  42. /* Change the color of icons in menus of navbar */
  43. #personal-bookmarks .menu-iconic-icon {
  44.     fill: var(--orange) !important;
  45. }
  46.  
  47. #PersonalToolbar .toolbarbutton-1 {
  48.     color: var(--orange) !important;
  49. }
  50.  
  51. /* Change the background and label colors of tabs */
  52. .tab-background {
  53.     background-color: var(--green) !important;
  54.     color: var(--yellow) !important;
  55. }
  56.  
  57. .tab-background[selected] {
  58.     background-color: var(--yellow) !important;
  59.     color: var(--green) !important;
  60.     font-family: 'JetBrains Mono', monospace !important;
  61. }
  62.  
  63. .tab-label {
  64.     color: var(--yellow) !important;
  65. }
  66.  
  67. .tab-label[selected] {
  68.     font-weight: bold;
  69.     color: var(--green) !important;
  70. }
  71.  
  72. /* Change the color of tab close button */
  73. .tabbrowser-tab .close-icon {
  74.     fill: var(--orange) !important;
  75. }
  76.  
  77. .tabbrowser-tab .close-icon:hover {
  78.     fill: var(--yellow) !important;
  79.     background-color: var(--orange) !important;
  80.     border-radius: 4px;
  81. }
  82.  
  83. /* Change the color of newtab button */
  84. #tabs-newtab-button {
  85.     color: var(--orange) !important;
  86. }
  87.  
  88. #tabs-newtab-button:hover {
  89.     fill: var(--yellow) !important;
  90.     background-color: var(--orange) !important;
  91.     border-radius: 2px;
  92. }
  93.  
  94. /* Change the background color of the URL bar */
  95. #urlbar {
  96.     background-color: var(--green) !important;
  97.     color: var(--orange) !important;
  98. }
  99.  
  100. /* Change the background color of the search bar */
  101. #searchbar {
  102.     background-color: var(--green) !important;
  103.     color: var(--yellow) !important;
  104. }
  105.  
  106. /* Change the text color of the URL bar */
  107. #urlbar-input {
  108.     color: var(--orange) !important;
  109. }
  110.  
  111. /* Change the text color of the search bar */
  112. #searchbar .searchbar-textbox {
  113.     color: var(--yellow) !important;
  114. }
  115.  
  116. #PlacesToolbarItems>.bookmark-item {
  117.     fill: var(--orange) !important;
  118.     color: var(--yellow);
  119. }
  120.  
  121. #allTabsMenu-allTabsView .subviewbutton-iconic>.toolbarbutton-icon {
  122.     fill: blue !important;
  123. }
  124.  
  125. /* EXPERIEMNTS with dropdown menus ==================================================================== */
  126.  
  127. /* bookmarks panel */
  128. menupopup {
  129.     --panel-background: var(--green) !important;
  130.     --panel-color: var(--yellow) !important;
  131.     --panel-border-radius: 14px !important;
  132. }
  133.  
  134. /* hamburger panel */
  135. panelview {
  136.     background: var(--green) !important;
  137.     color: var(--yellow) !important;
  138. }
Add Comment
Please, Sign In to add comment