Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- /* Remove 'List All Tabs' button from the title-bar */
- #alltabs-button {
- display: none !important;
- }
- :root {
- --green: #16484b;
- --yellow: #f8e168;
- --orange: #ff4500;
- }
- /* Change the background color of the main browser window */
- #main-window {
- background-color: var(--green) !important;
- }
- /* Change the background color of the tab bar */
- #TabsToolbar {
- background-color: var(--green) !important;
- }
- /* Change the background color of the navigation toolbar */
- #nav-bar {
- background-color: var(--green) !important;
- }
- /* Change the background color of the bookmarks toolbar */
- #PersonalToolbar {
- background-color: var(--green) !important;
- }
- /* Change the color of icons on toolbars */
- #nav-bar .toolbarbutton-1 {
- color: var(--orange) !important;
- }
- /* Change the color of icons in menus of navbar */
- #nav-bar .menu-iconic-icon {
- fill: var(--orange) !important;
- }
- /* Change the color of icons in menus of navbar */
- #personal-bookmarks .menu-iconic-icon {
- fill: var(--orange) !important;
- }
- #PersonalToolbar .toolbarbutton-1 {
- color: var(--orange) !important;
- }
- /* Change the background and label colors of tabs */
- .tab-background {
- background-color: var(--green) !important;
- color: var(--yellow) !important;
- }
- .tab-background[selected] {
- background-color: var(--yellow) !important;
- color: var(--green) !important;
- font-family: 'JetBrains Mono', monospace !important;
- }
- .tab-label {
- color: var(--yellow) !important;
- }
- .tab-label[selected] {
- font-weight: bold;
- color: var(--green) !important;
- }
- /* Change the color of tab close button */
- .tabbrowser-tab .close-icon {
- fill: var(--orange) !important;
- }
- .tabbrowser-tab .close-icon:hover {
- fill: var(--yellow) !important;
- background-color: var(--orange) !important;
- border-radius: 4px;
- }
- /* Change the color of newtab button */
- #tabs-newtab-button {
- color: var(--orange) !important;
- }
- #tabs-newtab-button:hover {
- fill: var(--yellow) !important;
- background-color: var(--orange) !important;
- border-radius: 2px;
- }
- /* Change the background color of the URL bar */
- #urlbar {
- background-color: var(--green) !important;
- color: var(--orange) !important;
- }
- /* Change the background color of the search bar */
- #searchbar {
- background-color: var(--green) !important;
- color: var(--yellow) !important;
- }
- /* Change the text color of the URL bar */
- #urlbar-input {
- color: var(--orange) !important;
- }
- /* Change the text color of the search bar */
- #searchbar .searchbar-textbox {
- color: var(--yellow) !important;
- }
- #PlacesToolbarItems>.bookmark-item {
- fill: var(--orange) !important;
- color: var(--yellow);
- }
- #allTabsMenu-allTabsView .subviewbutton-iconic>.toolbarbutton-icon {
- fill: blue !important;
- }
- /* EXPERIEMNTS with dropdown menus ==================================================================== */
- /* bookmarks panel */
- menupopup {
- --panel-background: var(--green) !important;
- --panel-color: var(--yellow) !important;
- --panel-border-radius: 14px !important;
- }
- /* hamburger panel */
- panelview {
- background: var(--green) !important;
- color: var(--yellow) !important;
- }
Add Comment
Please, Sign In to add comment