From 9220b96531128010c723090ae575f2f93b67b956 Mon Sep 17 00:00:00 2001 From: Fabian Homborg Date: Wed, 12 Jan 2022 21:19:37 +0100 Subject: [PATCH] Make inline code color a little bluer --- doc_src/python_docs_theme/static/pydoctheme.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc_src/python_docs_theme/static/pydoctheme.css b/doc_src/python_docs_theme/static/pydoctheme.css index d093628b8..9e1886efa 100644 --- a/doc_src/python_docs_theme/static/pydoctheme.css +++ b/doc_src/python_docs_theme/static/pydoctheme.css @@ -228,7 +228,7 @@ tr, pre { code { /* Make inline-code better visible */ - background-color: rgba(0,0,0, .08); + background-color: rgba(20,20,80, .1); padding-left: 5px; padding-right: 5px; } @@ -519,6 +519,6 @@ div.body .internal.reference:link { } code { - background-color: rgba(255, 255, 255, .08); + background-color: rgba(200, 200, 255, .1); } }