From 036d449b6be5af3f5ffb4e4987c45c0bd27f0733 Mon Sep 17 00:00:00 2001 From: Lanius Trolling Date: Tue, 14 Feb 2023 12:31:05 -0500 Subject: [PATCH] Theme blockquote color --- src/main/resources/static/style.css | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/src/main/resources/static/style.css b/src/main/resources/static/style.css index a2d9205..0a7a83c 100644 --- a/src/main/resources/static/style.css +++ b/src/main/resources/static/style.css @@ -206,6 +206,8 @@ html { --comment-stroke: #025; --comment-fill: #bbb; + --quote-bg: rgba(0, 0, 0, 0.1); + /************* * url params * *************/ @@ -276,6 +278,8 @@ html[data-theme="dark"] { --comment-stroke: #bdf; --comment-fill: #222; + --quote-bg: rgba(255, 255, 255, 0.1); + /************* * url params * *************/ @@ -347,6 +351,8 @@ html[data-theme="dark"] { --comment-stroke: #025; --comment-fill: #bbb; + --quote-bg: rgba(0, 0, 0, 0.1); + /************* * url params * *************/ @@ -417,6 +423,8 @@ html[data-theme="dark"] { --comment-stroke: #bdf; --comment-fill: #222; + --quote-bg: rgba(255, 255, 255, 0.1); + /************* * url params * *************/ @@ -913,7 +921,7 @@ blockquote { margin: 0.25em 0; border-left: 0.25em solid var(--comment-stroke); padding: 0.5em; - background-color: rgba(0, 0, 0, 0.134); + background-color: var(--quote-bg); } .comment-edit-box { -- 2.25.1