mirror of
https://github.com/marktext/marktext.git
synced 2025-05-04 00:03:37 +08:00
Variables shouldn't use same color as strings (#1769)
* Variables shouldn't use same color as strings * Fix dark (okaidia) theme lacking color picked a color from color wheel which will keep harmony
This commit is contained in:
parent
23435ce6b1
commit
b6869979f0
@ -92,9 +92,8 @@ pre.ag-paragraph {
|
||||
.token.entity,
|
||||
.token.url,
|
||||
.language-css .token.string,
|
||||
.style .token.string,
|
||||
.token.variable {
|
||||
color: #f8f8f2;
|
||||
.style .token.string {
|
||||
color: #e67e65;
|
||||
}
|
||||
|
||||
.token.atrule,
|
||||
@ -109,7 +108,8 @@ pre.ag-paragraph {
|
||||
}
|
||||
|
||||
.token.regex,
|
||||
.token.important {
|
||||
.token.important,
|
||||
.token.variable {
|
||||
color: #fd971f;
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user