Theme blockquote color
authorLanius Trolling <lanius@laniustrolling.dev>
Tue, 14 Feb 2023 17:31:05 +0000 (12:31 -0500)
committerLanius Trolling <lanius@laniustrolling.dev>
Tue, 14 Feb 2023 17:31:05 +0000 (12:31 -0500)
src/main/resources/static/style.css

index a2d920597d24dadbb77dfad4b6fbf9c1cd3e79a7..0a7a83cb541090697f43ce7f48f7f00192757324 100644 (file)
@@ -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 {