Explicitly define diff colors in light theme

Signed-off-by: Justin Sleep <justin@midnightmechanism.com>
This commit is contained in:
Justin Sleep 2020-01-05 17:35:05 -06:00
parent d0b8565f54
commit dcdf68d7e1
2 changed files with 10 additions and 1 deletions

View file

@ -244,7 +244,7 @@ $breadcrumb-placeholder-bg-color: #272c35;
}
}
// Fixes diff color inversion by swapping add / del colors
// diff highlight colors
.hljs-addition {
background: #fdd;
}

View file

@ -338,3 +338,12 @@ $breadcrumb-placeholder-bg-color: #e8eef5;
color: $accent-color;
text-decoration: none;
}
// diff highlight colors
.hljs-addition {
background: #dfd;
}
.hljs-deletion {
background: #fdd;
}