Merge pull request #35 from alphapapa/multi-theme

Release Multi-Theme
pull/40/head
Jay Kamat 6 years ago committed by GitHub
commit 1cc3a3fec2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -1,25 +1,13 @@
# ** Variables
VPATH = .:sites
CSS_DIR := css
COLORS := light dark
.PHONY: all screenshots
COMMON_FILES := $(wildcard styl/*.styl) sites/generic.styl
SITES := $(patsubst sites/%.styl,%,$(wildcard sites/*))
all:
@./make.py
# ** Functions
make_site = for color in $(COLORS); do stylus --include styl --import styl/$$color.styl --import styl -p sites/$(1).styl >$(CSS_DIR)/solarized-$(1)-$$color.css; done
clean:
rm -rf css
# ** Rules
.PHONY: all
all: $(SITES)
release:
bash release.sh
$(CSS_DIR):
mkdir $(CSS_DIR)
# Make all-sites explicitly depend on everything so it will be rebuilt when anything changes
$(CSS_DIR)/solarized-all-sites-*.css: $(wildcard sites/*)
$(SITES): %: $(CSS_DIR)/solarized-%-dark.css $(CSS_DIR)/solarized-%-light.css
$(foreach color, $(COLORS), $(CSS_DIR)/solarized-%-$(color).css): sites/%.styl $(COMMON_FILES) | $(CSS_DIR)
$(call make_site,$*)
screenshots:
@./make.py screenshots

@ -5,29 +5,36 @@ This is a small (growing?) collection of user-stylesheets based upon the [[http:
Wouldn't it be nice if (almost) every web site looked Solarized? I thought so. So here is a start. :)
** Contents :TOC:
- [[#solarizedeverything][Solarized...Everything?]]
- [[#screenshots][Screenshots]]
- [[#installation][Installation]]
- [[#development][Development]]
- [[#license][License]]
- [[#solarizedeverything][Solarized...Everything?]]
- [[#screenshots][Screenshots]]
- [[#github][GitHub]]
- [[#dark][Dark]]
- [[#light][Light]]
- [[#wikipedia][Wikipedia]]
- [[#dark-1][Dark]]
- [[#light-1][Light]]
- [[#installation][Installation]]
- [[#development][Development]]
- [[#credits][Credits]]
- [[#license][License]]
** Screenshots
*** GitHub
**** Dark
[[screenshots/github-dark.png]]
[[https://raw.githubusercontent.com/alphapapa/solarized-everything-css/screenshots/solarized-dark/github.png]]
**** Light
[[screenshots/github-light.png]]
[[https://raw.githubusercontent.com/alphapapa/solarized-everything-css/screenshots/solarized-light/github.png]]
*** Wikipedia
**** Dark
[[screenshots/wikipedia-dark.png]]
[[https://raw.githubusercontent.com/alphapapa/solarized-everything-css/screenshots/solarized-dark/mediawiki.org.png]]
**** Light
[[screenshots/wikipedia-light.png]]
[[https://raw.githubusercontent.com/alphapapa/solarized-everything-css/screenshots/solarized-light/mediawiki.org.png]]
** Installation :noexport_1:
@ -42,34 +49,36 @@ You may install some of the stylesheets directly in your browser from [[http://u
Install the stylesheet of your choice according to your browser's method (e.g. using the Stylish extension in Firefox).
CSS files for each theme are in the =css= directory.
**** Files
- ~solarized-all-sites-*.css~
- ~theme-all-sites-*.css~
These have all the sites' styles smushed into one big file. Might work pretty well for most sites. If the collection grows, it might begin to have conflicts--but it still might work pretty well. It might be a lot better than adding a separate stylesheet for every site you visit...
- ~solarized-generic-*.css~
- ~theme-generic-*.css~
These are intended to be generic, suitable for many simple sites. They probably won't do much for fancy, popular sites with lots of custom CSS, but for simple, mostly unstyled sites, they might work okay.
- ~solarized-mediawiki-*.css~
- ~theme-mediawiki-*.css~
For MediaWiki sites, like Wikipedia
- ~solarized-disqus-*.css~
- ~theme-disqus-*.css~
For Disqus comments
- ~solarized-github-*.css~
- ~theme-github-*.css~
For GitHub
- ~solarized-google-*.css~
- ~theme-google-*.css~
For Google
- ~solarized-hackernews-*.css~
- ~theme-hackernews-*.css~
For Hacker News
- ~solarized-planet.emacsen.org-*.css~
- ~theme-planet.emacsen.org-*.css~
For [[http://planet.emacsen.org][Planet Emacsen]]
- ~solarized-stackexchange-*.css~
- ~theme-stackexchange-*.css~
For StackExchange sites. Not all sites are covered, but some of the main ones are. Patches welcome.
- ~solarized-sakai-*.css~
- ~theme-sakai-*.css~
For sites hosted by [[https://sakaiproject.org/][sakai]], a popular course management program.
** Development :noexport_1:
To make changes, just edit the =.styl= files and run =make=. (You need to have Stylus installed, of course.)
Basically, nearly the only things that should be in =dark.styl= or =light.styl= should be changes to the =color-= variables that adjust it for light or dark. Everything else should go in =sites/*.styl=. Colors are defined as =color-= variables, and mixins are used to insert common CSS properties (like =color=, =background=, etc) with =!important=. Most changes can be made without inserting CSS properties directly into the selectors.
Basically, nearly the only things that should be in =themes/*/*.styl= should be theme specific colors. Everything else should go in =sites/*.styl=. Colors are defined as =color-= variables, and mixins are used to insert common CSS properties (like =color=, =background=, etc) with =!important=. Most changes can be made without inserting CSS properties directly into the selectors.
I highly recommend using Emacs with =stylus-mode= and =outline-minor-mode=, but, of course, you can use whatever you like. :)
@ -82,20 +91,31 @@ Stylus can be very confusing when it comes to importing/requiring sheets into ot
This is how the sheets ~require~ in this project:
+ =Makefile=
- =styl/{dark,light}.styl= (in Makefile syntax: ~$$color.styl~)
+ =colors=
+ Contents of ={dark,light}.styl=
- =theme=: contains custom theme files. Each theme corresponds to a group of css files.
- =*/{dark,light}.styl= (in Makefile syntax: ~$$color.styl~)
- =colors=
- Contents of ={dark,light}.styl=
- =styl= (which loads =styl/index.styl=)
+ =generic=
- =mixins=
- =sites/*.styl=: The site-specific sheets, as well as =generic.styl=, which applies to all of them, and also builds as a separate sheet for non-specific sites. =all-sites.styl= puts all of the site-specific sheets into one big CSS file, which some people may prefer over setting up custom CSS for each site in their browser.
- =mixins=
- =sites/*.styl=: The site-specific sheets, as well as =generic.styl=, which applies to all of them, and also builds as a separate sheet for non-specific sites. =all-sites.styl= puts all of the site-specific sheets into one big CSS file, which some people may prefer over setting up custom CSS for each site in their browser. Styles starting with =_= will not be included in =all-sites.styl=
This way, the color value-name mappings are loaded first, after which those friendly names can be used in the files that actually style elements and pages.
*** New Themes
It's easy to add your own themes:
This way, the Solarized color values are loaded first, followed by the dark- or light-themed mappings of those color values to friendly names, after which those friendly names can be used in the sheets that actually style elements and pages.
1. Copy an existing theme directory in the =themes/= directory, giving it a new name.
2. Modify it as required.
3. Run =make= in the project root directory to build the CSS files.
** Credits
+ Thanks to [[https://github.com/The-Compiler][Florian Bruhin]] for contributing the Reddit and DuckDuckGo sheets, as well as several fixes and improvements.
+ Thanks to [[https://github.com/jgkamat][Jay Kamat]] for contributing the Sakai stylesheet and several fixes and improvements.
+ Thanks to [[https://github.com/cal2195][Cal Martin]] for the gruvbox theme.
+ Thanks to [[https://github.com/non-Jedi][Adam Beckmeyer]] for adapting [[https://github.com/romainl/Apprentice][Romain Lafourcade's Apprentice theme]].
** License

File diff suppressed because it is too large Load Diff

@ -0,0 +1,262 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
code {
font-size: 1.2em;
}
pre {
box-shadow: none;
background-color: #444 !important;
font-size: 1.2em;
}
img {
margin: 0.25em;
}
.buttons {
background-color: #272727 !important;
box-shadow: 0 0 10px #ff8700;
color: #ff8700 !important;
font-family: sans-serif;
font-size: 1.5rem;
position: fixed;
left: -4.5em;
top: 50%;
transform: rotate(90deg);
filter: opacity(50%);
}
.hsReviewPanel {
display: none;
}
.title {
border: 0;
}
#postamble {
display: none;
}
#banner {
text-align: center;
}
#tabs {
background-color: #272727 !important;
float: left;
margin: 0px 0px 20px 0px;
padding: 0;
width: 100%;
font-family: sans-serif;
}
#tabs ul {
margin: 0;
padding: 0;
}
#tabs li {
float: left;
list-style-type: none;
margin: 0px 2px 0px 0px;
padding: 0px 0px 0px 0px;
white-space: nowrap;
}
#tabs li a {
display: block;
font-size: 120%;
font-weight: bold;
margin: 0;
padding: 4px 10px 4px 10px;
text-decoration: none;
}
#tabs li a:hover {
color: #8080ff !important;
}
#tabs li.ui-tabs-active a {
background-color: #444 !important;
color: #4040ff !important;
}
#content {
clear: both;
}
#postamble {
text-align: right;
}
blockquote {
background-color: #272727 !important;
padding-left: 0.75em;
padding-right: 0.75em;
padding-top: 0.01em;
padding-bottom: 0.01em;
overflow: hidden;
margin-left: 0;
}
.outline-text-2,
.outline-text-3,
.outline-text-4,
.outline-text-5,
.outline-text-6 {
padding-left: 4%;
}
.outline-3 {
padding-left: 4%;
}
.outline-4 {
padding-left: 4%;
}
.outline-5 {
padding-left: 4%;
}
.outline-6 {
padding-left: 4%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
border-bottom: 2px solid;
border-color: #444 !important;
}
a:hover {
text-decoration: underline;
}
#search {
display: block;
float: right;
}
.tag {
background-color: #262626 !important;
color: #ff8700 !important;
border: 0px;
}
.tag span {
background-color: #444 !important;
margin: 0.25em;
padding: 0.25em;
}
#table-of-contents {
display: table;
float: right;
}
#table-of-contents h2 {
display: none;
}
#table-of-contents li {
list-style-type: none;
}
#table-of-contents a:hover {
text-decoration: underline;
}
#minitoc {
background-color: #272727 !important;
position: fixed;
bottom: 5em;
left: -5.5em;
transform: rotate(90deg);
box-shadow: 0px 0px 10px #ff8700;
padding-top: 0.1em;
padding-bottom: 0.1em;
padding-left: 0.5em;
padding-right: 0.5em;
filter: opacity(50%);
z-index: 200;
}
#minitoc:hover {
padding: 1em;
filter: opacity(100%);
transform: rotate(0deg);
left: 0;
}
#minitoc h2 {
margin-top: 0;
margin-bottom: 0;
}
#minitoc a {
display: block;
font-family: sans-serif;
text-decoration: none;
}
#minitoc a:hover {
text-decoration: underline;
}
#minitoc a {
display: none;
}
#minitoc:hover a {
display: block;
}
#toTop {
top: -100px /* together with this to put the div at the top */;
position: fixed /* this is the magic */;
text-align: center;
z-index: 999;
display: none;
}
#toTop:hover {
text-decoration: underline;
}
#left-panel-wrapper {
display: none;
position: fixed;
z-index: 200;
}
#left-panel-contents {
display: none;
position: fixed;
text-align: left;
top: 0;
z-index: 200;
}
#left-panel-button {
transform: rotate(90deg);
left: -23px;
position: fixed;
top: 50%;
z-index: 200;
}
#right-panel-wrapper {
position: fixed;
z-index: 200;
}
#right-panel-contents {
display: none;
z-index: 200;
position: fixed;
text-align: left;
top: 0;
}
.snippet-copy-to-clipboard {
display: none;
position: absolute;
left: 50px;
top: 50px;
}
.org-ul {
margin-top: 1em;
}
.org-ul li {
margin-top: 0.5em;
}
.org-ul > li > a {
font-family: sans-serif;
}

@ -0,0 +1,33 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.post-actions {
background-color: #272727 !important;
}
.textarea-wrapper {
background-color: #262626 !important;
color: #bcbcbc !important;
}

