fix(css): diff colour in light theme

This commit is contained in:
Ming Di Leom 2023-12-25 07:05:17 +00:00
parent 2735d10aaa
commit 7d6ffd131e
No known key found for this signature in database
GPG Key ID: 32D3E28E96A695E8
2 changed files with 18 additions and 10 deletions

View File

@ -7,6 +7,8 @@
--main-font-color: #e6e6e6; --main-font-color: #e6e6e6;
--alt-bg-color: #333; --alt-bg-color: #333;
--link-underline: #3f72af; --link-underline: #3f72af;
--code-add-bg-color: #144212;
--code-del-bg-color: #600;
} }
html { html {
@ -623,12 +625,12 @@ td {
} }
.hljs-addition { .hljs-addition {
background-color: #144212; background-color: var(--code-add-bg-color);
display: inline-block; display: inline-block;
} }
.hljs-deletion { .hljs-deletion {
background-color: #600; background-color: var(--code-del-bg-color);
display: inline-block; display: inline-block;
} }
@ -834,6 +836,8 @@ unhide (via JS) if Web Share API is supported */
--main-bg-color: black; --main-bg-color: black;
--main-font-color: #e6e6e6; --main-font-color: #e6e6e6;
--alt-bg-color: #333; --alt-bg-color: #333;
--code-add-bg-color: #144212;
--code-del-bg-color: #600;
} }
} }
@ -842,6 +846,8 @@ unhide (via JS) if Web Share API is supported */
--main-bg-color: #f1f1f1; --main-bg-color: #f1f1f1;
--main-font-color: #333; --main-font-color: #333;
--alt-bg-color: #d8d8d8; --alt-bg-color: #d8d8d8;
--code-add-bg-color: #e6ffec;
--code-del-bg-color: #ffebe9;
} }
/* /*
@ -879,12 +885,10 @@ unhide (via JS) if Web Share API is supported */
.hljs-literal, .hljs-literal,
.hljs-template-tag, .hljs-template-tag,
.hljs-template-variable, .hljs-template-variable,
.hljs-type, .hljs-type {
.hljs-addition {
color: #a31515; color: #a31515;
} }
.hljs-deletion,
.hljs-selector-attr, .hljs-selector-attr,
.hljs-selector-pseudo, .hljs-selector-pseudo,
.hljs-meta { .hljs-meta {

View File

@ -323,6 +323,8 @@
--main-font-color: #e6e6e6; --main-font-color: #e6e6e6;
--alt-bg-color: #333; --alt-bg-color: #333;
--link-underline: #3f72af; --link-underline: #3f72af;
--code-add-bg-color: #144212;
--code-del-bg-color: #600;
} }
html { html {
@ -943,12 +945,12 @@ td {
} }
.hljs-addition { .hljs-addition {
background-color: #144212; background-color: var(--code-add-bg-color);
display: inline-block; display: inline-block;
} }
.hljs-deletion { .hljs-deletion {
background-color: #600; background-color: var(--code-del-bg-color);
display: inline-block; display: inline-block;
} }
@ -1157,6 +1159,8 @@ unhide (via JS) if Web Share API is supported */
--main-bg-color: black; --main-bg-color: black;
--main-font-color: #e6e6e6; --main-font-color: #e6e6e6;
--alt-bg-color: #333; --alt-bg-color: #333;
--code-add-bg-color: #144212;
--code-del-bg-color: #600;
} }
} }
@ -1165,6 +1169,8 @@ unhide (via JS) if Web Share API is supported */
--main-bg-color: #f1f1f1; --main-bg-color: #f1f1f1;
--main-font-color: #333; --main-font-color: #333;
--alt-bg-color: #d8d8d8; --alt-bg-color: #d8d8d8;
--code-add-bg-color: #e6ffec;
--code-del-bg-color: #ffebe9;
} }
/* /*
@ -1202,12 +1208,10 @@ unhide (via JS) if Web Share API is supported */
.hljs-literal, .hljs-literal,
.hljs-template-tag, .hljs-template-tag,
.hljs-template-variable, .hljs-template-variable,
.hljs-type, .hljs-type {
.hljs-addition {
color: #a31515; color: #a31515;
} }
.hljs-deletion,
.hljs-selector-attr, .hljs-selector-attr,
.hljs-selector-pseudo, .hljs-selector-pseudo,
.hljs-meta { .hljs-meta {