From d8f6283f01c81ea29a6c5431c69009834e6e930f Mon Sep 17 00:00:00 2001 From: Thai Pangsakulyanont Date: Fri, 25 Dec 2020 20:12:59 +0700 Subject: [PATCH] Fix text highlighting --- assets/css/style.scss | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/assets/css/style.scss b/assets/css/style.scss index c7954eb..bf7942c 100644 --- a/assets/css/style.scss +++ b/assets/css/style.scss @@ -106,7 +106,7 @@ html, body, .markdown-body.comic-mono { .kn, .k, .ow { color: #c678dd; } - .mi, .mf { + .mi, .mf, .na { color: #d19a66; } .nb { @@ -115,9 +115,12 @@ html, body, .markdown-body.comic-mono { .nf { color: #61afef; } + .nt { + color: #e06c75; + } } } .website-hidden { display: none; -} \ No newline at end of file +} -- 1.8.3.1