@ -0,0 +1,87 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.search--adv {
background-color: #272727 !important;
}
.search__autocomplete > .acp-wrap {
background-color: #262626 !important;
}
.search__autocomplete > .acp-wrap > .acp--highlight {
background-color: #272727 !important;
color: #87875f !important;
}
.search__autocomplete > .acp-wrap strong {
color: #87875f !important;
}
.site-wrapper > #header_wrapper {
background-color: #262626 !important;
}
.site-wrapper > #header_wrapper > #header {
background-color: #262626 !important;
}
.search--header {
background-color: #272727 !important;
}
.zci {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.tile--info {
background-color: #262626 !important;
}
.tile--info__expand {
background-color: #303030 !important;
}
.tile--c {
background-color: #303030 !important;
color: #87875f !important;
}
.module__text {
color: #bcbcbc !important;
}
.about-info-box__heading {
color: #ff8700 !important;
}
.result.highlight {
background-color: #272727 !important;
}
.result__snippet {
color: #bcbcbc !important;
}
.result__snippet b {
color: #ff8700 !important;
}
.btn--top {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.btn--top:hover {
background-color: #303030 !important;
}
.result--sep--hr:before {
background-color: #303030 !important;
}

@ -0,0 +1,52 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}

@ -0,0 +1,952 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
* {
border-color: #272727 !important;
}
.news .alert .pull-info {
background-color: #585858 !important;
}
.link-gray-dark,
.text-gray-dark {
color: #bcbcbc !important;
}
.bg-white {
background-color: #262626 !important;
}
.border {
border-color: #800080 !important;
}
.breadcrumb .repo-root.js-repo-root a {
color: #00f !important;
}
.breadcrumb strong.final-path {
color: #bcbcbc !important;
}
button.ajax-pagination-btn {
background-color: #272727 !important;
color: #ff8700 !important;
}
button.ajax-pagination-btn:hover {
background-color: #303030 !important;
}
.comment-reactions .btn-link {
color: #bcbcbc !important;
}
.comment-reactions .user-has-reacted {
background-color: #272727 !important;
}
.text-gray-dark {
color: #bcbcbc !important;
}
.contrib-number {
color: #ff8700 !important;
}
.counter {
background-color: #444 !important;
color: #ff8700 !important;
}
.diffstat-bar {
color: #bcbcbc !important;
}
.file-header {
background-color: #272727 !important;
}
.file-history-tease .participation {
background-color: #262626 !important;
color: #bcbcbc !important;
}
.file-history-tease .participation .quickstat strong {
color: #bcbcbc !important;
}
.file-history-tease .participation a {
color: #585858 !important;
}
.file-history-tease .author a {
color: #bcbcbc !important;
}
.file-history-tease-header {
background-color: #272727 !important;
}
.file-info-divider {
background-color: #303030 !important;
}
.file-wrap {
color: #bcbcbc !important;
}
.file-wrap * {
background-color: transparent !important;
}
.filter-bar {
background-color: #585858 !important;
}
a.filter-item,
.filter-item {
color: #bcbcbc !important;
}
a.filter-item.selected,
.filter-item.selected {
background-color: #272727 !important;
color: #ff8700 !important;
}
a.filter-item:hover,
.filter-item:hover {
background-color: #303030 !important;
color: #ff8700 !important;
}
.flash {
background-color: #272727 !important;
color: #ff8700 !important;
}
.gh-header-number {
color: #585858 !important;
}
.ellipsis-expander,
.hidden-text-expander a {
background-color: #272727 !important;
}
.issue-meta {
color: #585858 !important;
}
.issues-listing a {
color: #bcbcbc !important;
}
.muted-link {
color: #bcbcbc !important;
}
.new-user-avatar-cta {
background-color: #272727 !important;
border-color: #585858 !important;
color: #ff8700 !important;
}
.overall-summary {
border-color: #303030 !important;
}
.pinned-repo-item.border {
border-color: #585858 !important;
}
.progress-bar {
background-color: #303030 !important;
}
.simple-box {
background-color: #272727 !important;
}
.social-count {
background-color: #272727 !important;
border-color: #303030 !important;
color: #ff8700 !important;
}
.scope-badge {
background-color: #303030 !important;
color: #ff8700 !important;
}
.stats-switcher-wrapper {
background-color: #262626 !important;
}
.stats-switcher-wrapper .numbers-summary li a {
color: #bcbcbc !important;
}
.table-list-header-toggle .btn-link {
color: #585858 !important;
}
.table-list-header-toggle .btn-link.selected {
color: #bcbcbc !important;
}
.text-emphasized {
color: #ff8700 !important;
}
.text-diff-added {
color: #008000 !important;
}
.text-diff-deleted {
color: #f00 !important;
}
.avatar,
.timeline-comment-avatar {
filter: opacity(75%);
}
.blob-code {
background-color: #262626 !important;
color: #bcbcbc !important;
}
.blob-code-addition {
background-color: rgba(64,255,64,0.1) !important;
}
.blob-code-addition .x {
background-color: #006000 !important;
color: #dedede !important;
}
.blob-code-deletion {
background-color: rgba(255,0,0,0.2) !important;
}
.blob-code-deletion .x {
background-color: #800000 !important;
color: #dedede !important;
}
.blob-code-hunk {
background-color: #272727 !important;
border-color: #585858 !important;
}
.blob-code-inner {
color: #bcbcbc !important;
}
.blob-num {
background-color: #262626 !important;
color: #585858 !important;
}
.file {
color: #bcbcbc !important;
}
.form-control {
background-color: #272727 !important;
border-color: #303030 !important;
}
.pl-c {
color: #585858 !important;
}
.pl-c1 {
color: #00f !important;
}
.pl-e {
color: #ff0 !important;
}
.pl-en {
color: #00f !important;
}
.pl-k {
color: #008000 !important;
font-weight: bold !important;
}
.pl-pds {
color: #0ff !important;
}
.pl-s {
color: #0ff !important;
}
.pl-smi {
color: #bcbcbc !important;
}
.pl-v {
color: #008000 !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #008000 !important;
background-color: transparent !important;
}
.pl-md {
color: #f00 !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #272727 !important;
}
.boxed-group * {
border-color: #303030 !important;
}
.boxed-group article {
background-color: #262626 !important;
color: #bcbcbc !important;
}
.boxed-group > h3 {
background-color: #444 !important;
color: #ff8700 !important;
}
.more-repos {
background-color: #444 !important;
box-shadow: inset 0 1px 0 #303030 !important;
}
.boxed-group-inner {
background-color: #262626 !important;
}
.branch-action-body {
background-color: #272727 !important;
border-color: #585858 !important;
}
.branch-action-body div {
border-color: #585858 !important;
}
.branch-action-state-clean .branch-action-icon {
background-color: #008000 !important;
}
.branch-action-state-dirty .branch-action-icon,
.branch-action-state-unstable .branch-action-icon,
.branch-action-state-unknown .branch-action-icon {
background-color: #ff0 !important;
color: #fff !important;
}
.text-shadow-light,
.branch-group-name,
.branch-summary {
color: #bcbcbc !important;
text-shadow: none !important;
}
.branch-a-b-count .meter {
background-color: #ff0 !important;
}
.more-branches,
.branch-group-heading,
.branch-infobar,
.branch-name {
border-color: #585858 !important;
background-color: #272727 !important;
}
.State,
.State:visited {
color: #fff !important;
}
.State--red {
background-color: #f00 !important;
color: #262626 !important;
}
.State--green {
background-color: #008000 !important;
color: #262626 !important;
}
.select-menu-filters {
background-color: #585858 !important;
color: #ff8700 !important;
}
.js-select-menu-tab {
background-color: #444 !important;
color: #ff8700 !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #303030 !important;
color: #262626 !important;
}
.signed-commit-header {
background-color: #262626 !important;
}
.build-status-item {
background-color: #444 !important;
color: #ff8700 !important;
}
.build-status-item .build-status-details {
color: #00f !important;
}
.capped-card h3 {
background-color: #444 !important;
}
.capped-card h3 a {
color: #ff8700 !important;
}
.capped-card-content {
background-color: #262626 !important;
}
.capped-list th {
background-color: #585858 !important;
color: #ff8700 !important;
}
.capped-list tr:nth-child(2n) {
background-color: #272727 !important;
}
.commit,
.commit-meta,
.commit-icon .octicon,
.commit-group-title .octicon-git-commit {
background-color: #262626 !important;
}
.commit *,
.commit-meta *,
.commit-icon .octicon *,
.commit-group-title .octicon-git-commit * {
border-color: #303030 !important;
}
.commit-author {
color: #bcbcbc !important;
}
.commit-author-section {
color: #bcbcbc !important;
}
.commit-meta {
color: #585858 !important;
}
.commit-meta .sha-block {
color: #585858 !important;
}
.commit-meta .sha-block .sha {
color: #bcbcbc !important;
}
.commit-ref,
code.commit-sha {
background-color: #272727 !important;
color: #ff8700 !important;
}
.commit-ref .user,
code.commit-sha .user {
color: #0ff !important;
}
.commit-branches *,
.commit-tease,
.commit-title {
background-color: rgba(0,0,255,0.2) !important;
border: none !important;
}
.commit-branches * *,
.commit-tease *,
.commit-title * {
color: #ff8700 !important;
}
.commit-tease-contributors {
background-color: #272727 !important;
}
div.commit-branches,
div.commit.full-commit p.commit-title,
qul.branches-list {
background-color: #272727 !important;
color: #ff8700 !important;
}
div.commit-branches *,
div.commit.full-commit p.commit-title *,
qul.branches-list * {
background-color: #272727 !important;
color: #ff8700 !important;
}
.commit-meta {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.commits-listing:before {
background-color: #272727 !important;
}
.full-commit {
background-color: #272727 !important;
border-color: #585858 !important;
}
.full-commit * {
text-shadow: none !important;
}
.commit-desc pre {
background-color: transparent !important;
color: #bcbcbc !important;
}
.commit.table-list-item {
border-color: #272727 !important;
}
.commit-meta.commit-author-section {
background-color: transparent !important;
color: #bcbcbc !important;
}
.table-list-cell .commit-title {
background-color: transparent !important;
color: #bcbcbc !important;
}
.completeness-indicator-success {
background-color: #008000 !important;
}
.completeness-indicator-problem {
background-color: #ff0 !important;
color: #fff !important;
}
.copyable-terminal {
background-color: #272727 !important;
}
.blankslate {
background-color: #272727 !important;
color: #ff8700 !important;
}
.comment-form-head.tabnav {
background-color: #262626 !important;
}
.conversation-list-heading .inner {
background-color: #262626 !important;
}
.discussion-item-closed .discussion-item-icon {
background-color: #f00 !important;
color: #ff8700 !important;
}
.discussion-item-icon {
background-color: #303030 !important;
color: #ff8700 !important;
}
.discussion-item-icon.octicon {
color: #ff8700 !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #ff8700 !important;
}
.discussion-timeline:before {
background-color: #800080 !important;
}
.discussion-timeline-actions {
background-color: #262626 !important;
}
.drag-and-drop {
background-color: #272727 !important;
}
.new-discussion-timeline .closed-banner {
background-color: #800080 !important;
border-color: #262626 !important;
}
.timeline-comment {
background-color: #262626 !important;
border-color: #303030 !important;
}
.timeline-comment-header {
background-color: #272727 !important;
}
.timeline-comment-wrapper {
border-color: #262626 !important;
}
.donut-chart > .pending {
fill: #ff0 !important;
}
.dropdown-divider {
background-color: #800080 !important;
}
.dropdown-item {
color: #bcbcbc !important;
}
.dropdown-item:hover {
background-color: #303030 !important;
color: #ff8700 !important;
}
.dropdown-menu {
background-color: #444 !important;
color: #ff8700 !important;
border-color: #800080 !important;
}
.files * {
color: #bcbcbc !important;
}
.files tbody tr {
border-color: #272727 !important;
}
.files tbody tr:nth-child(even) {
background-color: #242424 !important;
}
.files tbody tr:nth-child(odd) {
background-color: #262626 !important;
}
.files tbody tr:hover * {
background-color: #444 !important;
}
.btn {
background-image: linear-gradient(to bottom, #303030, #272727) !important;
border-color: #303030 !important;
color: #ff8700 !important;
}
.btn:hover {
background-color: #585858 !important;
}
.btn-primary,
.issues-listing .btn-primary {
background-color: #008000 !important;
background-image: linear-gradient(#008000, #004000) !important;
color: #000 !important;
filter: opacity(62.5%);
}
.entry-title a {
color: #00f !important;
}
.Header {
background-color: #585858 !important;
border-bottom-color: #303030 !important;
}
.Header a {
color: #ff8700 !important;
}
.lang {
color: #ff8700 !important;
}
.reponav-item,
.pagehead-tabs-item {
background-color: #272727 !important;
border-color: transparent !important;
color: #bcbcbc !important;
}
.reponav-item:visited,
.pagehead-tabs-item:visited {
color: #bcbcbc !important;
}
.reponav-item.selected,
.pagehead-tabs-item.selected {
background-color: #262626 !important;
border-color: #f00 #444 transparent !important;
}
.site-footer-links * {
color: #bcbcbc !important;
}
.Box-row--focus-gray.navigation-focus {
background-color: #585858 !important;
color: #ff8700 !important;
}
.js-directory-link {
color: #5f87af !important;
}
.js-site-search-form input,
.js-chromeless-input-container {
background-color: #262626 !important;
border-color: #303030 !important;
}
a.label {
color: #000 !important;
filter: opacity(75%);
}
.notifications-list a {
color: #bcbcbc !important;
}
.notifications-list li {
background-color: #262626 !important;
}
.octicon,
.octicon-repo {
color: base1 !important;
}
.octicon.type-icon-state-closed,
.octicon-repo.type-icon-state-closed {
color: rgba(255,0,0,0.65) !important;
}
.octicon.type-icon-state-merged,
.octicon-repo.type-icon-state-merged {
color: #ee82ee !important;
}
.octicon.type-icon-state-open,
.octicon-repo.type-icon-state-open {
color: rgba(0,176,0,0.65) !important;
}
.octicon-alert {
color: #fff !important;
}
.octicon-x {
color: #f00 !important;
}
.octicon-check {
color: #008000 !important;
}
.octicon-primitive-dot {
color: #ff0 !important;
}
.octicon-clippy {
color: #ff8700 !important;
}
.octicon-git-pull-request,
.octicon-diff {
color: #fff !important;
}
.octicon-markdown {
color: #585858 !important;
}
.orghead {
background-color: #272727 !important;
border-color: #800080 !important;
border-bottom: 0px !important;
color: #ff8700 !important;
}
.org-name {
color: #ff8700 !important;
}
.pagehead.orghead {
background-color: #272727 !important;
}
.outline-box-highlighted {
background-color: #272727 !important;
color: #ff8700 !important;
}
.pagination .current {
background-color: #303030 !important;
color: #ff8700 !important;
}
.pagination .disabled {
background-color: #272727 !important;
color: #585858 !important;
}
.pagination .disabled:hover {
background-color: #272727 !important;
}
.pagination .gap {
background-color: #272727 !important;
color: #585858 !important;
}
.pagination a {
background-color: #272727 !important;
border-color: #262626 !important;
color: #bcbcbc !important;
}
.pagination a:hover {
background-color: #303030 !important;
color: #262626 !important;
}
.empty-cell,
.diffbar {
background-color: #262626 !important;
}
.merge-status-item {
background-color: #444 !important;
}
.merge-message {
background-color: #585858 !important;
}
.pr-toolbar {
background-color: #262626 !important;
}
.review-thread-reply {
background-color: #272727 !important;
}
.review-thread-reply .inline-comment-form {
background-color: #262626 !important;
}
.octicon-git-merge {
color: #fff !important;
}
.uploaded-files {
background-color: #262626 !important;
}
.upload-progress {
background-color: #272727 !important;
box-shadow: 1px 0px 0px #272727 inset;
}
#readme .plain {
background-color: #262626 !important;
}
.markdown-body,
.markdown-body table * {
background-color: #262626 !important;
border-color: #800080 !important;
color: #bcbcbc !important;
}
.markdown-body a,
.markdown-body table * a {
color: #5f87af !important;
}
.markdown-body code,
.markdown-body table * code,
.markdown-body pre,
.markdown-body table * pre {
background-color: #272727 !important;
}
.markdown-body hr,
.markdown-body table * hr {
background-color: #303030 !important;
}
.markdown-body img,
.markdown-body table * img {
background-color: #262626 !important;
}
.task-list-item.hovered {
background-color: #272727 !important;
}
.range-editor {
background-color: #272727 !important;
}
.compare-pr-placeholder {
background-color: #585858 !important;
}
ul.comparison-list > li.title {
background-color: #444 !important;
}
ul.comparison-list {
background-color: #585858 !important;
}
.repository-description {
color: #bcbcbc !important;
}
.repository-meta .edit-repository-meta label {
color: #bcbcbc !important;
}
.pagehead.repohead {
background-color: #272727 !important;
}
.repository-content .RecentBranches {
background-color: #272727 !important;
border-color: #800080 !important;
}
.repohead-details-container a {
color: #bcbcbc !important;
}
.select-menu-modal {
border-color: #bcbcbc !important;
}
.select-menu-modal * {
color: #bcbcbc !important;
}
.select-menu-header,
.select-menu-header * {
background-color: #272727 !important;
color: #ff8700 !important;
text-shadow: none !important;
}
.select-menu-item {
background-color: #262626 !important;
}
.select-menu-item.navigation-focus,
.select-menu-item.navigation-focus.selected,
.select-menu-item.navigation-focus.select-menu-action,
.select-menu-item-text.navigation-focus {
background-color: #303030 !important;
color: #ff8700 !important;
}
.repository-sidebar {
background-color: #262626 !important;
}
.thread-subscription-status {
background-color: #262626 !important;
}
.sunken-menu {
background-image: linear-gradient(to right, #272727 0%, #262626 8px) !important;
box-shadow: 1px 0px 0px #272727 inset;
}
.sunken-menu:before {
background-image: linear-gradient(#262626, transparent) !important;
}
.sunken-menu:after {
background-image: linear-gradient(transparent, #262626) !important;
}
.sunken-menu-item {
border-color: #262626 !important;
}
.sunken-menu-item.selected {
background-color: #262626 !important;
border-color: #444 !important;
color: #ff8700 !important;
}
.sunken-menu-item.selected:after {
background-color: #ff8700 !important;
}
.sunken-menu-separator:before {
background-image: linear-gradient(to right, #272727 70%, #262626 100%) !important;
}
.state {
color: #ff8700 !important;
}
.state-closed {
background-color: #f00 !important;
}
.state-open {
background-color: #008000 !important;
}
.subnav-item {
color: #bcbcbc !important;
}
.subnav-item:hover {
background-color: #585858 !important;
}
.subnav-item:visited {
color: #bcbcbc !important;
}
.subnav-item.selected {
background-color: #272727 !important;
}
.subnav-links a:hover {
background-color: #272727 !important;
}
.subnav-search input {
border-color: #585858 !important;
}
.right .tabnav-extra {
color: #585858 !important;
}
a.tabnav-tab,
.tabnav-tab {
border-color: transparent !important;
color: #585858 !important;
}
a.tabnav-tab.selected,
.tabnav-tab.selected {
background-color: #262626 !important;
background-image: linear-gradient(#272727, #262626) !important;
border-color: #800080 !important;
color: #ff8700 !important;
}
.table-list tr,
.table-list li {
background-color: #262626 !important;
}
.table-list tr:hover,
.table-list li:hover {
background-color: #444 !important;
}
.table-list-header {
background-color: #272727 !important;
}
.text-pending {
color: #ff0 !important;
}
.text-pending .octicon-primitive-dot {
color: #ff0 !important;
}
.text-red {
color: #f00 !important;
}
.timeline-commits .commit-meta {
background-color: #262626 !important;
}
.timeline-commits .commit-meta .commit-id {
color: #585858 !important;
}
.topic-tag.topic-tag-link {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.underline-nav-item {
color: #bcbcbc !important;
}
.underline-nav-item.selected {
border-bottom-color: #f00 !important;
color: #bcbcbc !important;
}
.user-profile-nav {
background-color: #272727 !important;
border-color: #800080 !important;
}
.user-profile-sticky-bar:after {
background-color: #272727 !important;
border-color: #800080 !important;
}
.graphs .area {
fill: #008000;
}
.summary-stats li .num {
color: #ff8700 !important;
}
.viz {
background-color: #585858 !important;
}
.facebox-popup {
color: #bcbcbc !important;
background-color: #262626 !important;
}
.facebox-popup .octicon {
color: #fff !important;
}
.facebox-popup .owner-select-target {
color: #bcbcbc !important;
background-color: #272727 !important;
}
.facebox-popup .owner-select-target:hover {
background-color: #303030 !important;
}
.suggester {
background-color: #444 !important;
}
.suggester li.navigation-focus {
background-color: #303030 !important;
}

@ -0,0 +1,74 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.sfbgg {
background-color: #272727 !important;
}
.sbib_a {
background: linear-gradient(to bottom, #272727, #262626) !important;
}
input#lst-ib,
#sb_ifc0.sbib_b,
#gs_taif0 {
background: transparent !important;
}
#lst-ib,
.sbsb_a {
background-color: #262626 !important;
}
.kpbb {
background-image: linear-gradient(to bottom, #4040ff, #00f) !important;
}
#hdtbSum {
background-color: #262626 !important;
}
#hdtbMenus.hdtb-td-o {
background-color: #262626 !important;
}
#hdtb-tls.hdtb-tl {
background-image: linear-gradient(to bottom, #262626, #272727) !important;
}
#hdtb-tls.hdtb-tl.hdtb-tl-sel {
background-image: linear-gradient(to bottom, #272727, #262626) !important;
}
#abar_button_opt.ab_button {
background: linear-gradient(to bottom, #262626, #272727) !important;
}
#appbar {
background-color: #262626 !important;
}
cite {
color: #008000 !important;
}
.ab_dropdown {
background-color: #262626 !important;
}
div.crp {
background-color: #262626 !important;
}
#fbar {
background-color: #272727 !important;
}

@ -0,0 +1,76 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
tr.Even {
background-color: #272727 !important;
}
.BigQuote {
background-color: #272727 !important;
color: #ff8700 !important;
}
.Cat1HL {
background-color: #303030 !important;
color: #ff8700 !important;
}
.Cat2HL {
background-color: #444 !important;
}
.Cat3HL {
background-color: #585858 !important;
}
.FeatureByline {
background-color: #272727 !important;
border: none !important;
}
.Headline {
background-color: #444 !important;
}
.QuotedText {
color: #ee82ee !important;
}
DIV.GAByline {
background-color: #272727 !important;
border: none !important;
}
table.OddEven tr:nth-child(even) {
background-color: #242424 !important;
}
table.OddEven tr:nth-child(odd) {
background-color: #262626 !important;
}
DIV.CommentBox {
border-color: #272727 !important;
}
DIV.CommentBox P.CommentTitle {
background-color: #444 !important;
}
#menu,
.topnav-container {
background-color: #272727 !important;
}
.navmenu ul {
background-color: #272727 !important;
}

@ -0,0 +1,144 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
body * {
border-color: #444 !important;
}
#content {
background-color: #262626 !important;
color: #bcbcbc !important;
}
#mw-head,
#mw-panel {
background-color: #272727 !important;
color: #ff8700 !important;
}
#mw-head div.portal,
#mw-panel div.portal {
background-image: none !important;
}
#mw-head {
background-color: #272727 !important;
background-image: linear-gradient(to bottom, #262626, #272727) !important;
}
#mw-panel,
#p-logo {
background-image: linear-gradient(to right, #262626, #272727) !important;
}
div.vectorTabs {
background-image: linear-gradient(to bottom, #262626, #272727) !important;
}
div.vectorTabs ul {
background-image: linear-gradient(to bottom, #262626, #272727) !important;
}
div.vectorTabs ul li {
background-color: #272727 !important;
background-image: none !important;
padding: 0px 1px 0px 1px !important;
}
div.vectorTabs span {
background-color: #272727 !important;
background-image: linear-gradient(to bottom, #262626, #272727) !important;
}
div.vectorTabs li.selected,
div.vectorTabs li.selected span {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #272727, #262626) !important;
}
.mw-wiki-logo {
filter: opacity(50%);
}
div#simpleSearch #searchInput {
background-color: #262626 !important;
padding: 0.05em 0px 0.2em 0.2em !important;
}
.ambox,
.infobox,
#toc,
#toctitle,
.toclevel-1 {
background-color: #272727 !important;
border-color: #444 !important;
color: #ff8700 !important;
}
.catlinks {
background-color: #272727 !important;
border-color: #444 !important;
color: #ff8700 !important;
}
.navbox {
background-color: #272727 !important;
border-color: #444 !important;
color: #ff8700 !important;
}
.navbox .th,
.navbox .navbox-title {
background-color: #444 !important;
}
.navbox-abovebelow,
th.navbox-group,
.navbox-subgroup,
.navbox-title {
background-color: #585858 !important;
}
.navbox-even {
background-color: #262626 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
border-color: #444 !important;
color: #ff8700 !important;
}
code {
background-color: #444 !important;
border-color: #444 !important;
color: #ff8700 !important;
}
div.thumbinner {
background-color: #272727 !important;
border-color: #444 !important;
}
img {
filter: opacity(75%);
}
img.thumbimage {
border-color: #444 !important;
}
.mw-body .external {
opacity: 0.5 !important;
}
table.wikitable {
background-color: #262626 !important;
border-color: #444 !important;
color: #bcbcbc !important;
}
table.wikitable > * > tr > th {
background-color: #272727 !important;
}

@ -0,0 +1,84 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
table {
background-color: #262626 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #ff8700 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #262626 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #262626 !important;
}
.title a {
color: #bcbcbc !important;
}
.title a:visited {
color: #585858 !important;
}
a.storylink {
color: #ff8700 !important;
font-weight: bold;
}
.sitestr {
color: #00f !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #262626 !important;
}
#hnmain .comhead {
color: #ff8700 !important;
}
#hnmain .c00 {
color: #bcbcbc !important;
}
#hnmain a.hnuser {
color: #ff0 !important;
}
#hnmain span.age a {
color: #585858 !important;
}
.cdd {
color: rgba(255,0,0,0.65) !important;
}
.comment i {
color: #585858 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #262626 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #ff8700 !important;
}

@ -0,0 +1,61 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
div#page div#header {
background-color: #262626 !important;
}
div#page div#header a {
color: #ee82ee !important;
}
.post {
background-color: #262626 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #272727 !important;
}
.post h2 a {
color: #ff8700 !important;
}
.post div.entry {
background-color: #262626 !important;
color: #bcbcbc !important;
}
.post div.entry blockquote {
background-color: #272727 !important;
}
.post div.entry kbd {
background-color: #272727 !important;
border-color: #585858 !important;
box-shadow: none !important;
color: #ff8700 !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}

@ -0,0 +1,117 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
#sr-header-area {
background-color: #272727 !important;
}
#sr-header-area .srdrop .selected {
color: #bcbcbc !important;
}
#sr-header-area #sr-more-link {
background-color: #272727 !important;
}
.link.promotedlink.promoted {
background-color: #272727 !important;
}
.link .usertext .md {
background-color: #272727 !important;
}
.linkinfo {
background-color: #272727 !important;
}
.linklisting .odd {
background-color: #272727 !important;
}
.thing .title {
color: #bcbcbc !important;
}
div.md {
color: #bcbcbc !important;
}
body.comment {
background-color: #262626 !important;
}
.commentarea > .usertext {
background-color: #262626 !important;
}
.commentarea .menuarea {
background-color: #262626 !important;
}
.comments-page .panestack-title {
background-color: #262626 !important;
}
.listing-chooser {
background-color: #262626 !important;
}
.listing-chooser .intro {
background-color: #303030 !important;
color: #ff8700 !important;
}
.listing-chooser .grippy {
background-color: #262626 !important;
}
.listing-chooser .grippy:after {
border-right: none !important;
}
.listing-chooser li {
background-color: #272727 !important;
}
.listing-chooser li.selected {
background-color: #303030 !important;
box-shadow: none;
}
.listing-chooser li a {
color: #bcbcbc !important;
}
.listing-chooser li a .description {
color: #ff8700 !important;
}
.titlebox {
background-color: #272727 !important;
}
.titlebox form.toggle {
background-color: #272727 !important;
color: #bcbcbc !important;
}
.side .usertext-body .md {
background-color: #272727 !important;
}
.side {
background-color: #272727 !important;
}
.sidebox .spacer {
background-color: #272727 !important;
color: #ff8700 !important;
}
.tabmenu li a {
background-color: #272727 !important;
}
#header-bottom-right {
background-color: #272727 !important;
}
.morelink .nub {
background-color: #272727 !important;
}

@ -0,0 +1,74 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
tr:hover,
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
#toolMenu li {
background-color: #262626 !important;
}
.navPanel,
.navIntraTool {
background-color: #262626 !important;
}
.instruction,
.sakaiCopyrightInfo {
color: #bcbcbc !important;
}
.listHier th {
background-color: #444 !important;
}
ul.makeMenu {
background-color: #444 !important;
border: 1px solid #444 !important;
}
tr.external {
background-color: #444 !important;
}

