Last active
December 3, 2017 09:34
-
-
Save natyusha/7bc956ddc1069e047ad7 to your computer and use it in GitHub Desktop.
userChrome.css using: Dark Theme w/ Compact Density + Dina TTF
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@namespace url("http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"); | |
@-moz-document url('chrome://browser/content/browser.xul') { | |
* { | |
font-family: "Dina TTF" !important; | |
font-size: 12px !important; | |
} | |
#TabsToolbar .tabbrowser-tab:after, #TabsToolbar .tabbrowser-tab:before, .tab-close-button, | |
.titlebar-placeholder[type="pre-tabs"], .titlebar-placeholder[type="post-tabs"], #back-button, #forward-button { | |
display: none !important; | |
} | |
:root { | |
--ui-basecolour: #313131; | |
--ui-darkcolour: #1c1c1c; | |
--ui-accentcolour: #f4702d; | |
--tab-selection-background-color: var(--ui-basecolour) !important; | |
--tab-hover-background-color: var(--ui-basecolour) !important; | |
--chrome-secondary-background-color: var(--ui-basecolour) !important; | |
--url-and-searchbar-background-color: var(--ui-basecolour) !important; | |
--chrome-background-color: var(--ui-darkcolour) !important; | |
--tab-line-color: var(--ui-accentcolour) !important; | |
--tabs-border: var(--ui-basecolour) !important; | |
--chrome-selection-background-color: var(--ui-accentcolour) !important; | |
background-color: var(--ui-darkcolour) !important; | |
} | |
#urlbar { | |
border-color: var(--ui-basecolour) !important; | |
} | |
#nav-bar { | |
box-shadow: none !important; | |
} | |
#main-window, browser[type="content-primary"], browser[type="content"], | |
tabbrowser#content, #content, browser[type="content"] > html { | |
background: var(--ui-darkcolour) !important; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment