From 7d3fcd9a3c7602a14fa68a747f951b866cf1df50 Mon Sep 17 00:00:00 2001 From: "B. Petersen" Date: Sat, 11 Mar 2023 13:58:50 +0100 Subject: [PATCH] restore original Doxygen contrasts the contrast was decreased at https://github.com/deltachat/deltachat-core-rust/pull/4136 , there were also suggestions to fix it there, but it was probably just forgotten :) this pr increases the contrast between code background and code font again to the level it was before and also to what similar themes are doing. --- deltachat-ffi/Doxyfile.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/deltachat-ffi/Doxyfile.css b/deltachat-ffi/Doxyfile.css index 2bf87be0c..fbd8a4354 100644 --- a/deltachat-ffi/Doxyfile.css +++ b/deltachat-ffi/Doxyfile.css @@ -1,11 +1,11 @@ :root { - --accent: hsl(0 0% 70%); + --accent: hsl(0 0% 85%); } @media (prefers-color-scheme: dark) { :root { - --accent: hsl(0 0% 30%); + --accent: hsl(0 0% 25%); } }