@ -0,0 +1,236 @@
* {
border-color: #800080 !important;
}
a {
color: #5f87af !important;
}
a:visited {
color: #87af87 !important;
}
body {
background-color: #262626 !important;
color: #bcbcbc !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #272727 !important;
color: #bcbcbc !important;
}
blockquote,
pre {
background-color: #272727 !important;
color: #bcbcbc !important;
}
hr {
background-color: #444 !important;
color: #444 !important;
}
.bounty-indicator,
.bounty-indicator-tab {
background-color: #ee82ee !important;
}
.bottom-notice {
background-color: #272727 !important;
}
.comments-link {
color: #008000 !important;
}
.page-numbers {
background-color: #008000 !important;
color: #87875f !important;
}
.page-numbers.current {
background-color: #ff8700 !important;
color: #262626 !important;
}
.post-menu a {
color: #ee82ee !important;
}
.question-status {
background-color: #272727 !important;
}
pre code {
background-color: #272727 !important;
color: #ff8700 !important;
}
pre code .atn {
color: #00f !important;
}
pre code .atv {
color: #0ff !important;
}
pre code .com {
color: #585858 !important;
}
pre code .kwd {
color: #008000 !important;
}
pre code .lit {
color: #f0f !important;
}
pre code .pln,
pre code .pun {
color: #bcbcbc !important;
}
pre code .str {
color: #0ff !important;
}
pre code .tag {
color: #008000 !important;
}
pre code .typ {
color: #ff0 !important;
}
#footer {
background-color: #585858 !important;
color: #bcbcbc !important;
}
#footer #footer-sites th {
color: #ff8700 !important;
}
.top-footer-links a {
color: #008000 !important;
}
.so-header {
background-color: #444 !important;
color: #ff8700 !important;
}
.so-header a {
color: #008000 !important;
}
.so-header .navigation .-list .-item :hover {
background-color: #008000 !important;
color: #ffffaf !important;
}
.topbar-dialog {
background-color: #262626 !important;
box-shadow: #303030 5px 5px 5px;
}
.topbar-dialog .current-site-container {
background-color: #262626 !important;
}
.topbar-dialog .header {
background-color: #272727 !important;
}
.topbar-dialog .header a {
color: #ff8700 !important;
}
.topbar-dialog .site-link {
color: #ff8700 !important;
}
#header {
background-color: #444 !important;
}
#question-header .question-hyperlink {
color: #ff8700 !important;
}
#hlogo a {
filter: opacity(75%);
}
.new-post-activity {
background-color: #272727 !important;
}
.tagged-interesting {
background-color: #444 !important;
}
div.answered-accepted {
background-color: #008000 !important;
color: #87875f !important;
}
div.answered-accepted .mini-counts {
background-color: #008000 !important;
color: #87875f !important;
}
.answered .mini-counts span {
color: #008000 !important;
}
.unanswered .mini-counts span {
color: #bcbcbc !important;
}
#hot-network-questions a {
color: #0ff !important;
}
#hot-network-questions h4 a.js-gps-track {
color: #ff8700 !important;
}
#sidebar .community-bulletin .bulletin-item-content a {
color: #ff8700 !important;
}
#sidebar .module.community-bulletin {
background-color: #272727 !important;
color: #ff8700 !important;
}
#sidebar .question-hyperlink {
color: #0ff !important;
}
.newuser {
background-color: #272727 !important;
color: #ff8700 !important;
}
.label-key {
color: #bcbcbc !important;
}
.label-key b {
color: #ff8700 !important;
}
#h-chat-link {
color: #ff8700 !important;
}
.ad502-room {
background-color: #272727 !important;
box-shadow: #303030 0px 1px 3px;
color: #ff8700 !important;
}
#tabs a {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #262626, #272727);
color: #ff8700 !important;
}
#tabs a.youarehere {
background-image: linear-gradient(to bottom, #ff8700, #262626);
color: #ffffaf !important;
}
.post-tag {
background-color: #303030 !important;
color: #262626 !important;
}
.post-tag::before {
background-color: #262626 !important;
}
a.comment-user.owner {
background-color: #008000 !important;
color: #87875f !important;
}
.post-signature {
background-color: #272727 !important;
color: #ff8700 !important;
}
.post-signature a {
color: #0ff !important;
}
.post-signature.owner .user-info .user-details a {
color: #008000 !important;
}
.post-signature span.relativetime {
color: #ff8700 !important;
}
.vote {
background-color: #272727 !important;
}
.vote .star-off {
filter: opacity(75%);
}
.vote .star-on {
filter: opacity(50%) !important;
}
.vote .vote-down-off,
.vote .vote-up-off {
filter: opacity(50%);
}
.answer-votes {
background-color: #303030 !important;
color: #262626 !important;
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,262 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
code {
font-size: 1.2em;
}
pre {
box-shadow: none;
background-color: #363636 !important;
font-size: 1.2em;
}
img {
margin: 0.25em;
}
.buttons {
background-color: #2e2e2e !important;
box-shadow: 0 0 10px #a6aaab;
color: #a6aaab !important;
font-family: sans-serif;
font-size: 1.5rem;
position: fixed;
left: -4.5em;
top: 50%;
transform: rotate(90deg);
filter: opacity(50%);
}
.hsReviewPanel {
display: none;
}
.title {
border: 0;
}
#postamble {
display: none;
}
#banner {
text-align: center;
}
#tabs {
background-color: #2e2e2e !important;
float: left;
margin: 0px 0px 20px 0px;
padding: 0;
width: 100%;
font-family: sans-serif;
}
#tabs ul {
margin: 0;
padding: 0;
}
#tabs li {
float: left;
list-style-type: none;
margin: 0px 2px 0px 0px;
padding: 0px 0px 0px 0px;
white-space: nowrap;
}
#tabs li a {
display: block;
font-size: 120%;
font-weight: bold;
margin: 0;
padding: 4px 10px 4px 10px;
text-decoration: none;
}
#tabs li a:hover {
color: #97bdef !important;
}
#tabs li.ui-tabs-active a {
background-color: #363636 !important;
color: #639ce6 !important;
}
#content {
clear: both;
}
#postamble {
text-align: right;
}
blockquote {
background-color: #2e2e2e !important;
padding-left: 0.75em;
padding-right: 0.75em;
padding-top: 0.01em;
padding-bottom: 0.01em;
overflow: hidden;
margin-left: 0;
}
.outline-text-2,
.outline-text-3,
.outline-text-4,
.outline-text-5,
.outline-text-6 {
padding-left: 4%;
}
.outline-3 {
padding-left: 4%;
}
.outline-4 {
padding-left: 4%;
}
.outline-5 {
padding-left: 4%;
}
.outline-6 {
padding-left: 4%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
border-bottom: 2px solid;
border-color: #363636 !important;
}
a:hover {
text-decoration: underline;
}
#search {
display: block;
float: right;
}
.tag {
background-color: #262626 !important;
color: #a6aaab !important;
border: 0px;
}
.tag span {
background-color: #363636 !important;
margin: 0.25em;
padding: 0.25em;
}
#table-of-contents {
display: table;
float: right;
}
#table-of-contents h2 {
display: none;
}
#table-of-contents li {
list-style-type: none;
}
#table-of-contents a:hover {
text-decoration: underline;
}
#minitoc {
background-color: #2e2e2e !important;
position: fixed;
bottom: 5em;
left: -5.5em;
transform: rotate(90deg);
box-shadow: 0px 0px 10px #a6aaab;
padding-top: 0.1em;
padding-bottom: 0.1em;
padding-left: 0.5em;
padding-right: 0.5em;
filter: opacity(50%);
z-index: 200;
}
#minitoc:hover {
padding: 1em;
filter: opacity(100%);
transform: rotate(0deg);
left: 0;
}
#minitoc h2 {
margin-top: 0;
margin-bottom: 0;
}
#minitoc a {
display: block;
font-family: sans-serif;
text-decoration: none;
}
#minitoc a:hover {
text-decoration: underline;
}
#minitoc a {
display: none;
}
#minitoc:hover a {
display: block;
}
#toTop {
top: -100px /* together with this to put the div at the top */;
position: fixed /* this is the magic */;
text-align: center;
z-index: 999;
display: none;
}
#toTop:hover {
text-decoration: underline;
}
#left-panel-wrapper {
display: none;
position: fixed;
z-index: 200;
}
#left-panel-contents {
display: none;
position: fixed;
text-align: left;
top: 0;
z-index: 200;
}
#left-panel-button {
transform: rotate(90deg);
left: -23px;
position: fixed;
top: 50%;
z-index: 200;
}
#right-panel-wrapper {
position: fixed;
z-index: 200;
}
#right-panel-contents {
display: none;
z-index: 200;
position: fixed;
text-align: left;
top: 0;
}
.snippet-copy-to-clipboard {
display: none;
position: absolute;
left: 50px;
top: 50px;
}
.org-ul {
margin-top: 1em;
}
.org-ul li {
margin-top: 0.5em;
}
.org-ul > li > a {
font-family: sans-serif;
}

@ -0,0 +1,33 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.post-actions {
background-color: #2e2e2e !important;
}
.textarea-wrapper {
background-color: #262626 !important;
color: #909396 !important;
}

