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:
Alexander Misel 2019-12-26 16:02:28 +08:00 committed by Ran Luo
parent 23435ce6b1
commit b6869979f0

View File

@ -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;
} }