Skip to content
This repository was archived by the owner on Jul 22, 2022. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
67 changes: 64 additions & 3 deletions github-dark.css
Original file line number Diff line number Diff line change
Expand Up @@ -1508,6 +1508,12 @@ table.capped-list tr:nth-child(even) {
color: #9e9e9e;
}

/* Repo Graph | Netowrk Tree */
/* Invert the colours of the network tree images. Who don't have a whole lot of control over these because they're PNGs provided by github. */
.network-tree {
-webkit-filter: invert(0.8);
filter: invert(0.8);
}

/* Repo Settings Tab */

Expand Down Expand Up @@ -1611,9 +1617,61 @@ hr,


/* Profile | Contribution */

#contributions-calendar rect[fill="#eeeeee"] {
fill: #151f29;
/* Use the calender colours from Github Dark 1 */
.calendar-graph rect[fill="#d6e685"],
.calendar-graph rect[fill="#8cc665"],
.calendar-graph rect[fill="#44a340"],
.calendar-graph rect[fill="#1e6823"],
.heat, .contrib-legend li {
background-color: #4183C4 !important;
fill: #4183C4 !important;
}
.calendar-graph .days-selected rect.day.active {
stroke: #ddd !important;
}
.calendar-graph rect.day:hover {
stroke: #fff !important;
}
/* contribution calendar - regular colors */
.calendar-graph rect[fill="#eeeeee"], .contrib-legend li[style*="#eee"] {
background-color: #222 !important;
fill: #222 !important;
}
.heat[data-heat="1"], .heat[data-heat="2"],
.calendar-graph rect[fill="#d6e685"], .contrib-legend li[style*="#d6e685"] {
opacity: .25 !important;
}
.heat[data-heat="3"], .heat[data-heat="4"],
.calendar-graph rect[fill="#8cc665"], .contrib-legend li[style*="#8cc665"] {
opacity: .5 !important;
}
.heat[data-heat="5"], .heat[data-heat="6"],
.calendar-graph rect[fill="#44a340"], .contrib-legend li[style*="#44a340"] {
opacity: .75 !important;
}
.heat[data-heat="7"], .heat[data-heat="8"],
.calendar-graph rect[fill="#1e6823"], .contrib-legend li[style*="#1e6823"] {
opacity: 1 !important;
}
/* contribution calendar - halloween colors */
.calendar-graph rect[fill="#FFEE4A"], .calendar-graph rect[fill="#FFC501"],
.calendar-graph rect[fill="#FE9600"], .contrib-legend li[style*="#FFEE4A"],
.contrib-legend li[style*="#FFC501"], .contrib-legend li[style*="#FE9600"] {
background-color: #fe9600 !important;
fill: #fe9600 !important;
}
.calendar-graph rect[fill="#FFEE4A"], .contrib-legend li[style*="#FFEE4A"] {
opacity: .2 !important;
}
.calendar-graph rect[fill="#FFC501"], .contrib-legend li[style*="#FFC501"] {
opacity: .4 !important;
}
.calendar-graph rect[fill="#FE9600"], .contrib-legend li[style*="#FE9600"] {
opacity: .8 !important;
}
.calendar-graph rect[fill="#03001C"], .contrib-legend li[style*="#03001C"] {
background-color: #fc3 !important;
fill: #fc3 !important;
}


Expand Down Expand Up @@ -2155,6 +2213,8 @@ li.session-device {

/* End */

=======
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

leftover from merge conflict


/* Fix new additions to github. */

.topic-tag {
Expand Down Expand Up @@ -2372,3 +2432,4 @@ li.session-device {
.cm-variable-3 {
color:
}

Loading