diff --git a/markitect/plugins/builtin/markdown_commands.py b/markitect/plugins/builtin/markdown_commands.py index 98fac116..286cccdb 100644 --- a/markitect/plugins/builtin/markdown_commands.py +++ b/markitect/plugins/builtin/markdown_commands.py @@ -41,7 +41,9 @@ LAYERED_THEMES = { 'blockquote_border': '#dfe2e5', 'blockquote_color': '#6a737d', 'table_border': '#d0d7de', - 'table_header_bg': '#f6f8fa' + 'table_header_bg': '#f6f8fa', + 'link_color': '#0969da', + 'link_hover_color': '#0550ae' } }, 'dark': { @@ -56,7 +58,9 @@ LAYERED_THEMES = { 'blockquote_border': '#58a6ff', 'blockquote_color': '#8b949e', 'table_border': '#30363d', - 'table_header_bg': '#161b22' + 'table_header_bg': '#161b22', + 'link_color': '#79c0ff', + 'link_hover_color': '#a5d6ff' } }, @@ -85,7 +89,9 @@ LAYERED_THEMES = { 'font_family': 'Georgia, Times New Roman, serif', 'max_width': '650px', 'heading_style': 'centered', - 'text_align': 'justify' + 'text_align': 'justify', + 'link_color': '#777777', + 'link_hover_color': '#999999' } },