From f38e5081a49da3559274ec904063c3bcb76bca66 Mon Sep 17 00:00:00 2001 From: kvasonaft Date: Mon, 20 Jul 2026 22:39:18 +0300 Subject: [PATCH] Use pure black and white reader backgrounds Make the dark theme background solid black (#000000) instead of dark gray, and the light theme background pure white (#ffffff) instead of off-white beige. Co-Authored-By: Claude Opus 4.8 --- styles.css | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/styles.css b/styles.css index 263f83e..1abd7f2 100644 --- a/styles.css +++ b/styles.css @@ -5,9 +5,9 @@ /* Forced color schemes for the reading area. Obsidian theme variables are overridden locally so nested elements pick up matching colors. */ body.fb2-theme-dark .fb2-reader { - --background-primary: #1e1e22; - --background-secondary: #1e1e22; - background-color: #1e1e22; + --background-primary: #000000; + --background-secondary: #000000; + background-color: #000000; color: #d6d6d6; --text-normal: #d6d6d6; --text-muted: #9c9ca4; @@ -19,9 +19,9 @@ body.fb2-theme-dark .fb2-reader { } body.fb2-theme-light .fb2-reader { - --background-primary: #fbfbf8; - --background-secondary: #fbfbf8; - background-color: #fbfbf8; + --background-primary: #ffffff; + --background-secondary: #ffffff; + background-color: #ffffff; color: #232323; --text-normal: #232323; --text-muted: #6c6c68;