From: Lanius Trolling Date: Tue, 14 Feb 2023 17:31:05 +0000 (-0500) Subject: Theme blockquote color X-Git-Url: https://gitweb.starshipfights.net/?a=commitdiff_plain;h=036d449b6be5af3f5ffb4e4987c45c0bd27f0733;p=factbooks Theme blockquote color --- 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 {