From b35fc9861b51225fd608a75fdbc595f7f6cd087e Mon Sep 17 00:00:00 2001 From: un-pogaz <46523284+un-pogaz@users.noreply.github.com> Date: Mon, 1 May 2023 13:02:41 +0200 Subject: [PATCH] ... --- src/calibre/gui2/markdown_syntax_highlighter.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/calibre/gui2/markdown_syntax_highlighter.py b/src/calibre/gui2/markdown_syntax_highlighter.py index c4e6a862ca..ba512410b5 100644 --- a/src/calibre/gui2/markdown_syntax_highlighter.py +++ b/src/calibre/gui2/markdown_syntax_highlighter.py @@ -66,7 +66,7 @@ class MarkdownHighlighter(QSyntaxHighlighter): "header": {"color":"#2aa198", "font-weight":"bold", "font-style":"normal"}, "unorderedlist": {"color":"red", "font-weight":"normal", "font-style":"normal"}, "orderedlist": {"color":"red", "font-weight":"normal", "font-style":"normal"}, - "blockquote": {"color":"red", "font-weight":"normal", "font-style":"normal"}, + "blockquote": {"color":"red", "font-weight":"bold", "font-style":"normal"}, "codespan": {"color":"#ff5800", "font-weight":"normal", "font-style":"normal"}, "codeblock": {"color":"#ff5800", "font-weight":"normal", "font-style":"normal"}, "line": {"color":"#2aa198", "font-weight":"normal", "font-style":"normal"}, @@ -82,7 +82,7 @@ class MarkdownHighlighter(QSyntaxHighlighter): "header": {"color":"#2aa198", "font-weight":"bold", "font-style":"normal"}, "unorderedlist": {"color":"yellow", "font-weight":"normal", "font-style":"normal"}, "orderedlist": {"color":"yellow", "font-weight":"normal", "font-style":"normal"}, - "blockquote": {"color":"yellow", "font-weight":"normal", "font-style":"normal"}, + "blockquote": {"color":"yellow", "font-weight":"bold", "font-style":"normal"}, "codespan": {"color":"#90ee90", "font-weight":"normal", "font-style":"normal"}, "codeblock": {"color":"#ff9900", "font-weight":"normal", "font-style":"normal"}, "line": {"color":"#2aa198", "font-weight":"normal", "font-style":"normal"},