@ -0,0 +1,87 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.search--adv {
background-color: #2e2e2e !important;
}
.search__autocomplete > .acp-wrap {
background-color: #262626 !important;
}
.search__autocomplete > .acp-wrap > .acp--highlight {
background-color: #2e2e2e !important;
color: #b8bbbd !important;
}
.search__autocomplete > .acp-wrap strong {
color: #b8bbbd !important;
}
.site-wrapper > #header_wrapper {
background-color: #262626 !important;
}
.site-wrapper > #header_wrapper > #header {
background-color: #262626 !important;
}
.search--header {
background-color: #2e2e2e !important;
}
.zci {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.tile--info {
background-color: #262626 !important;
}
.tile--info__expand {
background-color: #5e6263 !important;
}
.tile--c {
background-color: #5e6263 !important;
color: #b8bbbd !important;
}
.module__text {
color: #909396 !important;
}
.about-info-box__heading {
color: #a6aaab !important;
}
.result.highlight {
background-color: #2e2e2e !important;
}
.result__snippet {
color: #909396 !important;
}
.result__snippet b {
color: #a6aaab !important;
}
.btn--top {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.btn--top:hover {
background-color: #5e6263 !important;
}
.result--sep--hr:before {
background-color: #5e6263 !important;
}

@ -0,0 +1,52 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}

@ -0,0 +1,952 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
* {
border-color: #2e2e2e !important;
}
.news .alert .pull-info {
background-color: #323232 !important;
}
.link-gray-dark,
.text-gray-dark {
color: #909396 !important;
}
.bg-white {
background-color: #262626 !important;
}
.border {
border-color: #909396 !important;
}
.breadcrumb .repo-root.js-repo-root a {
color: #2f7bde !important;
}
.breadcrumb strong.final-path {
color: #909396 !important;
}
button.ajax-pagination-btn {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
button.ajax-pagination-btn:hover {
background-color: #5e6263 !important;
}
.comment-reactions .btn-link {
color: #909396 !important;
}
.comment-reactions .user-has-reacted {
background-color: #2e2e2e !important;
}
.text-gray-dark {
color: #909396 !important;
}
.contrib-number {
color: #a6aaab !important;
}
.counter {
background-color: #363636 !important;
color: #a6aaab !important;
}
.diffstat-bar {
color: #909396 !important;
}
.file-header {
background-color: #2e2e2e !important;
}
.file-history-tease .participation {
background-color: #262626 !important;
color: #909396 !important;
}
.file-history-tease .participation .quickstat strong {
color: #909396 !important;
}
.file-history-tease .participation a {
color: #5e6263 !important;
}
.file-history-tease .author a {
color: #909396 !important;
}
.file-history-tease-header {
background-color: #2e2e2e !important;
}
.file-info-divider {
background-color: #5e6263 !important;
}
.file-wrap {
color: #909396 !important;
}
.file-wrap * {
background-color: transparent !important;
}
.filter-bar {
background-color: #323232 !important;
}
a.filter-item,
.filter-item {
color: #909396 !important;
}
a.filter-item.selected,
.filter-item.selected {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
a.filter-item:hover,
.filter-item:hover {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.flash {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.gh-header-number {
color: #5e6263 !important;
}
.ellipsis-expander,
.hidden-text-expander a {
background-color: #2e2e2e !important;
}
.issue-meta {
color: #5e6263 !important;
}
.issues-listing a {
color: #909396 !important;
}
.muted-link {
color: #909396 !important;
}
.new-user-avatar-cta {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
color: #a6aaab !important;
}
.overall-summary {
border-color: #5e6263 !important;
}
.pinned-repo-item.border {
border-color: #5e6263 !important;
}
.progress-bar {
background-color: #5e6263 !important;
}
.simple-box {
background-color: #2e2e2e !important;
}
.social-count {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
color: #a6aaab !important;
}
.scope-badge {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.stats-switcher-wrapper {
background-color: #262626 !important;
}
.stats-switcher-wrapper .numbers-summary li a {
color: #909396 !important;
}
.table-list-header-toggle .btn-link {
color: #5e6263 !important;
}
.table-list-header-toggle .btn-link.selected {
color: #909396 !important;
}
.text-emphasized {
color: #a6aaab !important;
}
.text-diff-added {
color: #598249 !important;
}
.text-diff-deleted {
color: #bd3832 !important;
}
.avatar,
.timeline-comment-avatar {
filter: opacity(75%);
}
.blob-code {
background-color: #262626 !important;
color: #909396 !important;
}
.blob-code-addition {
background-color: rgba(169,200,157,0.1) !important;
}
.blob-code-addition .x {
background-color: #436237 !important;
color: #c7c9ca !important;
}
.blob-code-deletion {
background-color: rgba(189,56,50,0.2) !important;
}
.blob-code-deletion .x {
background-color: #5e1c19 !important;
color: #c7c9ca !important;
}
.blob-code-hunk {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
}
.blob-code-inner {
color: #909396 !important;
}
.blob-num {
background-color: #262626 !important;
color: #5e6263 !important;
}
.file {
color: #909396 !important;
}
.form-control {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
}
.pl-c {
color: #5e6263 !important;
}
.pl-c1 {
color: #2f7bde !important;
}
.pl-e {
color: #b68800 !important;
}
.pl-en {
color: #2f7bde !important;
}
.pl-k {
color: #598249 !important;
font-weight: bold !important;
}
.pl-pds {
color: #15968d !important;
}
.pl-s {
color: #15968d !important;
}
.pl-smi {
color: #909396 !important;
}
.pl-v {
color: #598249 !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #598249 !important;
background-color: transparent !important;
}
.pl-md {
color: #bd3832 !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #2e2e2e !important;
}
.boxed-group * {
border-color: #5e6263 !important;
}
.boxed-group article {
background-color: #262626 !important;
color: #909396 !important;
}
.boxed-group > h3 {
background-color: #363636 !important;
color: #a6aaab !important;
}
.more-repos {
background-color: #363636 !important;
box-shadow: inset 0 1px 0 #5e6263 !important;
}
.boxed-group-inner {
background-color: #262626 !important;
}
.branch-action-body {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
}
.branch-action-body div {
border-color: #5e6263 !important;
}
.branch-action-state-clean .branch-action-icon {
background-color: #598249 !important;
}
.branch-action-state-dirty .branch-action-icon,
.branch-action-state-unstable .branch-action-icon,
.branch-action-state-unknown .branch-action-icon {
background-color: #b68800 !important;
color: #fff !important;
}
.text-shadow-light,
.branch-group-name,
.branch-summary {
color: #909396 !important;
text-shadow: none !important;
}
.branch-a-b-count .meter {
background-color: #b68800 !important;
}
.more-branches,
.branch-group-heading,
.branch-infobar,
.branch-name {
border-color: #5e6263 !important;
background-color: #2e2e2e !important;
}
.State,
.State:visited {
color: #fff !important;
}
.State--red {
background-color: #bd3832 !important;
color: #262626 !important;
}
.State--green {
background-color: #598249 !important;
color: #262626 !important;
}
.select-menu-filters {
background-color: #323232 !important;
color: #a6aaab !important;
}
.js-select-menu-tab {
background-color: #363636 !important;
color: #a6aaab !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #5e6263 !important;
color: #262626 !important;
}
.signed-commit-header {
background-color: #262626 !important;
}
.build-status-item {
background-color: #363636 !important;
color: #a6aaab !important;
}
.build-status-item .build-status-details {
color: #2f7bde !important;
}
.capped-card h3 {
background-color: #363636 !important;
}
.capped-card h3 a {
color: #a6aaab !important;
}
.capped-card-content {
background-color: #262626 !important;
}
.capped-list th {
background-color: #323232 !important;
color: #a6aaab !important;
}
.capped-list tr:nth-child(2n) {
background-color: #2e2e2e !important;
}
.commit,
.commit-meta,
.commit-icon .octicon,
.commit-group-title .octicon-git-commit {
background-color: #262626 !important;
}
.commit *,
.commit-meta *,
.commit-icon .octicon *,
.commit-group-title .octicon-git-commit * {
border-color: #5e6263 !important;
}
.commit-author {
color: #909396 !important;
}
.commit-author-section {
color: #909396 !important;
}
.commit-meta {
color: #5e6263 !important;
}
.commit-meta .sha-block {
color: #5e6263 !important;
}
.commit-meta .sha-block .sha {
color: #909396 !important;
}
.commit-ref,
code.commit-sha {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.commit-ref .user,
code.commit-sha .user {
color: #15968d !important;
}
.commit-branches *,
.commit-tease,
.commit-title {
background-color: rgba(83,255,255,0.2) !important;
border: none !important;
}
.commit-branches * *,
.commit-tease *,
.commit-title * {
color: #a6aaab !important;
}
.commit-tease-contributors {
background-color: #2e2e2e !important;
}
div.commit-branches,
div.commit.full-commit p.commit-title,
qul.branches-list {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
div.commit-branches *,
div.commit.full-commit p.commit-title *,
qul.branches-list * {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.commit-meta {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.commits-listing:before {
background-color: #2e2e2e !important;
}
.full-commit {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
}
.full-commit * {
text-shadow: none !important;
}
.commit-desc pre {
background-color: transparent !important;
color: #909396 !important;
}
.commit.table-list-item {
border-color: #2e2e2e !important;
}
.commit-meta.commit-author-section {
background-color: transparent !important;
color: #909396 !important;
}
.table-list-cell .commit-title {
background-color: transparent !important;
color: #909396 !important;
}
.completeness-indicator-success {
background-color: #598249 !important;
}
.completeness-indicator-problem {
background-color: #b68800 !important;
color: #fff !important;
}
.copyable-terminal {
background-color: #2e2e2e !important;
}
.blankslate {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.comment-form-head.tabnav {
background-color: #262626 !important;
}
.conversation-list-heading .inner {
background-color: #262626 !important;
}
.discussion-item-closed .discussion-item-icon {
background-color: #bd3832 !important;
color: #a6aaab !important;
}
.discussion-item-icon {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.discussion-item-icon.octicon {
color: #a6aaab !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #a6aaab !important;
}
.discussion-timeline:before {
background-color: #909396 !important;
}
.discussion-timeline-actions {
background-color: #262626 !important;
}
.drag-and-drop {
background-color: #2e2e2e !important;
}
.new-discussion-timeline .closed-banner {
background-color: #909396 !important;
border-color: #262626 !important;
}
.timeline-comment {
background-color: #262626 !important;
border-color: #5e6263 !important;
}
.timeline-comment-header {
background-color: #2e2e2e !important;
}
.timeline-comment-wrapper {
border-color: #262626 !important;
}
.donut-chart > .pending {
fill: #b68800 !important;
}
.dropdown-divider {
background-color: #909396 !important;
}
.dropdown-item {
color: #909396 !important;
}
.dropdown-item:hover {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.dropdown-menu {
background-color: #363636 !important;
color: #a6aaab !important;
border-color: #909396 !important;
}
.files * {
color: #909396 !important;
}
.files tbody tr {
border-color: #2e2e2e !important;
}
.files tbody tr:nth-child(even) {
background-color: #2a2a2a !important;
}
.files tbody tr:nth-child(odd) {
background-color: #262626 !important;
}
.files tbody tr:hover * {
background-color: #363636 !important;
}
.btn {
background-image: linear-gradient(to bottom, #5e6263, #2e2e2e) !important;
border-color: #5e6263 !important;
color: #a6aaab !important;
}
.btn:hover {
background-color: #323232 !important;
}
.btn-primary,
.issues-listing .btn-primary {
background-color: #598249 !important;
background-image: linear-gradient(#598249, #2c4125) !important;
color: #000 !important;
filter: opacity(62.5%);
}
.entry-title a {
color: #2f7bde !important;
}
.Header {
background-color: #323232 !important;
border-bottom-color: #5e6263 !important;
}
.Header a {
color: #a6aaab !important;
}
.lang {
color: #a6aaab !important;
}
.reponav-item,
.pagehead-tabs-item {
background-color: #2e2e2e !important;
border-color: transparent !important;
color: #909396 !important;
}
.reponav-item:visited,
.pagehead-tabs-item:visited {
color: #909396 !important;
}
.reponav-item.selected,
.pagehead-tabs-item.selected {
background-color: #262626 !important;
border-color: #bd3832 #363636 transparent !important;
}
.site-footer-links * {
color: #909396 !important;
}
.Box-row--focus-gray.navigation-focus {
background-color: #323232 !important;
color: #a6aaab !important;
}
.js-directory-link {
color: #ce4139 !important;
}
.js-site-search-form input,
.js-chromeless-input-container {
background-color: #262626 !important;
border-color: #5e6263 !important;
}
a.label {
color: #000 !important;
filter: opacity(75%);
}
.notifications-list a {
color: #909396 !important;
}
.notifications-list li {
background-color: #262626 !important;
}
.octicon,
.octicon-repo {
color: #a6aaab !important;
}
.octicon.type-icon-state-closed,
.octicon-repo.type-icon-state-closed {
color: rgba(255,66,56,0.65) !important;
}
.octicon.type-icon-state-merged,
.octicon-repo.type-icon-state-merged {
color: #797fd4 !important;
}
.octicon.type-icon-state-open,
.octicon-repo.type-icon-state-open {
color: rgba(116,180,92,0.65) !important;
}
.octicon-alert {
color: #fff !important;
}
.octicon-x {
color: #bd3832 !important;
}
.octicon-check {
color: #598249 !important;
}
.octicon-primitive-dot {
color: #b68800 !important;
}
.octicon-clippy {
color: #a6aaab !important;
}
.octicon-git-pull-request,
.octicon-diff {
color: #fff !important;
}
.octicon-markdown {
color: #5e6263 !important;
}
.orghead {
background-color: #2e2e2e !important;
border-color: #909396 !important;
border-bottom: 0px !important;
color: #a6aaab !important;
}
.org-name {
color: #a6aaab !important;
}
.pagehead.orghead {
background-color: #2e2e2e !important;
}
.outline-box-highlighted {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.pagination .current {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.pagination .disabled {
background-color: #2e2e2e !important;
color: #5e6263 !important;
}
.pagination .disabled:hover {
background-color: #2e2e2e !important;
}
.pagination .gap {
background-color: #2e2e2e !important;
color: #5e6263 !important;
}
.pagination a {
background-color: #2e2e2e !important;
border-color: #262626 !important;
color: #909396 !important;
}
.pagination a:hover {
background-color: #5e6263 !important;
color: #262626 !important;
}
.empty-cell,
.diffbar {
background-color: #262626 !important;
}
.merge-status-item {
background-color: #363636 !important;
}
.merge-message {
background-color: #323232 !important;
}
.pr-toolbar {
background-color: #262626 !important;
}
.review-thread-reply {
background-color: #2e2e2e !important;
}
.review-thread-reply .inline-comment-form {
background-color: #262626 !important;
}
.octicon-git-merge {
color: #fff !important;
}
.uploaded-files {
background-color: #262626 !important;
}
.upload-progress {
background-color: #2e2e2e !important;
box-shadow: 1px 0px 0px #2e2e2e inset;
}
#readme .plain {
background-color: #262626 !important;
}
.markdown-body,
.markdown-body table * {
background-color: #262626 !important;
border-color: #909396 !important;
color: #909396 !important;
}
.markdown-body a,
.markdown-body table * a {
color: #ce4139 !important;
}
.markdown-body code,
.markdown-body table * code,
.markdown-body pre,
.markdown-body table * pre {
background-color: #2e2e2e !important;
}
.markdown-body hr,
.markdown-body table * hr {
background-color: #5e6263 !important;
}
.markdown-body img,
.markdown-body table * img {
background-color: #262626 !important;
}
.task-list-item.hovered {
background-color: #2e2e2e !important;
}
.range-editor {
background-color: #2e2e2e !important;
}
.compare-pr-placeholder {
background-color: #323232 !important;
}
ul.comparison-list > li.title {
background-color: #363636 !important;
}
ul.comparison-list {
background-color: #323232 !important;
}
.repository-description {
color: #909396 !important;
}
.repository-meta .edit-repository-meta label {
color: #909396 !important;
}
.pagehead.repohead {
background-color: #2e2e2e !important;
}
.repository-content .RecentBranches {
background-color: #2e2e2e !important;
border-color: #909396 !important;
}
.repohead-details-container a {
color: #909396 !important;
}
.select-menu-modal {
border-color: #909396 !important;
}
.select-menu-modal * {
color: #909396 !important;
}
.select-menu-header,
.select-menu-header * {
background-color: #2e2e2e !important;
color: #a6aaab !important;
text-shadow: none !important;
}
.select-menu-item {
background-color: #262626 !important;
}
.select-menu-item.navigation-focus,
.select-menu-item.navigation-focus.selected,
.select-menu-item.navigation-focus.select-menu-action,
.select-menu-item-text.navigation-focus {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.repository-sidebar {
background-color: #262626 !important;
}
.thread-subscription-status {
background-color: #262626 !important;
}
.sunken-menu {
background-image: linear-gradient(to right, #2e2e2e 0%, #262626 8px) !important;
box-shadow: 1px 0px 0px #2e2e2e inset;
}
.sunken-menu:before {
background-image: linear-gradient(#262626, transparent) !important;
}
.sunken-menu:after {
background-image: linear-gradient(transparent, #262626) !important;
}
.sunken-menu-item {
border-color: #262626 !important;
}
.sunken-menu-item.selected {
background-color: #262626 !important;
border-color: #363636 !important;
color: #a6aaab !important;
}
.sunken-menu-item.selected:after {
background-color: #e05f27 !important;
}
.sunken-menu-separator:before {
background-image: linear-gradient(to right, #2e2e2e 70%, #262626 100%) !important;
}
.state {
color: #a6aaab !important;
}
.state-closed {
background-color: #bd3832 !important;
}
.state-open {
background-color: #598249 !important;
}
.subnav-item {
color: #909396 !important;
}
.subnav-item:hover {
background-color: #323232 !important;
}
.subnav-item:visited {
color: #909396 !important;
}
.subnav-item.selected {
background-color: #2e2e2e !important;
}
.subnav-links a:hover {
background-color: #2e2e2e !important;
}
.subnav-search input {
border-color: #5e6263 !important;
}
.right .tabnav-extra {
color: #5e6263 !important;
}
a.tabnav-tab,
.tabnav-tab {
border-color: transparent !important;
color: #5e6263 !important;
}
a.tabnav-tab.selected,
.tabnav-tab.selected {
background-color: #262626 !important;
background-image: linear-gradient(#2e2e2e, #262626) !important;
border-color: #909396 !important;
color: #a6aaab !important;
}
.table-list tr,
.table-list li {
background-color: #262626 !important;
}
.table-list tr:hover,
.table-list li:hover {
background-color: #363636 !important;
}
.table-list-header {
background-color: #2e2e2e !important;
}
.text-pending {
color: #b68800 !important;
}
.text-pending .octicon-primitive-dot {
color: #b68800 !important;
}
.text-red {
color: #bd3832 !important;
}
.timeline-commits .commit-meta {
background-color: #262626 !important;
}
.timeline-commits .commit-meta .commit-id {
color: #5e6263 !important;
}
.topic-tag.topic-tag-link {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.underline-nav-item {
color: #909396 !important;
}
.underline-nav-item.selected {
border-bottom-color: #bd3832 !important;
color: #909396 !important;
}
.user-profile-nav {
background-color: #2e2e2e !important;
border-color: #909396 !important;
}
.user-profile-sticky-bar:after {
background-color: #2e2e2e !important;
border-color: #909396 !important;
}
.graphs .area {
fill: #598249;
}
.summary-stats li .num {
color: #a6aaab !important;
}
.viz {
background-color: #323232 !important;
}
.facebox-popup {
color: #909396 !important;
background-color: #262626 !important;
}
.facebox-popup .octicon {
color: #fff !important;
}
.facebox-popup .owner-select-target {
color: #909396 !important;
background-color: #2e2e2e !important;
}
.facebox-popup .owner-select-target:hover {
background-color: #5e6263 !important;
}
.suggester {
background-color: #363636 !important;
}
.suggester li.navigation-focus {
background-color: #5e6263 !important;
}

@ -0,0 +1,74 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.sfbgg {
background-color: #2e2e2e !important;
}
.sbib_a {
background: linear-gradient(to bottom, #2e2e2e, #262626) !important;
}
input#lst-ib,
#sb_ifc0.sbib_b,
#gs_taif0 {
background: transparent !important;
}
#lst-ib,
.sbsb_a {
background-color: #262626 !important;
}
.kpbb {
background-image: linear-gradient(to bottom, #639ce6, #2f7bde) !important;
}
#hdtbSum {
background-color: #262626 !important;
}
#hdtbMenus.hdtb-td-o {
background-color: #262626 !important;
}
#hdtb-tls.hdtb-tl {
background-image: linear-gradient(to bottom, #262626, #2e2e2e) !important;
}
#hdtb-tls.hdtb-tl.hdtb-tl-sel {
background-image: linear-gradient(to bottom, #2e2e2e, #262626) !important;
}
#abar_button_opt.ab_button {
background: linear-gradient(to bottom, #262626, #2e2e2e) !important;
}
#appbar {
background-color: #262626 !important;
}
cite {
color: #598249 !important;
}
.ab_dropdown {
background-color: #262626 !important;
}
div.crp {
background-color: #262626 !important;
}
#fbar {
background-color: #2e2e2e !important;
}

@ -0,0 +1,76 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
tr.Even {
background-color: #2e2e2e !important;
}
.BigQuote {
background-color: #2e2e2e !important;
color: #e05f27 !important;
}
.Cat1HL {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.Cat2HL {
background-color: #363636 !important;
}
.Cat3HL {
background-color: #323232 !important;
}
.FeatureByline {
background-color: #2e2e2e !important;
border: none !important;
}
.Headline {
background-color: #363636 !important;
}
.QuotedText {
color: #797fd4 !important;
}
DIV.GAByline {
background-color: #2e2e2e !important;
border: none !important;
}
table.OddEven tr:nth-child(even) {
background-color: #2a2a2a !important;
}
table.OddEven tr:nth-child(odd) {
background-color: #262626 !important;
}
DIV.CommentBox {
border-color: #2e2e2e !important;
}
DIV.CommentBox P.CommentTitle {
background-color: #363636 !important;
}
#menu,
.topnav-container {
background-color: #2e2e2e !important;
}
.navmenu ul {
background-color: #2e2e2e !important;
}

@ -0,0 +1,144 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
body * {
border-color: #363636 !important;
}
#content {
background-color: #262626 !important;
color: #909396 !important;
}
#mw-head,
#mw-panel {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
#mw-head div.portal,
#mw-panel div.portal {
background-image: none !important;
}
#mw-head {
background-color: #2e2e2e !important;
background-image: linear-gradient(to bottom, #262626, #2e2e2e) !important;
}
#mw-panel,
#p-logo {
background-image: linear-gradient(to right, #262626, #2e2e2e) !important;
}
div.vectorTabs {
background-image: linear-gradient(to bottom, #262626, #2e2e2e) !important;
}
div.vectorTabs ul {
background-image: linear-gradient(to bottom, #262626, #2e2e2e) !important;
}
div.vectorTabs ul li {
background-color: #2e2e2e !important;
background-image: none !important;
padding: 0px 1px 0px 1px !important;
}
div.vectorTabs span {
background-color: #2e2e2e !important;
background-image: linear-gradient(to bottom, #262626, #2e2e2e) !important;
}
div.vectorTabs li.selected,
div.vectorTabs li.selected span {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #2e2e2e, #262626) !important;
}
.mw-wiki-logo {
filter: opacity(50%);
}
div#simpleSearch #searchInput {
background-color: #262626 !important;
padding: 0.05em 0px 0.2em 0.2em !important;
}
.ambox,
.infobox,
#toc,
#toctitle,
.toclevel-1 {
background-color: #2e2e2e !important;
border-color: #363636 !important;
color: #a6aaab !important;
}
.catlinks {
background-color: #2e2e2e !important;
border-color: #363636 !important;
color: #a6aaab !important;
}
.navbox {
background-color: #2e2e2e !important;
border-color: #363636 !important;
color: #a6aaab !important;
}
.navbox .th,
.navbox .navbox-title {
background-color: #363636 !important;
}
.navbox-abovebelow,
th.navbox-group,
.navbox-subgroup,
.navbox-title {
background-color: #323232 !important;
}
.navbox-even {
background-color: #262626 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
border-color: #363636 !important;
color: #a6aaab !important;
}
code {
background-color: #363636 !important;
border-color: #363636 !important;
color: #a6aaab !important;
}
div.thumbinner {
background-color: #2e2e2e !important;
border-color: #363636 !important;
}
img {
filter: opacity(75%);
}
img.thumbimage {
border-color: #363636 !important;
}
.mw-body .external {
opacity: 0.5 !important;
}
table.wikitable {
background-color: #262626 !important;
border-color: #363636 !important;
color: #909396 !important;
}
table.wikitable > * > tr > th {
background-color: #2e2e2e !important;
}

@ -0,0 +1,84 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
table {
background-color: #262626 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #e05f27 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #262626 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #262626 !important;
}
.title a {
color: #909396 !important;
}
.title a:visited {
color: #5e6263 !important;
}
a.storylink {
color: #a6aaab !important;
font-weight: bold;
}
.sitestr {
color: #2f7bde !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #262626 !important;
}
#hnmain .comhead {
color: #a6aaab !important;
}
#hnmain .c00 {
color: #909396 !important;
}
#hnmain a.hnuser {
color: #b68800 !important;
}
#hnmain span.age a {
color: #5e6263 !important;
}
.cdd {
color: rgba(255,66,56,0.65) !important;
}
.comment i {
color: #5e6263 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #262626 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #e05f27 !important;
}

@ -0,0 +1,61 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
div#page div#header {
background-color: #262626 !important;
}
div#page div#header a {
color: #797fd4 !important;
}
.post {
background-color: #262626 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #2e2e2e !important;
}
.post h2 a {
color: #a6aaab !important;
}
.post div.entry {
background-color: #262626 !important;
color: #909396 !important;
}
.post div.entry blockquote {
background-color: #2e2e2e !important;
}
.post div.entry kbd {
background-color: #2e2e2e !important;
border-color: #5e6263 !important;
box-shadow: none !important;
color: #a6aaab !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}

@ -0,0 +1,117 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
#sr-header-area {
background-color: #2e2e2e !important;
}
#sr-header-area .srdrop .selected {
color: #909396 !important;
}
#sr-header-area #sr-more-link {
background-color: #2e2e2e !important;
}
.link.promotedlink.promoted {
background-color: #2e2e2e !important;
}
.link .usertext .md {
background-color: #2e2e2e !important;
}
.linkinfo {
background-color: #2e2e2e !important;
}
.linklisting .odd {
background-color: #2e2e2e !important;
}
.thing .title {
color: #909396 !important;
}
div.md {
color: #909396 !important;
}
body.comment {
background-color: #262626 !important;
}
.commentarea > .usertext {
background-color: #262626 !important;
}
.commentarea .menuarea {
background-color: #262626 !important;
}
.comments-page .panestack-title {
background-color: #262626 !important;
}
.listing-chooser {
background-color: #262626 !important;
}
.listing-chooser .intro {
background-color: #5e6263 !important;
color: #a6aaab !important;
}
.listing-chooser .grippy {
background-color: #262626 !important;
}
.listing-chooser .grippy:after {
border-right: none !important;
}
.listing-chooser li {
background-color: #2e2e2e !important;
}
.listing-chooser li.selected {
background-color: #5e6263 !important;
box-shadow: none;
}
.listing-chooser li a {
color: #909396 !important;
}
.listing-chooser li a .description {
color: #a6aaab !important;
}
.titlebox {
background-color: #2e2e2e !important;
}
.titlebox form.toggle {
background-color: #2e2e2e !important;
color: #909396 !important;
}
.side .usertext-body .md {
background-color: #2e2e2e !important;
}
.side {
background-color: #2e2e2e !important;
}
.sidebox .spacer {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.tabmenu li a {
background-color: #2e2e2e !important;
}
#header-bottom-right {
background-color: #2e2e2e !important;
}
.morelink .nub {
background-color: #2e2e2e !important;
}

@ -0,0 +1,74 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
tr:hover,
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
#toolMenu li {
background-color: #262626 !important;
}
.navPanel,
.navIntraTool {
background-color: #262626 !important;
}
.instruction,
.sakaiCopyrightInfo {
color: #909396 !important;
}
.listHier th {
background-color: #363636 !important;
}
ul.makeMenu {
background-color: #363636 !important;
border: 1px solid #363636 !important;
}
tr.external {
background-color: #363636 !important;
}

@ -0,0 +1,236 @@
* {
border-color: #909396 !important;
}
a {
color: #ce4139 !important;
}
a:visited {
color: #b68800 !important;
}
body {
background-color: #262626 !important;
color: #909396 !important;
}
html {
background-color: #262626 !important;
}
input,
textarea {
background-color: #2e2e2e !important;
color: #909396 !important;
}
blockquote,
pre {
background-color: #2e2e2e !important;
color: #909396 !important;
}
hr {
background-color: #363636 !important;
color: #363636 !important;
}
.bounty-indicator,
.bounty-indicator-tab {
background-color: #797fd4 !important;
}
.bottom-notice {
background-color: #2e2e2e !important;
}
.comments-link {
color: #598249 !important;
}
.page-numbers {
background-color: #598249 !important;
color: #b8bbbd !important;
}
.page-numbers.current {
background-color: #e05f27 !important;
color: #262626 !important;
}
.post-menu a {
color: #797fd4 !important;
}
.question-status {
background-color: #2e2e2e !important;
}
pre code {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
pre code .atn {
color: #2f7bde !important;
}
pre code .atv {
color: #15968d !important;
}
pre code .com {
color: #5e6263 !important;
}
pre code .kwd {
color: #598249 !important;
}
pre code .lit {
color: #a8366b !important;
}
pre code .pln,
pre code .pun {
color: #909396 !important;
}
pre code .str {
color: #15968d !important;
}
pre code .tag {
color: #598249 !important;
}
pre code .typ {
color: #b68800 !important;
}
#footer {
background-color: #323232 !important;
color: #909396 !important;
}
#footer #footer-sites th {
color: #a6aaab !important;
}
.top-footer-links a {
color: #598249 !important;
}
.so-header {
background-color: #363636 !important;
color: #a6aaab !important;
}
.so-header a {
color: #598249 !important;
}
.so-header .navigation .-list .-item :hover {
background-color: #598249 !important;
color: #d2d8d9 !important;
}
.topbar-dialog {
background-color: #262626 !important;
box-shadow: #5e6263 5px 5px 5px;
}
.topbar-dialog .current-site-container {
background-color: #262626 !important;
}
.topbar-dialog .header {
background-color: #2e2e2e !important;
}
.topbar-dialog .header a {
color: #a6aaab !important;
}
.topbar-dialog .site-link {
color: #a6aaab !important;
}
#header {
background-color: #363636 !important;
}
#question-header .question-hyperlink {
color: #a6aaab !important;
}
#hlogo a {
filter: opacity(75%);
}
.new-post-activity {
background-color: #2e2e2e !important;
}
.tagged-interesting {
background-color: #363636 !important;
}
div.answered-accepted {
background-color: #598249 !important;
color: #b8bbbd !important;
}
div.answered-accepted .mini-counts {
background-color: #598249 !important;
color: #b8bbbd !important;
}
.answered .mini-counts span {
color: #598249 !important;
}
.unanswered .mini-counts span {
color: #909396 !important;
}
#hot-network-questions a {
color: #15968d !important;
}
#hot-network-questions h4 a.js-gps-track {
color: #a6aaab !important;
}
#sidebar .community-bulletin .bulletin-item-content a {
color: #a6aaab !important;
}
#sidebar .module.community-bulletin {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
#sidebar .question-hyperlink {
color: #15968d !important;
}
.newuser {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.label-key {
color: #909396 !important;
}
.label-key b {
color: #a6aaab !important;
}
#h-chat-link {
color: #a6aaab !important;
}
.ad502-room {
background-color: #2e2e2e !important;
box-shadow: #5e6263 0px 1px 3px;
color: #a6aaab !important;
}
#tabs a {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #262626, #2e2e2e);
color: #a6aaab !important;
}
#tabs a.youarehere {
background-image: linear-gradient(to bottom, #e05f27, #262626);
color: #d2d8d9 !important;
}
.post-tag {
background-color: #5e6263 !important;
color: #262626 !important;
}
.post-tag::before {
background-color: #262626 !important;
}
a.comment-user.owner {
background-color: #598249 !important;
color: #b8bbbd !important;
}
.post-signature {
background-color: #2e2e2e !important;
color: #a6aaab !important;
}
.post-signature a {
color: #15968d !important;
}
.post-signature.owner .user-info .user-details a {
color: #598249 !important;
}
.post-signature span.relativetime {
color: #a6aaab !important;
}
.vote {
background-color: #2e2e2e !important;
}
.vote .star-off {
filter: opacity(75%);
}
.vote .star-on {
filter: opacity(50%) !important;
}
.vote .vote-down-off,
.vote .vote-up-off {
filter: opacity(50%);
}
.answer-votes {
background-color: #5e6263 !important;
color: #262626 !important;
}

File diff suppressed because it is too large Load Diff

@ -0,0 +1,262 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
code {
font-size: 1.2em;
}
pre {
box-shadow: none;
background-color: #44403e !important;
font-size: 1.2em;
}
img {
margin: 0.25em;
}
.buttons {
background-color: #3c3836 !important;
box-shadow: 0 0 10px #8ec07c;
color: #8ec07c !important;
font-family: sans-serif;
font-size: 1.5rem;
position: fixed;
left: -4.5em;
top: 50%;
transform: rotate(90deg);
filter: opacity(50%);
}
.hsReviewPanel {
display: none;
}
.title {
border: 0;
}
#postamble {
display: none;
}
#banner {
text-align: center;
}
#tabs {
background-color: #3c3836 !important;
float: left;
margin: 0px 0px 20px 0px;
padding: 0;
width: 100%;
font-family: sans-serif;
}
#tabs ul {
margin: 0;
padding: 0;
}
#tabs li {
float: left;
list-style-type: none;
margin: 0px 2px 0px 0px;
padding: 0px 0px 0px 0px;
white-space: nowrap;
}
#tabs li a {
display: block;
font-size: 120%;
font-weight: bold;
margin: 0;
padding: 4px 10px 4px 10px;
text-decoration: none;
}
#tabs li a:hover {
color: #9ac9cc !important;
}
#tabs li.ui-tabs-active a {
background-color: #44403e !important;
color: #67afb2 !important;
}
#content {
clear: both;
}
#postamble {
text-align: right;
}
blockquote {
background-color: #3c3836 !important;
padding-left: 0.75em;
padding-right: 0.75em;
padding-top: 0.01em;
padding-bottom: 0.01em;
overflow: hidden;
margin-left: 0;
}
.outline-text-2,
.outline-text-3,
.outline-text-4,
.outline-text-5,
.outline-text-6 {
padding-left: 4%;
}
.outline-3 {
padding-left: 4%;
}
.outline-4 {
padding-left: 4%;
}
.outline-5 {
padding-left: 4%;
}
.outline-6 {
padding-left: 4%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
border-bottom: 2px solid;
border-color: #44403e !important;
}
a:hover {
text-decoration: underline;
}
#search {
display: block;
float: right;
}
.tag {
background-color: #282828 !important;
color: #8ec07c !important;
border: 0px;
}
.tag span {
background-color: #44403e !important;
margin: 0.25em;
padding: 0.25em;
}
#table-of-contents {
display: table;
float: right;
}
#table-of-contents h2 {
display: none;
}
#table-of-contents li {
list-style-type: none;
}
#table-of-contents a:hover {
text-decoration: underline;
}
#minitoc {
background-color: #3c3836 !important;
position: fixed;
bottom: 5em;
left: -5.5em;
transform: rotate(90deg);
box-shadow: 0px 0px 10px #8ec07c;
padding-top: 0.1em;
padding-bottom: 0.1em;
padding-left: 0.5em;
padding-right: 0.5em;
filter: opacity(50%);
z-index: 200;
}
#minitoc:hover {
padding: 1em;
filter: opacity(100%);
transform: rotate(0deg);
left: 0;
}
#minitoc h2 {
margin-top: 0;
margin-bottom: 0;
}
#minitoc a {
display: block;
font-family: sans-serif;
text-decoration: none;
}
#minitoc a:hover {
text-decoration: underline;
}
#minitoc a {
display: none;
}
#minitoc:hover a {
display: block;
}
#toTop {
top: -100px /* together with this to put the div at the top */;
position: fixed /* this is the magic */;
text-align: center;
z-index: 999;
display: none;
}
#toTop:hover {
text-decoration: underline;
}
#left-panel-wrapper {
display: none;
position: fixed;
z-index: 200;
}
#left-panel-contents {
display: none;
position: fixed;
text-align: left;
top: 0;
z-index: 200;
}
#left-panel-button {
transform: rotate(90deg);
left: -23px;
position: fixed;
top: 50%;
z-index: 200;
}
#right-panel-wrapper {
position: fixed;
z-index: 200;
}
#right-panel-contents {
display: none;
z-index: 200;
position: fixed;
text-align: left;
top: 0;
}
.snippet-copy-to-clipboard {
display: none;
position: absolute;
left: 50px;
top: 50px;
}
.org-ul {
margin-top: 1em;
}
.org-ul li {
margin-top: 0.5em;
}
.org-ul > li > a {
font-family: sans-serif;
}

