mirror of
https://github.com/marktext/marktext.git
synced 2025-05-06 11:49:29 +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.entity,
|
||||||
.token.url,
|
.token.url,
|
||||||
.language-css .token.string,
|
.language-css .token.string,
|
||||||
.style .token.string,
|
.style .token.string {
|
||||||
.token.variable {
|
color: #e67e65;
|
||||||
color: #f8f8f2;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
.token.atrule,
|
.token.atrule,
|
||||||
@ -109,7 +108,8 @@ pre.ag-paragraph {
|
|||||||
}
|
}
|
||||||
|
|
||||||
.token.regex,
|
.token.regex,
|
||||||
.token.important {
|
.token.important,
|
||||||
|
.token.variable {
|
||||||
color: #fd971f;
|
color: #fd971f;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user