From d6fafacee77ae6dfc57e7c8d40b8dd986e29b9af Mon Sep 17 00:00:00 2001 From: Fedor Katurov Date: Wed, 24 Feb 2021 18:26:10 +0700 Subject: [PATCH] fixed code block color --- src/styles/common/markdown.module.scss | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/styles/common/markdown.module.scss b/src/styles/common/markdown.module.scss index e177c0d0..c2f0e779 100644 --- a/src/styles/common/markdown.module.scss +++ b/src/styles/common/markdown.module.scss @@ -21,14 +21,14 @@ $margin: 1em; } pre { - background-color: darken($comment_bg, 2%); + background-color: transparentize($blue, 0.9); border: { - left: 4px solid $red; - right: 4px solid $red; + left: 4px solid transparentize($blue, 0.9); + right: 4px solid transparentize($blue, 0.9); } font-family: monospace; font-size: 0.9em; - border-radius: $radius; + border-radius: 2px; width: 100%; overflow: auto; padding: $gap; @@ -36,7 +36,7 @@ $margin: 1em; margin-bottom: $margin; code { - color: transparentize(white, 0.5); + color: transparentize($wisegreen, 0.1); font-family: monospace; } }