@ -0,0 +1,33 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.post-actions {
background-color: #3c3836 !important;
}
.textarea-wrapper {
background-color: #282828 !important;
color: #83a598 !important;
}

@ -0,0 +1,87 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.search--adv {
background-color: #3c3836 !important;
}
.search__autocomplete > .acp-wrap {
background-color: #282828 !important;
}
.search__autocomplete > .acp-wrap > .acp--highlight {
background-color: #3c3836 !important;
color: #a89984 !important;
}
.search__autocomplete > .acp-wrap strong {
color: #a89984 !important;
}
.site-wrapper > #header_wrapper {
background-color: #282828 !important;
}
.site-wrapper > #header_wrapper > #header {
background-color: #282828 !important;
}
.search--header {
background-color: #3c3836 !important;
}
.zci {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.tile--info {
background-color: #282828 !important;
}
.tile--info__expand {
background-color: #b8bb26 !important;
}
.tile--c {
background-color: #b8bb26 !important;
color: #a89984 !important;
}
.module__text {
color: #83a598 !important;
}
.about-info-box__heading {
color: #8ec07c !important;
}
.result.highlight {
background-color: #3c3836 !important;
}
.result__snippet {
color: #83a598 !important;
}
.result__snippet b {
color: #8ec07c !important;
}
.btn--top {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.btn--top:hover {
background-color: #b8bb26 !important;
}
.result--sep--hr:before {
background-color: #b8bb26 !important;
}

@ -0,0 +1,52 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}

@ -0,0 +1,952 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
* {
border-color: #3c3836 !important;
}
.news .alert .pull-info {
background-color: #403c3a !important;
}
.link-gray-dark,
.text-gray-dark {
color: #83a598 !important;
}
.bg-white {
background-color: #282828 !important;
}
.border {
border-color: #fabd2f !important;
}
.breadcrumb .repo-root.js-repo-root a {
color: #458588 !important;
}
.breadcrumb strong.final-path {
color: #83a598 !important;
}
button.ajax-pagination-btn {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
button.ajax-pagination-btn:hover {
background-color: #b8bb26 !important;
}
.comment-reactions .btn-link {
color: #83a598 !important;
}
.comment-reactions .user-has-reacted {
background-color: #3c3836 !important;
}
.text-gray-dark {
color: #83a598 !important;
}
.contrib-number {
color: #8ec07c !important;
}
.counter {
background-color: #44403e !important;
color: #8ec07c !important;
}
.diffstat-bar {
color: #83a598 !important;
}
.file-header {
background-color: #3c3836 !important;
}
.file-history-tease .participation {
background-color: #282828 !important;
color: #83a598 !important;
}
.file-history-tease .participation .quickstat strong {
color: #83a598 !important;
}
.file-history-tease .participation a {
color: #b8bb26 !important;
}
.file-history-tease .author a {
color: #83a598 !important;
}
.file-history-tease-header {
background-color: #3c3836 !important;
}
.file-info-divider {
background-color: #b8bb26 !important;
}
.file-wrap {
color: #83a598 !important;
}
.file-wrap * {
background-color: transparent !important;
}
.filter-bar {
background-color: #403c3a !important;
}
a.filter-item,
.filter-item {
color: #83a598 !important;
}
a.filter-item.selected,
.filter-item.selected {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
a.filter-item:hover,
.filter-item:hover {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.flash {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.gh-header-number {
color: #b8bb26 !important;
}
.ellipsis-expander,
.hidden-text-expander a {
background-color: #3c3836 !important;
}
.issue-meta {
color: #b8bb26 !important;
}
.issues-listing a {
color: #83a598 !important;
}
.muted-link {
color: #83a598 !important;
}
.new-user-avatar-cta {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
color: #8ec07c !important;
}
.overall-summary {
border-color: #b8bb26 !important;
}
.pinned-repo-item.border {
border-color: #b8bb26 !important;
}
.progress-bar {
background-color: #b8bb26 !important;
}
.simple-box {
background-color: #3c3836 !important;
}
.social-count {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
color: #8ec07c !important;
}
.scope-badge {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.stats-switcher-wrapper {
background-color: #282828 !important;
}
.stats-switcher-wrapper .numbers-summary li a {
color: #83a598 !important;
}
.table-list-header-toggle .btn-link {
color: #b8bb26 !important;
}
.table-list-header-toggle .btn-link.selected {
color: #83a598 !important;
}
.text-emphasized {
color: #8ec07c !important;
}
.text-diff-added {
color: #98971a !important;
}
.text-diff-deleted {
color: #cc241d !important;
}
.avatar,
.timeline-comment-avatar {
filter: opacity(75%);
}
.blob-code {
background-color: #282828 !important;
color: #83a598 !important;
}
.blob-code-addition {
background-color: rgba(231,230,113,0.1) !important;
}
.blob-code-addition .x {
background-color: #727113 !important;
color: #c1d2cb !important;
}
.blob-code-deletion {
background-color: rgba(204,36,29,0.2) !important;
}
.blob-code-deletion .x {
background-color: #66120f !important;
color: #c1d2cb !important;
}
.blob-code-hunk {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
}
.blob-code-inner {
color: #83a598 !important;
}
.blob-num {
background-color: #282828 !important;
color: #b8bb26 !important;
}
.file {
color: #83a598 !important;
}
.form-control {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
}
.pl-c {
color: #b8bb26 !important;
}
.pl-c1 {
color: #458588 !important;
}
.pl-e {
color: #d79921 !important;
}
.pl-en {
color: #458588 !important;
}
.pl-k {
color: #98971a !important;
font-weight: bold !important;
}
.pl-pds {
color: #689d6a !important;
}
.pl-s {
color: #689d6a !important;
}
.pl-smi {
color: #83a598 !important;
}
.pl-v {
color: #98971a !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #98971a !important;
background-color: transparent !important;
}
.pl-md {
color: #cc241d !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #3c3836 !important;
}
.boxed-group * {
border-color: #b8bb26 !important;
}
.boxed-group article {
background-color: #282828 !important;
color: #83a598 !important;
}
.boxed-group > h3 {
background-color: #44403e !important;
color: #8ec07c !important;
}
.more-repos {
background-color: #44403e !important;
box-shadow: inset 0 1px 0 #b8bb26 !important;
}
.boxed-group-inner {
background-color: #282828 !important;
}
.branch-action-body {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
}
.branch-action-body div {
border-color: #b8bb26 !important;
}
.branch-action-state-clean .branch-action-icon {
background-color: #98971a !important;
}
.branch-action-state-dirty .branch-action-icon,
.branch-action-state-unstable .branch-action-icon,
.branch-action-state-unknown .branch-action-icon {
background-color: #d79921 !important;
color: #fff !important;
}
.text-shadow-light,
.branch-group-name,
.branch-summary {
color: #83a598 !important;
text-shadow: none !important;
}
.branch-a-b-count .meter {
background-color: #d79921 !important;
}
.more-branches,
.branch-group-heading,
.branch-infobar,
.branch-name {
border-color: #b8bb26 !important;
background-color: #3c3836 !important;
}
.State,
.State:visited {
color: #fff !important;
}
.State--red {
background-color: #cc241d !important;
color: #282828 !important;
}
.State--green {
background-color: #98971a !important;
color: #282828 !important;
}
.select-menu-filters {
background-color: #403c3a !important;
color: #8ec07c !important;
}
.js-select-menu-tab {
background-color: #44403e !important;
color: #8ec07c !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #b8bb26 !important;
color: #282828 !important;
}
.signed-commit-header {
background-color: #282828 !important;
}
.build-status-item {
background-color: #44403e !important;
color: #8ec07c !important;
}
.build-status-item .build-status-details {
color: #458588 !important;
}
.capped-card h3 {
background-color: #44403e !important;
}
.capped-card h3 a {
color: #8ec07c !important;
}
.capped-card-content {
background-color: #282828 !important;
}
.capped-list th {
background-color: #403c3a !important;
color: #8ec07c !important;
}
.capped-list tr:nth-child(2n) {
background-color: #3c3836 !important;
}
.commit,
.commit-meta,
.commit-icon .octicon,
.commit-group-title .octicon-git-commit {
background-color: #282828 !important;
}
.commit *,
.commit-meta *,
.commit-icon .octicon *,
.commit-group-title .octicon-git-commit * {
border-color: #b8bb26 !important;
}
.commit-author {
color: #83a598 !important;
}
.commit-author-section {
color: #83a598 !important;
}
.commit-meta {
color: #b8bb26 !important;
}
.commit-meta .sha-block {
color: #b8bb26 !important;
}
.commit-meta .sha-block .sha {
color: #83a598 !important;
}
.commit-ref,
code.commit-sha {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.commit-ref .user,
code.commit-sha .user {
color: #689d6a !important;
}
.commit-branches *,
.commit-tease,
.commit-title {
background-color: rgba(185,255,255,0.2) !important;
border: none !important;
}
.commit-branches * *,
.commit-tease *,
.commit-title * {
color: #8ec07c !important;
}
.commit-tease-contributors {
background-color: #3c3836 !important;
}
div.commit-branches,
div.commit.full-commit p.commit-title,
qul.branches-list {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
div.commit-branches *,
div.commit.full-commit p.commit-title *,
qul.branches-list * {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.commit-meta {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.commits-listing:before {
background-color: #3c3836 !important;
}
.full-commit {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
}
.full-commit * {
text-shadow: none !important;
}
.commit-desc pre {
background-color: transparent !important;
color: #83a598 !important;
}
.commit.table-list-item {
border-color: #3c3836 !important;
}
.commit-meta.commit-author-section {
background-color: transparent !important;
color: #83a598 !important;
}
.table-list-cell .commit-title {
background-color: transparent !important;
color: #83a598 !important;
}
.completeness-indicator-success {
background-color: #98971a !important;
}
.completeness-indicator-problem {
background-color: #d79921 !important;
color: #fff !important;
}
.copyable-terminal {
background-color: #3c3836 !important;
}
.blankslate {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.comment-form-head.tabnav {
background-color: #282828 !important;
}
.conversation-list-heading .inner {
background-color: #282828 !important;
}
.discussion-item-closed .discussion-item-icon {
background-color: #cc241d !important;
color: #8ec07c !important;
}
.discussion-item-icon {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.discussion-item-icon.octicon {
color: #8ec07c !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #8ec07c !important;
}
.discussion-timeline:before {
background-color: #fabd2f !important;
}
.discussion-timeline-actions {
background-color: #282828 !important;
}
.drag-and-drop {
background-color: #3c3836 !important;
}
.new-discussion-timeline .closed-banner {
background-color: #fabd2f !important;
border-color: #282828 !important;
}
.timeline-comment {
background-color: #282828 !important;
border-color: #b8bb26 !important;
}
.timeline-comment-header {
background-color: #3c3836 !important;
}
.timeline-comment-wrapper {
border-color: #282828 !important;
}
.donut-chart > .pending {
fill: #d79921 !important;
}
.dropdown-divider {
background-color: #fabd2f !important;
}
.dropdown-item {
color: #83a598 !important;
}
.dropdown-item:hover {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.dropdown-menu {
background-color: #44403e !important;
color: #8ec07c !important;
border-color: #fabd2f !important;
}
.files * {
color: #83a598 !important;
}
.files tbody tr {
border-color: #3c3836 !important;
}
.files tbody tr:nth-child(even) {
background-color: #2c2c2c !important;
}
.files tbody tr:nth-child(odd) {
background-color: #282828 !important;
}
.files tbody tr:hover * {
background-color: #44403e !important;
}
.btn {
background-image: linear-gradient(to bottom, #b8bb26, #3c3836) !important;
border-color: #b8bb26 !important;
color: #8ec07c !important;
}
.btn:hover {
background-color: #403c3a !important;
}
.btn-primary,
.issues-listing .btn-primary {
background-color: #98971a !important;
background-image: linear-gradient(#98971a, #4c4c0d) !important;
color: #000 !important;
filter: opacity(62.5%);
}
.entry-title a {
color: #458588 !important;
}
.Header {
background-color: #403c3a !important;
border-bottom-color: #b8bb26 !important;
}
.Header a {
color: #8ec07c !important;
}
.lang {
color: #8ec07c !important;
}
.reponav-item,
.pagehead-tabs-item {
background-color: #3c3836 !important;
border-color: transparent !important;
color: #83a598 !important;
}
.reponav-item:visited,
.pagehead-tabs-item:visited {
color: #83a598 !important;
}
.reponav-item.selected,
.pagehead-tabs-item.selected {
background-color: #282828 !important;
border-color: #cc241d #44403e transparent !important;
}
.site-footer-links * {
color: #83a598 !important;
}
.Box-row--focus-gray.navigation-focus {
background-color: #403c3a !important;
color: #8ec07c !important;
}
.js-directory-link {
color: #458588 !important;
}
.js-site-search-form input,
.js-chromeless-input-container {
background-color: #282828 !important;
border-color: #b8bb26 !important;
}
a.label {
color: #000 !important;
filter: opacity(75%);
}
.notifications-list a {
color: #83a598 !important;
}
.notifications-list li {
background-color: #282828 !important;
}
.octicon,
.octicon-repo {
color: #8ec07c !important;
}
.octicon.type-icon-state-closed,
.octicon-repo.type-icon-state-closed {
color: rgba(255,34,23,0.65) !important;
}
.octicon.type-icon-state-merged,
.octicon-repo.type-icon-state-merged {
color: #d3869b !important;
}
.octicon.type-icon-state-open,
.octicon-repo.type-icon-state-open {
color: rgba(212,211,18,0.65) !important;
}
.octicon-alert {
color: #fff !important;
}
.octicon-x {
color: #cc241d !important;
}
.octicon-check {
color: #98971a !important;
}
.octicon-primitive-dot {
color: #d79921 !important;
}
.octicon-clippy {
color: #8ec07c !important;
}
.octicon-git-pull-request,
.octicon-diff {
color: #fff !important;
}
.octicon-markdown {
color: #b8bb26 !important;
}
.orghead {
background-color: #3c3836 !important;
border-color: #fabd2f !important;
border-bottom: 0px !important;
color: #8ec07c !important;
}
.org-name {
color: #8ec07c !important;
}
.pagehead.orghead {
background-color: #3c3836 !important;
}
.outline-box-highlighted {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.pagination .current {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.pagination .disabled {
background-color: #3c3836 !important;
color: #b8bb26 !important;
}
.pagination .disabled:hover {
background-color: #3c3836 !important;
}
.pagination .gap {
background-color: #3c3836 !important;
color: #b8bb26 !important;
}
.pagination a {
background-color: #3c3836 !important;
border-color: #282828 !important;
color: #83a598 !important;
}
.pagination a:hover {
background-color: #b8bb26 !important;
color: #282828 !important;
}
.empty-cell,
.diffbar {
background-color: #282828 !important;
}
.merge-status-item {
background-color: #44403e !important;
}
.merge-message {
background-color: #403c3a !important;
}
.pr-toolbar {
background-color: #282828 !important;
}
.review-thread-reply {
background-color: #3c3836 !important;
}
.review-thread-reply .inline-comment-form {
background-color: #282828 !important;
}
.octicon-git-merge {
color: #fff !important;
}
.uploaded-files {
background-color: #282828 !important;
}
.upload-progress {
background-color: #3c3836 !important;
box-shadow: 1px 0px 0px #3c3836 inset;
}
#readme .plain {
background-color: #282828 !important;
}
.markdown-body,
.markdown-body table * {
background-color: #282828 !important;
border-color: #fabd2f !important;
color: #83a598 !important;
}
.markdown-body a,
.markdown-body table * a {
color: #458588 !important;
}
.markdown-body code,
.markdown-body table * code,
.markdown-body pre,
.markdown-body table * pre {
background-color: #3c3836 !important;
}
.markdown-body hr,
.markdown-body table * hr {
background-color: #b8bb26 !important;
}
.markdown-body img,
.markdown-body table * img {
background-color: #282828 !important;
}
.task-list-item.hovered {
background-color: #3c3836 !important;
}
.range-editor {
background-color: #3c3836 !important;
}
.compare-pr-placeholder {
background-color: #403c3a !important;
}
ul.comparison-list > li.title {
background-color: #44403e !important;
}
ul.comparison-list {
background-color: #403c3a !important;
}
.repository-description {
color: #83a598 !important;
}
.repository-meta .edit-repository-meta label {
color: #83a598 !important;
}
.pagehead.repohead {
background-color: #3c3836 !important;
}
.repository-content .RecentBranches {
background-color: #3c3836 !important;
border-color: #fabd2f !important;
}
.repohead-details-container a {
color: #83a598 !important;
}
.select-menu-modal {
border-color: #83a598 !important;
}
.select-menu-modal * {
color: #83a598 !important;
}
.select-menu-header,
.select-menu-header * {
background-color: #3c3836 !important;
color: #8ec07c !important;
text-shadow: none !important;
}
.select-menu-item {
background-color: #282828 !important;
}
.select-menu-item.navigation-focus,
.select-menu-item.navigation-focus.selected,
.select-menu-item.navigation-focus.select-menu-action,
.select-menu-item-text.navigation-focus {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.repository-sidebar {
background-color: #282828 !important;
}
.thread-subscription-status {
background-color: #282828 !important;
}
.sunken-menu {
background-image: linear-gradient(to right, #3c3836 0%, #282828 8px) !important;
box-shadow: 1px 0px 0px #3c3836 inset;
}
.sunken-menu:before {
background-image: linear-gradient(#282828, transparent) !important;
}
.sunken-menu:after {
background-image: linear-gradient(transparent, #282828) !important;
}
.sunken-menu-item {
border-color: #282828 !important;
}
.sunken-menu-item.selected {
background-color: #282828 !important;
border-color: #44403e !important;
color: #8ec07c !important;
}
.sunken-menu-item.selected:after {
background-color: #fb4934 !important;
}
.sunken-menu-separator:before {
background-image: linear-gradient(to right, #3c3836 70%, #282828 100%) !important;
}
.state {
color: #8ec07c !important;
}
.state-closed {
background-color: #cc241d !important;
}
.state-open {
background-color: #98971a !important;
}
.subnav-item {
color: #83a598 !important;
}
.subnav-item:hover {
background-color: #403c3a !important;
}
.subnav-item:visited {
color: #83a598 !important;
}
.subnav-item.selected {
background-color: #3c3836 !important;
}
.subnav-links a:hover {
background-color: #3c3836 !important;
}
.subnav-search input {
border-color: #b8bb26 !important;
}
.right .tabnav-extra {
color: #b8bb26 !important;
}
a.tabnav-tab,
.tabnav-tab {
border-color: transparent !important;
color: #b8bb26 !important;
}
a.tabnav-tab.selected,
.tabnav-tab.selected {
background-color: #282828 !important;
background-image: linear-gradient(#3c3836, #282828) !important;
border-color: #fabd2f !important;
color: #8ec07c !important;
}
.table-list tr,
.table-list li {
background-color: #282828 !important;
}
.table-list tr:hover,
.table-list li:hover {
background-color: #44403e !important;
}
.table-list-header {
background-color: #3c3836 !important;
}
.text-pending {
color: #d79921 !important;
}
.text-pending .octicon-primitive-dot {
color: #d79921 !important;
}
.text-red {
color: #cc241d !important;
}
.timeline-commits .commit-meta {
background-color: #282828 !important;
}
.timeline-commits .commit-meta .commit-id {
color: #b8bb26 !important;
}
.topic-tag.topic-tag-link {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.underline-nav-item {
color: #83a598 !important;
}
.underline-nav-item.selected {
border-bottom-color: #cc241d !important;
color: #83a598 !important;
}
.user-profile-nav {
background-color: #3c3836 !important;
border-color: #fabd2f !important;
}
.user-profile-sticky-bar:after {
background-color: #3c3836 !important;
border-color: #fabd2f !important;
}
.graphs .area {
fill: #98971a;
}
.summary-stats li .num {
color: #8ec07c !important;
}
.viz {
background-color: #403c3a !important;
}
.facebox-popup {
color: #83a598 !important;
background-color: #282828 !important;
}
.facebox-popup .octicon {
color: #fff !important;
}
.facebox-popup .owner-select-target {
color: #83a598 !important;
background-color: #3c3836 !important;
}
.facebox-popup .owner-select-target:hover {
background-color: #b8bb26 !important;
}
.suggester {
background-color: #44403e !important;
}
.suggester li.navigation-focus {
background-color: #b8bb26 !important;
}

@ -0,0 +1,74 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.sfbgg {
background-color: #3c3836 !important;
}
.sbib_a {
background: linear-gradient(to bottom, #3c3836, #282828) !important;
}
input#lst-ib,
#sb_ifc0.sbib_b,
#gs_taif0 {
background: transparent !important;
}
#lst-ib,
.sbsb_a {
background-color: #282828 !important;
}
.kpbb {
background-image: linear-gradient(to bottom, #67afb2, #458588) !important;
}
#hdtbSum {
background-color: #282828 !important;
}
#hdtbMenus.hdtb-td-o {
background-color: #282828 !important;
}
#hdtb-tls.hdtb-tl {
background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
}
#hdtb-tls.hdtb-tl.hdtb-tl-sel {
background-image: linear-gradient(to bottom, #3c3836, #282828) !important;
}
#abar_button_opt.ab_button {
background: linear-gradient(to bottom, #282828, #3c3836) !important;
}
#appbar {
background-color: #282828 !important;
}
cite {
color: #98971a !important;
}
.ab_dropdown {
background-color: #282828 !important;
}
div.crp {
background-color: #282828 !important;
}
#fbar {
background-color: #3c3836 !important;
}

@ -0,0 +1,76 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
tr.Even {
background-color: #3c3836 !important;
}
.BigQuote {
background-color: #3c3836 !important;
color: #fb4934 !important;
}
.Cat1HL {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.Cat2HL {
background-color: #44403e !important;
}
.Cat3HL {
background-color: #403c3a !important;
}
.FeatureByline {
background-color: #3c3836 !important;
border: none !important;
}
.Headline {
background-color: #44403e !important;
}
.QuotedText {
color: #d3869b !important;
}
DIV.GAByline {
background-color: #3c3836 !important;
border: none !important;
}
table.OddEven tr:nth-child(even) {
background-color: #2c2c2c !important;
}
table.OddEven tr:nth-child(odd) {
background-color: #282828 !important;
}
DIV.CommentBox {
border-color: #3c3836 !important;
}
DIV.CommentBox P.CommentTitle {
background-color: #44403e !important;
}
#menu,
.topnav-container {
background-color: #3c3836 !important;
}
.navmenu ul {
background-color: #3c3836 !important;
}

@ -0,0 +1,144 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
body * {
border-color: #44403e !important;
}
#content {
background-color: #282828 !important;
color: #83a598 !important;
}
#mw-head,
#mw-panel {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
#mw-head div.portal,
#mw-panel div.portal {
background-image: none !important;
}
#mw-head {
background-color: #3c3836 !important;
background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
}
#mw-panel,
#p-logo {
background-image: linear-gradient(to right, #282828, #3c3836) !important;
}
div.vectorTabs {
background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
}
div.vectorTabs ul {
background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
}
div.vectorTabs ul li {
background-color: #3c3836 !important;
background-image: none !important;
padding: 0px 1px 0px 1px !important;
}
div.vectorTabs span {
background-color: #3c3836 !important;
background-image: linear-gradient(to bottom, #282828, #3c3836) !important;
}
div.vectorTabs li.selected,
div.vectorTabs li.selected span {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #3c3836, #282828) !important;
}
.mw-wiki-logo {
filter: opacity(50%);
}
div#simpleSearch #searchInput {
background-color: #282828 !important;
padding: 0.05em 0px 0.2em 0.2em !important;
}
.ambox,
.infobox,
#toc,
#toctitle,
.toclevel-1 {
background-color: #3c3836 !important;
border-color: #44403e !important;
color: #8ec07c !important;
}
.catlinks {
background-color: #3c3836 !important;
border-color: #44403e !important;
color: #8ec07c !important;
}
.navbox {
background-color: #3c3836 !important;
border-color: #44403e !important;
color: #8ec07c !important;
}
.navbox .th,
.navbox .navbox-title {
background-color: #44403e !important;
}
.navbox-abovebelow,
th.navbox-group,
.navbox-subgroup,
.navbox-title {
background-color: #403c3a !important;
}
.navbox-even {
background-color: #282828 !important;
}
h1,
h2,
h3,
h4,
h5,
h6 {
border-color: #44403e !important;
color: #8ec07c !important;
}
code {
background-color: #44403e !important;
border-color: #44403e !important;
color: #8ec07c !important;
}
div.thumbinner {
background-color: #3c3836 !important;
border-color: #44403e !important;
}
img {
filter: opacity(75%);
}
img.thumbimage {
border-color: #44403e !important;
}
.mw-body .external {
opacity: 0.5 !important;
}
table.wikitable {
background-color: #282828 !important;
border-color: #44403e !important;
color: #83a598 !important;
}
table.wikitable > * > tr > th {
background-color: #3c3836 !important;
}

@ -0,0 +1,84 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
table {
background-color: #282828 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #fb4934 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #282828 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #282828 !important;
}
.title a {
color: #83a598 !important;
}
.title a:visited {
color: #b8bb26 !important;
}
a.storylink {
color: #8ec07c !important;
font-weight: bold;
}
.sitestr {
color: #458588 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #282828 !important;
}
#hnmain .comhead {
color: #8ec07c !important;
}
#hnmain .c00 {
color: #83a598 !important;
}
#hnmain a.hnuser {
color: #d79921 !important;
}
#hnmain span.age a {
color: #b8bb26 !important;
}
.cdd {
color: rgba(255,34,23,0.65) !important;
}
.comment i {
color: #b8bb26 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #282828 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #fb4934 !important;
}

@ -0,0 +1,61 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
div#page div#header {
background-color: #282828 !important;
}
div#page div#header a {
color: #d3869b !important;
}
.post {
background-color: #282828 !important;
}
.post * {
overflow: auto !important;
}
.post h2 {
background-color: #3c3836 !important;
}
.post h2 a {
color: #8ec07c !important;
}
.post div.entry {
background-color: #282828 !important;
color: #83a598 !important;
}
.post div.entry blockquote {
background-color: #3c3836 !important;
}
.post div.entry kbd {
background-color: #3c3836 !important;
border-color: #b8bb26 !important;
box-shadow: none !important;
color: #8ec07c !important;
text-shadow: 0px 1px 0px #000 !important;
}
.post pre.mode-line {
overflow: visible !important;
}

@ -0,0 +1,117 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
#sr-header-area {
background-color: #3c3836 !important;
}
#sr-header-area .srdrop .selected {
color: #83a598 !important;
}
#sr-header-area #sr-more-link {
background-color: #3c3836 !important;
}
.link.promotedlink.promoted {
background-color: #3c3836 !important;
}
.link .usertext .md {
background-color: #3c3836 !important;
}
.linkinfo {
background-color: #3c3836 !important;
}
.linklisting .odd {
background-color: #3c3836 !important;
}
.thing .title {
color: #83a598 !important;
}
div.md {
color: #83a598 !important;
}
body.comment {
background-color: #282828 !important;
}
.commentarea > .usertext {
background-color: #282828 !important;
}
.commentarea .menuarea {
background-color: #282828 !important;
}
.comments-page .panestack-title {
background-color: #282828 !important;
}
.listing-chooser {
background-color: #282828 !important;
}
.listing-chooser .intro {
background-color: #b8bb26 !important;
color: #8ec07c !important;
}
.listing-chooser .grippy {
background-color: #282828 !important;
}
.listing-chooser .grippy:after {
border-right: none !important;
}
.listing-chooser li {
background-color: #3c3836 !important;
}
.listing-chooser li.selected {
background-color: #b8bb26 !important;
box-shadow: none;
}
.listing-chooser li a {
color: #83a598 !important;
}
.listing-chooser li a .description {
color: #8ec07c !important;
}
.titlebox {
background-color: #3c3836 !important;
}
.titlebox form.toggle {
background-color: #3c3836 !important;
color: #83a598 !important;
}
.side .usertext-body .md {
background-color: #3c3836 !important;
}
.side {
background-color: #3c3836 !important;
}
.sidebox .spacer {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.tabmenu li a {
background-color: #3c3836 !important;
}
#header-bottom-right {
background-color: #3c3836 !important;
}
.morelink .nub {
background-color: #3c3836 !important;
}

@ -0,0 +1,74 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
tr:hover,
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
#toolMenu li {
background-color: #282828 !important;
}
.navPanel,
.navIntraTool {
background-color: #282828 !important;
}
.instruction,
.sakaiCopyrightInfo {
color: #83a598 !important;
}
.listHier th {
background-color: #44403e !important;
}
ul.makeMenu {
background-color: #44403e !important;
border: 1px solid #44403e !important;
}
tr.external {
background-color: #44403e !important;
}

@ -0,0 +1,236 @@
* {
border-color: #fabd2f !important;
}
a {
color: #458588 !important;
}
a:visited {
color: #d3869b !important;
}
body {
background-color: #282828 !important;
color: #83a598 !important;
}
html {
background-color: #282828 !important;
}
input,
textarea {
background-color: #3c3836 !important;
color: #83a598 !important;
}
blockquote,
pre {
background-color: #3c3836 !important;
color: #83a598 !important;
}
hr {
background-color: #44403e !important;
color: #44403e !important;
}
.bounty-indicator,
.bounty-indicator-tab {
background-color: #d3869b !important;
}
.bottom-notice {
background-color: #3c3836 !important;
}
.comments-link {
color: #98971a !important;
}
.page-numbers {
background-color: #98971a !important;
color: #a89984 !important;
}
.page-numbers.current {
background-color: #fb4934 !important;
color: #282828 !important;
}
.post-menu a {
color: #d3869b !important;
}
.question-status {
background-color: #3c3836 !important;
}
pre code {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
pre code .atn {
color: #458588 !important;
}
pre code .atv {
color: #689d6a !important;
}
pre code .com {
color: #b8bb26 !important;
}
pre code .kwd {
color: #98971a !important;
}
pre code .lit {
color: #b16286 !important;
}
pre code .pln,
pre code .pun {
color: #83a598 !important;
}
pre code .str {
color: #689d6a !important;
}
pre code .tag {
color: #98971a !important;
}
pre code .typ {
color: #d79921 !important;
}
#footer {
background-color: #403c3a !important;
color: #83a598 !important;
}
#footer #footer-sites th {
color: #8ec07c !important;
}
.top-footer-links a {
color: #98971a !important;
}
.so-header {
background-color: #44403e !important;
color: #8ec07c !important;
}
.so-header a {
color: #98971a !important;
}
.so-header .navigation .-list .-item :hover {
background-color: #98971a !important;
color: #ebdbb2 !important;
}
.topbar-dialog {
background-color: #282828 !important;
box-shadow: #b8bb26 5px 5px 5px;
}
.topbar-dialog .current-site-container {
background-color: #282828 !important;
}
.topbar-dialog .header {
background-color: #3c3836 !important;
}
.topbar-dialog .header a {
color: #8ec07c !important;
}
.topbar-dialog .site-link {
color: #8ec07c !important;
}
#header {
background-color: #44403e !important;
}
#question-header .question-hyperlink {
color: #8ec07c !important;
}
#hlogo a {
filter: opacity(75%);
}
.new-post-activity {
background-color: #3c3836 !important;
}
.tagged-interesting {
background-color: #44403e !important;
}
div.answered-accepted {
background-color: #98971a !important;
color: #a89984 !important;
}
div.answered-accepted .mini-counts {
background-color: #98971a !important;
color: #a89984 !important;
}
.answered .mini-counts span {
color: #98971a !important;
}
.unanswered .mini-counts span {
color: #83a598 !important;
}
#hot-network-questions a {
color: #689d6a !important;
}
#hot-network-questions h4 a.js-gps-track {
color: #8ec07c !important;
}
#sidebar .community-bulletin .bulletin-item-content a {
color: #8ec07c !important;
}
#sidebar .module.community-bulletin {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
#sidebar .question-hyperlink {
color: #689d6a !important;
}
.newuser {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.label-key {
color: #83a598 !important;
}
.label-key b {
color: #8ec07c !important;
}
#h-chat-link {
color: #8ec07c !important;
}
.ad502-room {
background-color: #3c3836 !important;
box-shadow: #b8bb26 0px 1px 3px;
color: #8ec07c !important;
}
#tabs a {
background-color: transparent !important;
background-image: linear-gradient(to bottom, #282828, #3c3836);
color: #8ec07c !important;
}
#tabs a.youarehere {
background-image: linear-gradient(to bottom, #fb4934, #282828);
color: #ebdbb2 !important;
}
.post-tag {
background-color: #b8bb26 !important;
color: #282828 !important;
}
.post-tag::before {
background-color: #282828 !important;
}
a.comment-user.owner {
background-color: #98971a !important;
color: #a89984 !important;
}
.post-signature {
background-color: #3c3836 !important;
color: #8ec07c !important;
}
.post-signature a {
color: #689d6a !important;
}
.post-signature.owner .user-info .user-details a {
color: #98971a !important;
}
.post-signature span.relativetime {
color: #8ec07c !important;
}
.vote {
background-color: #3c3836 !important;
}
.vote .star-off {
filter: opacity(75%);
}
.vote .star-on {
filter: opacity(50%) !important;
}
.vote .vote-down-off,
.vote .vote-up-off {
filter: opacity(50%);
}
.answer-votes {
background-color: #b8bb26 !important;
color: #282828 !important;
}

