diff options
Diffstat (limited to 'assets/mumi.scss')
-rw-r--r-- | assets/mumi.scss | 4 |
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); |