From e22ec74a141e68ab63d8cc9bd7f06f3b774e4635 Mon Sep 17 00:00:00 2001 From: b1rdmania <102524336+b1rdmania@users.noreply.github.com> Date: Tue, 30 Dec 2025 11:14:30 +0000 Subject: [PATCH] Match FAQ style to Version History (dark bg, light text) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit More consistent and easier to read. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 --- index.html | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/index.html b/index.html index eb8472a..0e3d3f9 100644 --- a/index.html +++ b/index.html @@ -305,7 +305,7 @@ } .modal main { padding: 16px; - background: var(--gb-lightest); + background: var(--gb-dark); overflow-y: auto; flex: 1; -webkit-overflow-scrolling: touch; @@ -316,24 +316,27 @@ gap: 10px; } .faq-item { - border: 2px solid var(--gb-dark); + border: 2px solid var(--gb-medium); padding: 10px; - background: var(--color-surface); + background: var(--gb-darkest); } .faq-item h4 { margin: 0 0 6px 0; font-size: 8px; - color: var(--gb-darkest); + color: var(--gb-lightest); } .faq-item p { margin: 0; - color: var(--gb-dark); + color: var(--gb-light); font-size: 8px; line-height: 1.8; } + .faq-item a { + color: var(--gb-lightest); + } .faq-item code { font-size: 8px; - color: var(--gb-darkest); + color: var(--gb-lightest); } .controls { margin: calc(var(--spacing-unit) * 3) 0 calc(var(--spacing-unit) * 2) 0;