Created
March 28, 2018 20:00
-
-
Save r15ch13/9e1789e38bd9a160c41cbd0eacb82f5d to your computer and use it in GitHub Desktop.
Dark about:home and about:newtab for Firefox
This file contains hidden or 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
| /* Copy to %appdata%\Mozilla\Firefox\Profiles\<profile>\chrome */ | |
| @-moz-document url("about:newtab"), url("about:home") | |
| { | |
| body{ | |
| background: #252525 !important; | |
| color: #ddd !important; | |
| } | |
| #search-wrapper, | |
| .search-wrapper .search-label, | |
| .search-wrapper .search-button, | |
| .card-outer .card-context-icon, | |
| .card-outer .context-menu-button, | |
| .top-site-outer .context-menu-button, | |
| .prefs-pane-button button { | |
| filter: invert(1) !important; | |
| } | |
| .collapsible-section.active { | |
| background: rgba(11, 11, 11, 0.6) !important; | |
| } | |
| .card-outer, | |
| .prefs-pane .sidebar, | |
| .prefs-pane .actions { | |
| background: #151515 !important; | |
| color: #ddd !important; | |
| } | |
| .prefs-pane .sidebar, | |
| .prefs-pane .actions { | |
| border-left: 1px solid #777 !important; | |
| } | |
| .card-outer:-moz-any(:hover, :focus, .active):not(.placeholder), | |
| .top-sites-list:not(.dnd-active) .top-site-outer:-moz-any(.active, :focus, :hover) .tile { | |
| box-shadow: 0 0 0 5px #777 !important; | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment