From a7d533cfe5f6f6f2a47927675c91d909d1fa4c75 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Fri, 15 Jun 2018 15:38:30 +0530 Subject: [PATCH] Increase contrast of link color with text color in docs --- docs/conf.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/docs/conf.py b/docs/conf.py index 3929b6013..9af291fb1 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -115,6 +115,9 @@ html_theme_options = { 'github_banner': True, 'github_user': 'kovidgoyal', 'github_repo': 'kitty', + # increase contrast of link color with text color + 'link': '#00587d', + 'link_hover': 'green', }