From a581e9753f906060dd3e7ea033824c60a5f3ee29 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sat, 25 Nov 2023 21:49:46 +0100 Subject: [PATCH] feat: use github and dracula themes Signed-off-by: Matej Focko --- docusaurus.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docusaurus.config.js b/docusaurus.config.js index c577f63..77bbf0e 100644 --- a/docusaurus.config.js +++ b/docusaurus.config.js @@ -2,8 +2,8 @@ // Note: type annotations allow type checking and IDEs autocompletion const { themes } = require("prism-react-renderer"); -const lightCodeTheme = themes.oneLight; -const darkCodeTheme = themes.oneDark; +const lightCodeTheme = themes.github; +const darkCodeTheme = themes.dracula; const math = require("remark-math"); const katex = require("rehype-katex");