@ -254,7 +254,7 @@ a.filter-item:hover,
}
.avatar,
.timeline-comment-avatar {
filter: opacity(50%);
filter: opacity(75%);
}
.blob-code {
background-color: #002b36 !important;
@ -321,6 +321,14 @@ a.filter-item:hover,
color: #859900 !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #859900 !important;
background-color: transparent !important;
}
.pl-md {
color: #dc322f !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #073642 !important;
@ -387,6 +395,22 @@ a.filter-item:hover,
background-color: #859900 !important;
color: #002b36 !important;
}
.select-menu-filters {
background-color: #083c4a !important;
color: #93a1a1 !important;
}
.js-select-menu-tab {
background-color: #094352 !important;
color: #93a1a1 !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #586e75 !important;
color: #002b36 !important;
}
.signed-commit-header {
background-color: #002b36 !important;
}
.build-status-item {
background-color: #094352 !important;
color: #93a1a1 !important;
@ -532,6 +556,11 @@ qul.branches-list * {
.discussion-item-icon.octicon {
color: #93a1a1 !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #93a1a1 !important;
}
.discussion-timeline:before {
background-color: #657b83 !important;
}
@ -1037,64 +1066,6 @@ div.crp {
#fbar {
background-color: #073642 !important;
}
table {
background-color: #002b36 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #cb4b16 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #002b36 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #002b36 !important;
}
.title a {
color: #839496 !important;
}
.title a:visited {
color: #586e75 !important;
}
a.storylink {
color: #93a1a1 !important;
font-weight: bold;
}
.sitestr {
color: #268bd2 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #002b36 !important;
}
#hnmain .comhead {
color: #93a1a1 !important;
}
#hnmain .c00 {
color: #839496 !important;
}
#hnmain a.hnuser {
color: #b58900 !important;
}
#hnmain span.age a {
color: #586e75 !important;
}
.cdd {
color: rgba(255,54,43,0.65) !important;
}
.comment i {
color: #586e75 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #002b36 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #cb4b16 !important;
}
tr.Even {
background-color: #073642 !important;
}
@ -1263,6 +1234,64 @@ table.wikitable {
table.wikitable > * > tr > th {
background-color: #073642 !important;
}
table {
background-color: #002b36 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #cb4b16 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #002b36 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #002b36 !important;
}
.title a {
color: #839496 !important;
}
.title a:visited {
color: #586e75 !important;
}
a.storylink {
color: #93a1a1 !important;
font-weight: bold;
}
.sitestr {
color: #268bd2 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #002b36 !important;
}
#hnmain .comhead {
color: #93a1a1 !important;
}
#hnmain .c00 {
color: #839496 !important;
}
#hnmain a.hnuser {
color: #b58900 !important;
}
#hnmain span.age a {
color: #586e75 !important;
}
.cdd {
color: rgba(255,54,43,0.65) !important;
}
.comment i {
color: #586e75 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #002b36 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #cb4b16 !important;
}
div#page div#header {
background-color: #002b36 !important;
}

@ -0,0 +1,262 @@
* {
border-color: #657b83 !important;
}
a {
color: #268bd2 !important;
}
a:visited {
color: #6c71c4 !important;
}
body {
background-color: #002b36 !important;
color: #839496 !important;
}
html {
background-color: #002b36 !important;
}
input,
textarea {
background-color: #073642 !important;
color: #839496 !important;
}
blockquote,
pre {
background-color: #073642 !important;
color: #839496 !important;
}
code {
font-size: 1.2em;
}
pre {
box-shadow: none;
background-color: #094352 !important;
font-size: 1.2em;
}
img {
margin: 0.25em;
}
.buttons {
background-color: #073642 !important;
box-shadow: 0 0 10px #93a1a1;
color: #93a1a1 !important;
font-family: sans-serif;
font-size: 1.5rem;
position: fixed;
left: -4.5em;
top: 50%;
transform: rotate(90deg);
filter: opacity(50%);
}
.hsReviewPanel {
display: none;
}
.title {
border: 0;
}
#postamble {
display: none;
}
#banner {
text-align: center;
}
#tabs {
background-color: #073642 !important;
float: left;
margin: 0px 0px 20px 0px;
padding: 0;
width: 100%;
font-family: sans-serif;
}
#tabs ul {
margin: 0;
padding: 0;
}
#tabs li {
float: left;
list-style-type: none;
margin: 0px 2px 0px 0px;
padding: 0px 0px 0px 0px;
white-space: nowrap;
}
#tabs li a {
display: block;
font-size: 120%;
font-weight: bold;
margin: 0;
padding: 4px 10px 4px 10px;
text-decoration: none;
}
#tabs li a:hover {
color: #90c5eb !important;
}
#tabs li.ui-tabs-active a {
background-color: #094352 !important;
color: #59a9e1 !important;
}
#content {
clear: both;
}
#postamble {
text-align: right;
}
blockquote {
background-color: #073642 !important;
padding-left: 0.75em;
padding-right: 0.75em;
padding-top: 0.01em;
padding-bottom: 0.01em;
overflow: hidden;
margin-left: 0;
}
.outline-text-2,
.outline-text-3,
.outline-text-4,
.outline-text-5,
.outline-text-6 {
padding-left: 4%;
}
.outline-3 {
padding-left: 4%;
}
.outline-4 {
padding-left: 4%;
}
.outline-5 {
padding-left: 4%;
}
.outline-6 {
padding-left: 4%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
border-bottom: 2px solid;
border-color: #094352 !important;
}
a:hover {
text-decoration: underline;
}
#search {
display: block;
float: right;
}
.tag {
background-color: #002b36 !important;
color: #93a1a1 !important;
border: 0px;
}
.tag span {
background-color: #094352 !important;
margin: 0.25em;
padding: 0.25em;
}
#table-of-contents {
display: table;
float: right;
}
#table-of-contents h2 {
display: none;
}
#table-of-contents li {
list-style-type: none;
}
#table-of-contents a:hover {
text-decoration: underline;
}
#minitoc {
background-color: #073642 !important;
position: fixed;
bottom: 5em;
left: -5.5em;
transform: rotate(90deg);
box-shadow: 0px 0px 10px #93a1a1;
padding-top: 0.1em;
padding-bottom: 0.1em;
padding-left: 0.5em;
padding-right: 0.5em;
filter: opacity(50%);
z-index: 200;
}
#minitoc:hover {
padding: 1em;
filter: opacity(100%);
transform: rotate(0deg);
left: 0;
}
#minitoc h2 {
margin-top: 0;
margin-bottom: 0;
}
#minitoc a {
display: block;
font-family: sans-serif;
text-decoration: none;
}
#minitoc a:hover {
text-decoration: underline;
}
#minitoc a {
display: none;
}
#minitoc:hover a {
display: block;
}
#toTop {
top: -100px /* together with this to put the div at the top */;
position: fixed /* this is the magic */;
text-align: center;
z-index: 999;
display: none;
}
#toTop:hover {
text-decoration: underline;
}
#left-panel-wrapper {
display: none;
position: fixed;
z-index: 200;
}
#left-panel-contents {
display: none;
position: fixed;
text-align: left;
top: 0;
z-index: 200;
}
#left-panel-button {
transform: rotate(90deg);
left: -23px;
position: fixed;
top: 50%;
z-index: 200;
}
#right-panel-wrapper {
position: fixed;
z-index: 200;
}
#right-panel-contents {
display: none;
z-index: 200;
position: fixed;
text-align: left;
top: 0;
}
.snippet-copy-to-clipboard {
display: none;
position: absolute;
left: 50px;
top: 50px;
}
.org-ul {
margin-top: 1em;
}
.org-ul li {
margin-top: 0.5em;
}
.org-ul > li > a {
font-family: sans-serif;
}

@ -186,7 +186,7 @@ a.filter-item:hover,
}
.avatar,
.timeline-comment-avatar {
filter: opacity(50%);
filter: opacity(75%);
}
.blob-code {
background-color: #002b36 !important;
@ -253,6 +253,14 @@ a.filter-item:hover,
color: #859900 !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #859900 !important;
background-color: transparent !important;
}
.pl-md {
color: #dc322f !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #073642 !important;
@ -319,6 +327,22 @@ a.filter-item:hover,
background-color: #859900 !important;
color: #002b36 !important;
}
.select-menu-filters {
background-color: #083c4a !important;
color: #93a1a1 !important;
}
.js-select-menu-tab {
background-color: #094352 !important;
color: #93a1a1 !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #586e75 !important;
color: #002b36 !important;
}
.signed-commit-header {
background-color: #002b36 !important;
}
.build-status-item {
background-color: #094352 !important;
color: #93a1a1 !important;
@ -464,6 +488,11 @@ qul.branches-list * {
.discussion-item-icon.octicon {
color: #93a1a1 !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #93a1a1 !important;
}
.discussion-timeline:before {
background-color: #657b83 !important;
}

@ -254,7 +254,7 @@ a.filter-item:hover,
}
.avatar,
.timeline-comment-avatar {
filter: opacity(50%);
filter: opacity(75%);
}
.blob-code {
background-color: #fdf6e3 !important;
@ -321,6 +321,14 @@ a.filter-item:hover,
color: #859900 !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #859900 !important;
background-color: transparent !important;
}
.pl-md {
color: #dc322f !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #eee8d5 !important;
@ -387,6 +395,22 @@ a.filter-item:hover,
background-color: #859900 !important;
color: #fdf6e3 !important;
}
.select-menu-filters {
background-color: #ebe4cf !important;
color: #586e75 !important;
}
.js-select-menu-tab {
background-color: #e9e1c8 !important;
color: #586e75 !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #93a1a1 !important;
color: #fdf6e3 !important;
}
.signed-commit-header {
background-color: #fdf6e3 !important;
}
.build-status-item {
background-color: #e9e1c8 !important;
color: #586e75 !important;
@ -532,6 +556,11 @@ qul.branches-list * {
.discussion-item-icon.octicon {
color: #586e75 !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #586e75 !important;
}
.discussion-timeline:before {
background-color: #839496 !important;
}
@ -1037,64 +1066,6 @@ div.crp {
#fbar {
background-color: #eee8d5 !important;
}
table {
background-color: #fdf6e3 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #cb4b16 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #fdf6e3 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #fdf6e3 !important;
}
.title a {
color: #657b83 !important;
}
.title a:visited {
color: #93a1a1 !important;
}
a.storylink {
color: #586e75 !important;
font-weight: bold;
}
.sitestr {
color: #268bd2 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #fdf6e3 !important;
}
#hnmain .comhead {
color: #586e75 !important;
}
#hnmain .c00 {
color: #657b83 !important;
}
#hnmain a.hnuser {
color: #b58900 !important;
}
#hnmain span.age a {
color: #93a1a1 !important;
}
.cdd {
color: rgba(202,0,0,0.65) !important;
}
.comment i {
color: #93a1a1 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #fdf6e3 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #cb4b16 !important;
}
tr.Even {
background-color: #eee8d5 !important;
}
@ -1263,6 +1234,64 @@ table.wikitable {
table.wikitable > * > tr > th {
background-color: #eee8d5 !important;
}
table {
background-color: #fdf6e3 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > table {
background-color: #cb4b16 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(1) a,
#hnmain > tbody:nth-child(1) > tr:nth-child(1) a {
color: #000 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) > tbody:nth-child(1) > tr:nth-child(2),
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #fdf6e3 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(2) {
background-color: #fdf6e3 !important;
}
.title a {
color: #657b83 !important;
}
.title a:visited {
color: #93a1a1 !important;
}
a.storylink {
color: #586e75 !important;
font-weight: bold;
}
.sitestr {
color: #268bd2 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(3) > td:nth-child(1) {
background-color: #fdf6e3 !important;
}
#hnmain .comhead {
color: #586e75 !important;
}
#hnmain .c00 {
color: #657b83 !important;
}
#hnmain a.hnuser {
color: #b58900 !important;
}
#hnmain span.age a {
color: #93a1a1 !important;
}
.cdd {
color: rgba(202,0,0,0.65) !important;
}
.comment i {
color: #93a1a1 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) {
background-color: #fdf6e3 !important;
}
#hnmain > tbody:nth-child(1) > tr:nth-child(4) > td:nth-child(1) > table:nth-child(2) > tbody:nth-child(1) > tr:nth-child(1) > td:nth-child(1) {
background-color: #cb4b16 !important;
}
div#page div#header {
background-color: #fdf6e3 !important;
}

@ -0,0 +1,262 @@
* {
border-color: #839496 !important;
}
a {
color: #268bd2 !important;
}
a:visited {
color: #6c71c4 !important;
}
body {
background-color: #fdf6e3 !important;
color: #657b83 !important;
}
html {
background-color: #fdf6e3 !important;
}
input,
textarea {
background-color: #eee8d5 !important;
color: #657b83 !important;
}
blockquote,
pre {
background-color: #eee8d5 !important;
color: #657b83 !important;
}
code {
font-size: 1.2em;
}
pre {
box-shadow: none;
background-color: #e9e1c8 !important;
font-size: 1.2em;
}
img {
margin: 0.25em;
}
.buttons {
background-color: #eee8d5 !important;
box-shadow: 0 0 10px #586e75;
color: #586e75 !important;
font-family: sans-serif;
font-size: 1.5rem;
position: fixed;
left: -4.5em;
top: 50%;
transform: rotate(90deg);
filter: opacity(50%);
}
.hsReviewPanel {
display: none;
}
.title {
border: 0;
}
#postamble {
display: none;
}
#banner {
text-align: center;
}
#tabs {
background-color: #eee8d5 !important;
float: left;
margin: 0px 0px 20px 0px;
padding: 0;
width: 100%;
font-family: sans-serif;
}
#tabs ul {
margin: 0;
padding: 0;
}
#tabs li {
float: left;
list-style-type: none;
margin: 0px 2px 0px 0px;
padding: 0px 0px 0px 0px;
white-space: nowrap;
}
#tabs li a {
display: block;
font-size: 120%;
font-weight: bold;
margin: 0;
padding: 4px 10px 4px 10px;
text-decoration: none;
}
#tabs li a:hover {
color: #90c5eb !important;
}
#tabs li.ui-tabs-active a {
background-color: #e9e1c8 !important;
color: #59a9e1 !important;
}
#content {
clear: both;
}
#postamble {
text-align: right;
}
blockquote {
background-color: #eee8d5 !important;
padding-left: 0.75em;
padding-right: 0.75em;
padding-top: 0.01em;
padding-bottom: 0.01em;
overflow: hidden;
margin-left: 0;
}
.outline-text-2,
.outline-text-3,
.outline-text-4,
.outline-text-5,
.outline-text-6 {
padding-left: 4%;
}
.outline-3 {
padding-left: 4%;
}
.outline-4 {
padding-left: 4%;
}
.outline-5 {
padding-left: 4%;
}
.outline-6 {
padding-left: 4%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
font-family: sans-serif;
border-bottom: 2px solid;
border-color: #e9e1c8 !important;
}
a:hover {
text-decoration: underline;
}
#search {
display: block;
float: right;
}
.tag {
background-color: #fdf6e3 !important;
color: #586e75 !important;
border: 0px;
}
.tag span {
background-color: #e9e1c8 !important;
margin: 0.25em;
padding: 0.25em;
}
#table-of-contents {
display: table;
float: right;
}
#table-of-contents h2 {
display: none;
}
#table-of-contents li {
list-style-type: none;
}
#table-of-contents a:hover {
text-decoration: underline;
}
#minitoc {
background-color: #eee8d5 !important;
position: fixed;
bottom: 5em;
left: -5.5em;
transform: rotate(90deg);
box-shadow: 0px 0px 10px #586e75;
padding-top: 0.1em;
padding-bottom: 0.1em;
padding-left: 0.5em;
padding-right: 0.5em;
filter: opacity(50%);
z-index: 200;
}
#minitoc:hover {
padding: 1em;
filter: opacity(100%);
transform: rotate(0deg);
left: 0;
}
#minitoc h2 {
margin-top: 0;
margin-bottom: 0;
}
#minitoc a {
display: block;
font-family: sans-serif;
text-decoration: none;
}
#minitoc a:hover {
text-decoration: underline;
}
#minitoc a {
display: none;
}
#minitoc:hover a {
display: block;
}
#toTop {
top: -100px /* together with this to put the div at the top */;
position: fixed /* this is the magic */;
text-align: center;
z-index: 999;
display: none;
}
#toTop:hover {
text-decoration: underline;
}
#left-panel-wrapper {
display: none;
position: fixed;
z-index: 200;
}
#left-panel-contents {
display: none;
position: fixed;
text-align: left;
top: 0;
z-index: 200;
}
#left-panel-button {
transform: rotate(90deg);
left: -23px;
position: fixed;
top: 50%;
z-index: 200;
}
#right-panel-wrapper {
position: fixed;
z-index: 200;
}
#right-panel-contents {
display: none;
z-index: 200;
position: fixed;
text-align: left;
top: 0;
}
.snippet-copy-to-clipboard {
display: none;
position: absolute;
left: 50px;
top: 50px;
}
.org-ul {
margin-top: 1em;
}
.org-ul li {
margin-top: 0.5em;
}
.org-ul > li > a {
font-family: sans-serif;
}

