From b6869979f054ce61b64ca2b365abbbc9c8a6ee6a Mon Sep 17 00:00:00 2001 From: Alexander Misel <7542439+AlexanderMisel@users.noreply.github.com> Date: Thu, 26 Dec 2019 16:02:28 +0800 Subject: [PATCH] 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 --- src/renderer/assets/themes/prismjs/dark.theme.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/renderer/assets/themes/prismjs/dark.theme.css b/src/renderer/assets/themes/prismjs/dark.theme.css index dcb4d51c..0f24bd65 100644 --- a/src/renderer/assets/themes/prismjs/dark.theme.css +++ b/src/renderer/assets/themes/prismjs/dark.theme.css @@ -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; }