From 00c31aeb7bb8d09e97199a29835f8412d36a0c56 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sat, 25 Nov 2023 21:37:44 +0100 Subject: [PATCH] feat: switch theme to One* 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 5c1e4c6..c577f63 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.vsLight; -const darkCodeTheme = themes.dracula; +const lightCodeTheme = themes.oneLight; +const darkCodeTheme = themes.oneDark; const math = require("remark-math"); const katex = require("rehype-katex");