@ -186,7 +186,7 @@ a.filter-item:hover,
}
.avatar,
.timeline-comment-avatar {
filter: opacity(50%);
filter: opacity(75%);
}
.blob-code {
background-color: #fdf6e3 !important;
@ -253,6 +253,14 @@ a.filter-item:hover,
color: #859900 !important;
font-weight: bold !important;
}
.pl-mi1 {
color: #859900 !important;
background-color: transparent !important;
}
.pl-md {
color: #dc322f !important;
background-color: transparent !important;
}
.border-bottom,
.border-top {
border-color: #eee8d5 !important;
@ -319,6 +327,22 @@ a.filter-item:hover,
background-color: #859900 !important;
color: #fdf6e3 !important;
}
.select-menu-filters {
background-color: #ebe4cf !important;
color: #586e75 !important;
}
.js-select-menu-tab {
background-color: #e9e1c8 !important;
color: #586e75 !important;
}
.select-menu-tabs a.selected,
.select-menu-tab-nav.selected {
background-color: #93a1a1 !important;
color: #fdf6e3 !important;
}
.signed-commit-header {
background-color: #fdf6e3 !important;
}
.build-status-item {
background-color: #e9e1c8 !important;
color: #586e75 !important;
@ -464,6 +488,11 @@ qul.branches-list * {
.discussion-item-icon.octicon {
color: #586e75 !important;
}
.discussion-item-entity,
.discussion-item .renamed-was,
.discussion-item .renamed-is {
color: #586e75 !important;
}
.discussion-timeline:before {
background-color: #839496 !important;
}

@ -0,0 +1,262 @@
#!/usr/bin/env python3
# * Imports
import os
import shutil
import subprocess
import sys
import multiprocessing
import functools
from collections import namedtuple
from tempfile import mkstemp
# * Variables
sites_dir="sites"
themes_dir = "themes"
css_dir = "css"
screenshots_dir="screenshots"
phantomjs_command = "phantomjs --ssl-protocol=any --ignore-ssl-errors=true screenshot.js".split()
common_deps = ["styl/index.styl", "styl/mixins.styl"]
CSS = namedtuple("CSS", ['path', 'deps', 'theme', 'site'])
Theme = namedtuple("Theme", ['name', 'styl_path', 'support_files'])
# * Functions
def main():
"Update CSS files by default, or update screenshots."
if len(sys.argv) > 1 and sys.argv[1] == "screenshots":
update_screenshots()
else:
update_css_files()
# ** CSS
def update_css_files():
"Build CSS files that need to be built."
css_files = list_css(themes(), sites())
# Make directories first to avoid race condition
for css in css_files:
dir = os.path.join(css_dir, css.theme.name)
if not os.path.isdir(dir):
os.makedirs(dir)
pool = multiprocessing.Pool(multiprocessing.cpu_count())
pool.map(build, css_files)
def build(css):
"Build CSS file if necessary."
css_mtime = mtime(css.path)
make = False
for dep in css.deps:
if mtime(dep) > css_mtime:
make = True
break
if make:
stylus(css)
def stylus(css):
"Run Stylus to build CSS file."
output_file = css.path
command = ["stylus", "--include", "styl",
"--import", css.theme.styl_path,
"--import", "styl",
"-p", "sites/%s.styl" % css.site]
result = subprocess.check_output(command)
with open(output_file, "wb") as f:
f.write(result)
print(output_file)
# ** Screenshots
def update_screenshots():
"Update screenshots."
css_files = list_css(themes(), sites())
if not os.path.isdir(screenshots_dir):
# If the directory does not exist, create a new worktree for it.
# Assumes the screenshots branch exists.
subprocess.call(["git", "worktree", "prune"])
subprocess.call(["git", "worktree", "add",
screenshots_dir, "screenshots"])
# Make directories first to avoid race condition
for css in css_files:
output_dir = os.path.join(screenshots_dir, css.theme.name)
if not os.path.isdir(output_dir):
os.makedirs(output_dir)
pool = multiprocessing.Pool(multiprocessing.cpu_count())
pool.map(update_screenshot, css_files)
commit_screenshots()
def commit_screenshots():
if os.path.exists(os.path.join(screenshots_dir, ".git")):
subprocess.call(["git", "-C", screenshots_dir,
"add", "-A"])
# amend changes instead of keeping them to save space
subprocess.call(["git", "-C", screenshots_dir,
"commit", "--amend", "-m", "Update screenshots"])
else:
print("screenshot dir was not a worktree, aborting commit")
def update_screenshot(css):
"Update screenshot for CSS if necessary."
screenshot_path = screenshot_path_for_css(css)
if mtime(css.path) > mtime(screenshot_path):
save_screenshot(css)
def screenshot_path_for_css(css):
"Return path of screenshot for CSS."
return os.path.join(screenshots_dir, css.theme.name, "%s.png" % css.site)
def save_screenshot(css):
"Save screenshot for CSS."
# Prepare filename
screenshot_path = screenshot_path_for_css(css)
# Get URL
url = css_screenshot_url(css)
if not url:
# Screenshot disabled
return False
# Prepare command
command = list(phantomjs_command)
command.extend([url, screenshot_path, css.path])
# Run PhantomJS
subprocess.check_output(command)
# Compress with pngcrush
_, tempfile_path = mkstemp(suffix=".png")
subprocess.check_output(["pngcrush", screenshot_path, tempfile_path], stderr=subprocess.DEVNULL)
shutil.move(tempfile_path, screenshot_path)
print(screenshot_path)
def css_screenshot_url(css):
"Return URL for taking screenshots of CSS."
# Get site URL
site_url_filename = os.path.join(sites_dir, css.site + ".url")
if os.path.exists(site_url_filename):
with open(site_url_filename, "r") as f:
url = f.readlines()
if url:
# Use URL given in .url file
url = url[0].strip()
else:
# Use name of site file (without .styl extension)
url = "http://" + css.site
return url
# ** Support
def list_css(themes, sites):
"Return list of CSS files for THEMES and SITES."
return [CSS("%s/%s/%s-%s.css" % (css_dir, theme.name, theme.name,
site.strip('_')),
dependencies(theme, site), theme, site)
for theme in themes
for site in sites]
def themes():
"Return list of themes."
theme_names = []
themes = []
# Make list of theme directories
for d in os.listdir(themes_dir):
theme_names.append(d)
# Iterate over theme directories
for theme in theme_names:
support_files = []
variant_files = []
directory = os.path.join(themes_dir, theme)
# Iterate over files in theme directory
for f in os.listdir(directory):
path = os.path.join(themes_dir, theme, f)
if f == "colors.styl":
# Support file
support_files.append(path)
elif f.endswith(".styl"):
# Theme file
variant_files.append({'variant': without_styl(f), 'path': path})
# Otherwise, not a relevant file
# Add theme object to list
if len(variant_files) == 1:
# Only one variant: omit variant name from theme name
themes.append(Theme(theme, variant_files[0]['path'], support_files))
else:
# Multiple variants: include variant name in theme name
for f in variant_files:
themes.append(Theme("%s-%s" % (theme, f['variant']), f['path'], support_files))
return themes
def sites():
"Return list of sites."
for path, dirs, files in os.walk(sites_dir):
return [site.replace(".styl", "")
for site in files
if site.endswith(".styl")]
def dependencies(theme, site):
"Return list of dependency .styl files for THEME and SITE."
deps = list(common_deps)
deps.append(theme.styl_path)
deps.extend(theme.support_files)
deps.append("sites/%s.styl" % site)
if site == "all-sites":
deps += ["sites/%s.styl" % s for s in sites()]
return deps
@functools.lru_cache()
def mtime(path):
"Return mtime for PATH."
if os.path.isfile(path):
return os.path.getmtime(path)
else:
return 0
def without_styl(s):
"""Return string S without ".styl" extension."""
return s.replace(".styl", "")
# * Footer
if __name__ == "__main__":
main()

@ -0,0 +1,89 @@
#!/bin/bash
set -euo pipefail
IFS=$'\n\t'
API_BASE="https://api.github.com"
UPLOAD_BASE="https://uploads.github.com"
# TODO, rename this to alphapapa/solarized-everything-css
OWNER="alphapapa"
# REPO="solarized-everything-css"
REPO="solarized-everything-css"
REPO_BASE="${OWNER}/${REPO}"
TARGET_ZIP_NAME="solarized-everything.zip"
# USAGE:
# ./release.sh [tag-name] [tag-message]
#
# To upload releases, please put a github token in the GH_TOKEN env var, or run with
# GH_TOKEN="<TOKEN>" ./release.sh hello "my message"
#
# For a unofficial release: ./release.sh
#
# Dependencies: curl, jq, and git
# Check depdencies
if ! command -v curl >/dev/null 2>&1 \
|| ! command -v jq >/dev/null 2>&1 \
|| ! command -v git >/dev/null 2>&1; then
echo "Please install curl, jq, and git to continue" >&2
exit 1
fi
GIT_COMMIT="$(git rev-parse HEAD)"
echo "Running make..."
echo
make
mkdir -p dist
echo "zipping files..."
zip "dist/$TARGET_ZIP_NAME" -r css/
if [ -z "${GH_TOKEN:-}" ]; then
echo "No GH_TOKEN provided, exiting"
exit 2
fi
# Check if we have tag info
if [ -z "${1:-}" ]; then
echo
echo "Please provide a tag for this release" 2>&1
exit 1
elif [ -z "${2:-}" ]; then
echo
echo "Please provide a tag message this release" 2>&1
exit 1
else
TAG="$1"
MESSAGE="$2"
fi
echo "Creating release..."
echo
RELEASE_OBJECT="$(curl -X POST "$API_BASE/repos/$REPO_BASE/releases" \
-H "Authorization: token $GH_TOKEN" \
-d "{
\"tag_name\": \"$TAG\",
\"target_commitish\": \"$GIT_COMMIT\",
\"name\": \"$TAG\",
\"body\": \"$MESSAGE\",
\"draft\": true,
\"prerelease\": false
}")"
RELEASE_ID="$(echo "$RELEASE_OBJECT" | jq -r '.id')"
echo "Uploading release assets..."
curl -X POST "$UPLOAD_BASE/repos/$REPO_BASE/releases/$RELEASE_ID/assets?name=$TARGET_ZIP_NAME" \
-H "Authorization: token $GH_TOKEN" \
-H "Content-Type: application/zip" \
--data-binary "@dist/${TARGET_ZIP_NAME}" >/dev/null
echo
echo "Release created successfuly!"
echo "Please verify and publish the draft."

@ -0,0 +1,86 @@
"use strict";
// * Variables
var page = require('webpage').create(),
system = require('system'),
url, output_filename, size, pageWidth, pageHeight;
pageWidth = 1000;
// A shorter height would be nice, but with the enormous page headers
// nowadays (e.g. the stupid one inserted by GitHub unless you are
// logged in), you can't see anything!
pageHeight = 1000;
// ** Args
url = system.args[1];
output_filename = system.args[2];
// * Functions
function insert_css (stylesheet) {
// Insert HTML STYLE element with contents of string STYLESHEET.
var element = document.createElement('style');
element.type = "text/css";
element.innerHTML = stylesheet;
document.getElementsByTagName("head")[0].appendChild(element);
}
function process_page (status) {
if (status !== 'success') {
console.log('Unable to load the address!');
phantom.exit(1);
}
else {
// Add stylesheet
page.evaluate(insert_css, stylesheet);
// Take screenshot
window.setTimeout(
function () {
page.render(output_filename);
phantom.exit();
},
200
);
}
}
// * Main
// Fix console output from page.evaluate()
page.onConsoleMessage = function (msg) {
console.log("LOG: page.evaluate: " + msg);
};
// Log all external requests
// page.onResourceRequested = function (requestData, request) {
// console.log('LOG: LOADING RESOURCE: ', requestData['url']);
// };
// ** Check args
page.viewportSize = {
width: pageWidth,
height: pageHeight
};
page.clipRect = {
top: 0,
left: 0,
width: pageWidth,
height: pageHeight
};
// ** Read CSS file from disk
var css_file = system.args[3];
var fs = require("fs");
var stylesheet = fs.read(css_file);
// ** Load and render page
page.open(url, process_page);

Binary file not shown.

Before

Width:  |  Height:  |  Size: 86 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 85 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 182 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 181 KiB

@ -0,0 +1,890 @@
code
font-size 1.2em
pre
box-shadow none
background-color color-background-highlight-extra-less
font-size 1.2em
img
margin 0.25em
.buttons
background-color highlight
box-shadow 0 0 10px emphasized
color emphasized
font-family sans-serif
font-size 1.5rem
position fixed
left -4.5em
top 50%
transform rotate(90deg)
filter opacity(50%)
.hsReviewPanel
display none
.title
border 0
#postamble
display none
// #preamble
// background none repeat scroll 0 0 #46484B
// color #FFFFFF
// font-family Arial,Helvetica,sans-serif
// font-size 70%
// font-weight bold
// height 224px /* so that content begins after... */
// padding 2px 2px 0 6px
//
//
#banner
text-align center
//
//
#tabs
background-color highlight
float left
margin 0px 0px 20px 0px
padding 0
width 100%
font-family sans-serif
//
#tabs ul
margin 0
padding 0
//
//
#tabs li
float left
list-style-type none
margin 0px 2px 0px 0px
padding 0px 0px 0px 0px
white-space nowrap
//
//
#tabs li a
// color #EEEEEE
display block
font-size 120%
font-weight bold
margin 0
padding 4px 10px 4px 10px
text-decoration none
//
//
#tabs li a:hover
//background-color highlight-extra
color lighten(blue, 50%)
//
//
#tabs li.ui-tabs-active a
background-color color-background-highlight-extra-less
color lighten(blue, 25%)
//
//
#content
clear both
// background-color #FFFFFF
// font-size 100%
// margin 0 auto
// max-width 810px
// overflow-x hidden
// overflow-y auto
// padding 0px 10px 2px 10px
//
//
#postamble
// color #999999
// font-family Arial,Helvetica,sans-serif
// font-size 70%
// height 40px
// margin 0 auto
// max-width 810px
// padding-right 30px
// padding-top 22px
// padding 2px 2px 0 6px
text-align right
//
//
// body
// color #333333
// font-family DejaVu Sans, sans-serif
// margin 0 .1em
// padding 0
//
//
// b
// color #000000
//
//
blockquote
// /* Use #EAEAEA for background-color of border with src code block's name */
background-color highlight
padding-left 0.75em
padding-right 0.75em
padding-top 0.01em
padding-bottom 0.01em
overflow hidden
margin-left 0
// border 1px solid #DEDEDE
// color #444444
// line-height 1.14em
// overflow auto
// /* overflow-x auto */
// padding 0px 10px 0px 10px
//
//
// i
// color #1A1A1A
//
//h1, h2, h3, h4, h5, h6
// margin-left 25px
// h1
// padding-left 2%
// h2
// padding-left 4%
.outline-text-2, .outline-text-3, .outline-text-4, .outline-text-5, .outline-text-6
padding-left 4%
// h3
// padding-left 6%
.outline-3
padding-left 4%
// h4
// padding-left 8%
.outline-4
padding-left 4%
// h5
// padding-left 10%
.outline-5
padding-left 4%
// h6
// padding-left 14%
.outline-6
padding-left 4%
h1, h2, h3, h4, h5, h6
font-family sans-serif
border-bottom 2px solid
border-color color-background-highlight-extra-less
//
// h1, ul#tabs, h2, h3, h4, h5
// font-family "Trebuchet MS",Verdana,sans-serif
//
//
// h1
// background-color #0A3F69
// color #F8F8F8
// font-size 180%
// margin 0
// padding 9px 0px 0px 10px
//
//
// h2
// border-bottom 4px solid #67B3E3
// color #13679D
// font-size 160%
//
//
// h3, h4, h5, h6
// color #1572AE
//
//
//h3
// border-bottom 1px solid #B5DAF1
// font-size 140%
// margin-left 2%
//
//
//h4
// border-bottom 1px dotted #C9E3F5
// font-size 120%
// margin-left 2%
//
//
// h5
// font-size 110%
// margin-left 87px
//
//
// h6
// font-size 1em
// margin-left 100px
//
//
// .DONEheader
// color #ADADAD
// text-decoration line-through
//
//
// h3.DONEheader
// border-bottom 1px solid #DDDDDD
//
//
// h4.DONEheader
// border-bottom 1px dotted #DDDDDD
//
//
// .outline-text-2, .outline-text-3, .outline-text-4, .outline-text-5,
// .outline-3 > ul, /* for HTML export of Beamer slides */
// .outline-4 > ol, #text-footnotes
// margin-left 100px
//
//
// li > .outline-text-5,
// li > .outline-text-6,
// li > .outline-text-7
// font-weight normal
// margin-left 20px
//
//
// ul, ol
// padding-left 1.5em
//
//
// dt
// color #1572AE
// font-weight bold
//
//
// dd
// margin-bottom 6px
//
//
// pre
// /* Use #EAEAEA for background-color of border with src code block's name */
// background-color #fdf6e3
// border 1px solid #DEDEDE
// color #444444
// font-family Hack, DejaVu Sans Mono, monospace
// line-height 1.14em
// overflow auto
// /* overflow-x auto */
// padding 10px 10px 10px 10px !important
//
//
//
// pre.src
// background-color #002b36 !important
//
//
// code
// background-color #fdf6e3
// border 1px solid #DEDEDE
// color #444444
// font-family monospace
// /* font-size 0.93em */
// margin 0px 1px
// padding 0px 2px
//
//
// li > p, li > ul, li > .inlinetask, li > dl
// margin-left 0px
//
//
// dd > p, dd > ul, dd > .inlinetask, dd > dl
// margin-left 0px
//
//
// li.checked
// list-style-image url('../images/checked.png')
//
//
// li.halfchecked
// list-style-image url('../images/halfchecked.png')
//
//
// li.unchecked
// list-style-image url('../images/unchecked.png')
//
//
// a, alink, avisited
// color #2061A2
// text-decoration none
//
//
a:hover
text-decoration underline
//
//
// afocus
// outline none
//
//
#search
// border-radius 3px
// background none repeat scroll 0 0 #FFFFFF
display block
float right
// height 18px
// margin 5px 10px 0 0
// overflow hidden
// padding 0 3px
// width 188px
//
//
// #search input
// border 0 none
// color #666666
// float left
// font-family Arial,Helvetica,sans-serif
// font-size 11px
// font-weight normal
// margin 0
// padding 2px 4px
// width 160px
//
//
// #search button
// background url("../images/search-glass.png") no-repeat scroll 0 50% transparent
// border 0 none
// cursor pointer
// display block
// float right
// height 18px
// margin 0
// text-indent -999em
// width 14px
//
//
// table
// border-collapse collapse
// margin-right auto
// margin-left auto
//
//
// table td
// padding 3px 5px
//
//
// table, th, td
//
// border 1px solid #B5DAF1
// border-left 2px solid white
// border-right 2px solid white
//
//
// th
//
// border-width 1px 2px
// border-color white
// background-color #2061A2
// color white
//
//
// caption
// color #8D8D84
//
//
// img
// display block
// margin-left auto
// margin-right auto
// text-align center
//
//
// .figure
// color #8D8D84
// text-align center
//
//
// .fixme
// background #FFFF88 url('../images/fixme.png') no-repeat top left
// color #CC0000
// display inline-block
// height 16px
// text-indent -9999px
// width 82px
//
//
// .left
// text-align left
//
//
// .right
// text-align right
//
//
// .center
// text-align center
//
//
// .justify
// text-align justify
//
//
// .inlinetask
// background-color #F7F7F7
// border-collapse separate
// border-color #EEEEEE #EEEEEE #EEEEEE #1E90FF
// border-style solid
// border-width 1px 1px 1px 6px
// padding 8px 8px 0px 8px
// margin 10px 0px
//
//
// .inlinetask td
// padding 2px 5px 0px 2px
// border 0px
//
//
// .info
// border 1px solid
// background url('../images/info.png') no-repeat 10px 10px #BDE5F8
// color #00529B
// padding 4px 10px 4px 52px
// border-top-left-radius 5px
// border-top-right-radius 5px
// border-bottom-right-radius 5px
// border-bottom-left-radius 5px
// margin 10px 0px
//
//
// .tip
// border 1px solid
// background url('../images/tip.png') no-repeat 10px 10px #DFF2BF
// color #4F8A10
// padding 4px 10px 4px 52px
// border-top-left-radius 5px
// border-top-right-radius 5px
// border-bottom-right-radius 5px
// border-bottom-left-radius 5px
// margin 10px 0px
//
//
// .note
// border 1px solid
// background url('../images/note.png') no-repeat 10px 10px #FFFCCB
// color #9F6000
// padding 4px 10px 4px 52px
// border-top-left-radius 5px
// border-top-right-radius 5px
// border-bottom-right-radius 5px
// border-bottom-left-radius 5px
// margin 10px 0px
//
//
// .warning
// border 1px solid
// background url('../images/warning.png') no-repeat 10px 10px #FFBABA
// color #D8000C
// padding 4px 10px 4px 52px
// border-top-left-radius 5px
// border-top-right-radius 5px
// border-bottom-right-radius 5px
// border-bottom-left-radius 5px
// margin 10px 0px
//
//
// .todo, .done
// //margin 5px
// font-size 80%
// padding 3px
//
//
// .NEW
// background-color #FDFCD8
// border 1px solid #EEE9C3
// color #302B13
// font-weight normal
//
//
// .TODO
// background-color seagreen
// // border 1px solid #FC5158
// color white
//
//
// .UNDERWAY
// background-color seagreen
// //border 1px solid green
// color lawngreen
//
//
// .STRT, .STARTED
// background-color #FEF2D4
// border 1px solid #FDBF3D
// color #FDBF3D
//
//
// .WAIT, .WAITING, .DLGT, .DELEGATED
// background-color #DFFFDF
// border 1px solid #55BA80
// color #55BA80
//
//
// .SDAY, .SOMEDAY, .DFRD, .DEFERRED
// background-color #D3EEFF
// border 1px solid #42B5FF
// color #42B5FF
//
//
// .DONE, .CANX, .CANCELED
// background-color #969696
// border 1px solid #F2F2EE
// color #F2F2EE
//
//
.tag
background-color()
color emphasized
border 0px
span
background-color color-background-highlight-extra-less
margin 0.25em
padding 0.25em
// border 1px solid #EDEDED
// color #939393
// cursor pointer
// display block
// float right
// font-size 80%
// font-weight normal
// margin 0 3px
// padding 1px 2px
// border-radius 10px
//
//
// #right-panel-contents .tag span
// font-size 100%
//
//
// .tag spanhover
// background #BABDB6
//
//
// .tag .FLAGGED
// background-color #EDC6C8
// border 1px solid #EDC6C8
// color #C15F4E
//
//
// .tag .selected
// background-color #FFEBC1
// border 1px solid #FDBF3B
// color #A6750C
//
//
// #listOfTags .tag span
// display inline
// float none
//
//
// span.todo
// cursor pointer
// /* display block */
// /* float left */
// margin -1px 3px 0px 0px
//
//
// span.todohover
// background #BABDB6
// color #888888
//
//
// span.todo .selected
// background-color #FFEBC1
// border-color #FDBF3B
// color #A6750C
//
//
// .matchtag
// background-color #FBFFC0
//
//
// .matchNEW
// background-color #FDFCD8
//
//
// .matchTODO
// background-color #FFE6E4
//
//
// .matchSTRT
// background-color #FEF2D4
//
//
// .matchWAIT, .matchDLGT
// background-color #DFFFDF
//
//
// .matchSDAY, .matchDFRD
// background-color #E0EFFF
//
//
// #listOfTodo, #listOfDone, #listOfTags
// /* bottom 10px /\* together with this to put the div at the bottom*\/ */
// /* left 10px */
// /* list-style-type none */
// margin-left 0px
// /* position fixed /\* this is the magic *\/ */
//
//
// .timestamp-kwd
// background-color #FFF1F1
// color #880000
// margin 0px 4px 0px 0px
// padding 2px 0px 2px 2px
//
//
// .timestamp
// color #777777
// font-size 80%
//
//
#table-of-contents
// background-color #FFFFDD
// border 1px solid #E4E4E4
display table
float right
// line-height 1.2em
// padding 4px
// margin 4px
// max-width 400px
// float right
// width auto
//
//
#table-of-contents h2
display none
//
//
// #table-of-contents ul
// margin 0
// padding 0
//
//
#table-of-contents li
list-style-type none
// margin 0
//
//
// #table-of-contents li li
// margin-left 1.5em
//
//
// #table-of-contents li li li
// //font-size 0.8em
//
//
// #table-of-contents a
// color #606060
// //font-size 0.9em
// font-weight normal
// text-decoration none
//
//
#table-of-contents a:hover
text-decoration underline
// color #C61A1A
//
//
#minitoc
background-color highlight
position fixed
bottom 5em
left -5.5em
transform rotate(90deg)
box-shadow 0px 0px 10px emphasized
padding-top 0.1em
padding-bottom 0.1em
padding-left 0.5em
padding-right 0.5em
filter opacity(50%)
z-index 200
&:hover
padding 1em
filter opacity(100%)
transform rotate(0deg)
left 0
h2
margin-top 0
margin-bottom 0
// border 1px solid #E4E4E4
// color #484848
// line-height 1.2em
// margin 12px
// padding 4px
// width auto
//
//
#minitoc a
display block
font-family sans-serif
text-decoration none
&:hover
text-decoration underline
// font-size 100%
// font-weight normal
//
//
#minitoc a
display none
//
//
#minitoc:hover a
display block
// padding 1em
//
//
// #minitoc h2
// margin 3px 0px
// border none
// font-size 75%
//
//
// p.verse
// color #808080
// font-style italic
//
//
// .example
// background-color #DDFADE
// border 1px solid #9EC49F
// color #333333
//
//
// .alert
// font-weight bold
// color #FF0000
//
//
#toTop
top -100px /* together with this to put the div at the top */
position fixed /* this is the magic */
text-align center
z-index 999
display none
// background #F7F7F7
// border 1px solid #CCCCCC
// color #333333
// cursor pointer
// font-family verdana
// //font-size 11px
// padding 5px
// right 10px
// width 100px
//
//
#toTop:hover
text-decoration underline
//
//
#left-panel-wrapper
display none
position fixed
z-index 200
// /* display none /\* hide the panel if Javascript is not running *\/ */
//
//
#left-panel-contents
display none
position fixed
text-align left
top 0
z-index 200
// background-color #EFEFEF
// border-right 1px dotted #ADADAD
// height 100%
// left 0px
// width 199px
// padding-top 7px
// padding-left 7px
//
//
#left-panel-button
transform rotate(90deg)
left -23px
position fixed
top 50%
z-index 200
// background-color #EFEFEF
// border 1px dotted #ADADAD
// border-bottom-width 0px
// padding 2px 5px 5px 5px
//
//
#right-panel-wrapper
position fixed
z-index 200
// /* display none /\* hide the panel if Javascript is not running *\/ */
//
//
#right-panel-contents
display none
z-index 200
position fixed
text-align left
top 0
// background-color #EFEFEF
// border-left 1px dotted #ADADAD
// height 100%
// right 0px
// width 199px
// padding-top 7px
// padding-left 7px
//
//
// .org-src-container
// position relative
//
//
.snippet-copy-to-clipboard
display none
position absolute
left 50px
top 50px
// font-size 0.9em
// text-decorationunderline
//
//
// .copy-to-clipboard-buttonhover
// cursor pointer
//
//
// .title
// margin-bottom 0px
//
//
// ol li,
// ul li
// margin-top 1em
//
//
// .outline-4 > ol > li
// font-weight bold
//
//
// .outline-4 > .org-ul
// margin-left 5em
//
//
// .org-ul > li
// font-weight bold
//
//
// a code
// text-decoration underline
.org-ul
margin-top 1em
li
margin-top 0.5em
.org-ul > li > a
font-family sans-serif

@ -0,0 +1 @@
http://demo.thi.ng/org-spec/

@ -5,4 +5,5 @@
// This requires "sites/" because the Makefile runs stylus from the
// parent directory. Using "stylus -r" should make this unnecessary,
// but it doesn't.
@require 'sites/*'
// Sites starting with '_' will not be included.
@require 'sites/[!_]*.styl'

@ -0,0 +1 @@
https://github.com/alphapapa/solarized-everything-css/blob/multi-theme/README.org

@ -0,0 +1 @@
https://en.wikipedia.org/wiki/Tar_(computing)

@ -0,0 +1,27 @@
// * apprentice-colors.styl
// ** Apprentice colors
// Apprentice is derived from Romain Lafourcade's apprentice theme:
// https://github.com/romainl/Apprentice
almostblack = #1c1c1c
darkergrey = #262626
darkgrey = #303030
grey = #444444
mediumgrey = #585858
lightgrey = #6c6c6c
lightergrey = #bcbcbc
awhite = #ffffff
apurple = #5f5f87
lightpurple = #8787af
agreen = #5f875f
lightgreen = #87af87
aaqua = #5f8787
lightaqua = #5fafaf
ablue = #5f87af
lightblue = #8fafd7
ared = #af5f5f
orange = #ff8700
ocre = #87875f
ayellow = #ffffaf

@ -0,0 +1,26 @@
// * apprentice-dark.styl
@require colors
// ** Colors
color-a = ablue
color-a-visited = lightgreen
color-background = darkergrey
color-background-highlight = lighten(almostblack, 5%)
color-background-highlight-extra = darkgrey
color-background-highlight-extra-less = grey
color-background-highlight-extra-less-less = mediumgrey
color-background-highlight-tad-extra = darken(darkergrey, 4%)
color-border = purple
color-text = lightergrey
comment = mediumgrey
emphasized = orange
emphasized-more = ocre
emphasized-more-more = ayellow
button-gradient-top = color-background-highlight-extra
button-gradient-bottom = color-background-highlight

@ -0,0 +1,23 @@
// * colors.styl
// ** Darculized colors
// Darculized is a hybrid theme, derived from solarized and darcula
// See https://github.com/jgkamat/darculized
base03 = #262626
base02 = #2e2e2e
base01 = #5e6263
base00 = #909396
base0 = #909396
base1 = #a6aaab
base2 = #B8BBBD
base3 = #D2D8D9
yellow = #B68800
orange = #E05F27
red = #bd3832
magenta = #a8366b
violet = #797FD4
blue = #2F7BDE
cyan = #15968D
green = #598249

@ -0,0 +1,26 @@
// * darculized-dark.styl
@require colors
// ** Colors
color-a = #ce4139
color-a-visited = #B68800
color-background = base03
color-background-highlight = base02
color-background-highlight-extra = base01
color-background-highlight-extra-less = lighten(color-background-highlight, 4%)
color-background-highlight-extra-less-less = lighten(color-background-highlight, 2%)
color-background-highlight-tad-extra = lighten(color-background, 2%)
color-border = base00
color-text = base0
comment = base01
emphasized = base1
emphasized-more = base2
emphasized-more-more = base3
button-gradient-top = color-background-highlight-extra
button-gradient-bottom = color-background-highlight

@ -0,0 +1,20 @@
// * gruvbox-colors.styl
// ** A theme based of the gruvbox color scheme
base03 = #3c3836
base02 = #282828
base01 = #b8bb26
base00 = #fabd2f
base0 = #83a598
base1 = #8ec07c
base2 = #a89984
base3 = #ebdbb2
yellow = #d79921
orange = #fb4934
red = #cc241d
magenta = #b16286
violet = #d3869b
blue = #458588
cyan = #689d6a
green = #98971a

Some files were not shown because too many files have changed in this diff Show More

Loading…
Cancel
Save