Explicitly define diff colors in light theme
Signed-off-by: Justin Sleep <justin@midnightmechanism.com>
This commit is contained in:
parent
d0b8565f54
commit
dcdf68d7e1
2 changed files with 10 additions and 1 deletions
|
@ -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;
|
||||
}
|
||||
|
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue