diff options
-rw-r--r-- | static/style.css | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/static/style.css b/static/style.css index f76aac3..265d4ab 100644 --- a/static/style.css +++ b/static/style.css @@ -416,12 +416,14 @@ html.theme-dark .codeflask .token.attr-value { content: ""; position: absolute; inset: 0; - background: var(--color-background-dim); + background: var(--color-background); + filter: brightness(0.4) saturate(1.3); z-index: 0; + opacity: 0.3; } -.theme-dark .dim-bg::before { - opacity: 0.3 +.theme-light .dim-bg::before { + filter: brightness(0.8) saturate(1.3); } /* everything wrapper, 2x2 responsive grid layout */ |