From 75a545308d23ef87ef73b6df1f5ae23823aa8f27 Mon Sep 17 00:00:00 2001 From: Marshall Bowers Date: Fri, 3 May 2024 19:00:36 -0400 Subject: [PATCH] docs: Update inline code style (#11378) This PR updates the inline code style on the docs to match what we use on zed.dev. Release Notes: - N/A --- docs/theme/css/general.css | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/docs/theme/css/general.css b/docs/theme/css/general.css index 478a479070..38d1d91962 100644 --- a/docs/theme/css/general.css +++ b/docs/theme/css/general.css @@ -290,3 +290,8 @@ kbd { .result-no-output { font-style: italic; } + +code.hljs { + color: rgb(75, 83, 97) !important; + background-color: rgba(8, 76, 207, 0.1); +}