summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2022-12-20 22:15:32 +0100
committerRicardo Wurmus <rekado@elephly.net>2022-12-20 22:15:32 +0100
commitd13f10d6c327654dbc86a803f3f642c704f93703 (patch)
tree4aa03b147976d6616b25a5910fe3da19c62dfd13
parent787572cd37b0747bc47038e49d98051664ff468c (diff)
css: Reduce transparency of nav bar.
-rw-r--r--assets/mumi.scss4
1 files changed, 2 insertions, 2 deletions
diff --git a/assets/mumi.scss b/assets/mumi.scss
index 66010e4..0df6afd 100644
--- a/assets/mumi.scss
+++ b/assets/mumi.scss
@@ -19,7 +19,7 @@ $commit_header: #005cc5;
[data-theme="light"],
:root:not([data-theme="dark"]) {
--background-color: #{$white};
- --nav-background-color: #{rgba(mix($grey-50, $white, 33%), 0.7)};
+ --nav-background-color: #{rgba(mix($grey-50, $white, 33%), 0.9)};
--nav-border-color: #{rgba($grey-500, 0.2)};
--nav-logo-color: #333;
--article-code-background-color: #{mix($grey-50, $white, 33%)};
@@ -27,7 +27,7 @@ $commit_header: #005cc5;
// Dark theme
@mixin dark {
- --nav-background-color: #{rgba(darken($grey-900, 6%), 0.8)};
+ --nav-background-color: #{rgba(darken($grey-900, 6%), 0.9)};
--nav-border-color: #{rgba($grey-500, 0.2)};
--nav-logo-color: #{rgba(darken($grey-200, 6%), 0.8)};
--article-code-background-color: var(--code-background-color);