Merge pull request #3790 from justin-sleep/fix-dark-diff-highlighting

Fix inverted diff line highlighting in dark theme
This commit is contained in:
Travis Ralston 2020-01-05 17:08:38 -07:00 committed by GitHub
commit 92fb6fcdc2
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 19 additions and 0 deletions

View file

@ -246,3 +246,13 @@ $user-tile-hover-bg-color: $header-panel-bg-color;
}
}
}
// diff highlight colors
// intentionally swapped to avoid inversion
.hljs-addition {
background: #fdd;
}
.hljs-deletion {
background: #dfd;
}

View file

@ -341,3 +341,12 @@ $user-tile-hover-bg-color: $header-panel-bg-color;
color: $accent-color;
text-decoration: none;
}
// diff highlight colors
.hljs-addition {
background: #dfd;
}
.hljs-deletion {
background: #fdd;
}