From 80e0f04e9332f0e8b4de2560e04c1963ed2b0f8e Mon Sep 17 00:00:00 2001 From: Oliver Booth Date: Tue, 8 Aug 2023 01:28:26 +0100 Subject: [PATCH] style: add codeblock marking --- src/scss/app.scss | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/scss/app.scss b/src/scss/app.scss index 2b097d7..5fe8754 100644 --- a/src/scss/app.scss +++ b/src/scss/app.scss @@ -159,6 +159,15 @@ article { } } +pre { + background: #1e1e1e; + + code mark, code mark span { + background: #d8ba76 !important; + color: #000 !important; + } +} + :root { color-scheme: light dark; }