From a96e6b93f8ddcc384c4242e598ccd3fccd7b0c59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Weber?= Date: Thu, 23 Sep 2021 22:13:37 +0200 Subject: [PATCH] docs: change chroma theme as it looks weird for certain markers #99 --- exampleSite/config.toml | 4 ++-- exampleSite/content/cont/syntaxhighlight.en.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/exampleSite/config.toml b/exampleSite/config.toml index a505296ee6..df229f69cc 100644 --- a/exampleSite/config.toml +++ b/exampleSite/config.toml @@ -26,8 +26,8 @@ relativeURLs = true [markup] [markup.highlight] - style = "monokai" - guessSyntax = true + style = "base16-snazzy" # choose a color theme or create your own + guessSyntax = true # avoid unstyled code if no language was given [markup.goldmark.renderer] unsafe= true diff --git a/exampleSite/content/cont/syntaxhighlight.en.md b/exampleSite/content/cont/syntaxhighlight.en.md index 60c0d1d814..02fa463dff 100644 --- a/exampleSite/content/cont/syntaxhighlight.en.md +++ b/exampleSite/content/cont/syntaxhighlight.en.md @@ -56,6 +56,6 @@ You can choose a color theme from the [list of supported themes](https://xyproto ````toml [markup] [markup.highlight] - style = "monokai" # choose a color theme or create your own - guessSyntax = true # avoid unstyled code if no language was given + style = "base16-snazzy" # choose a color theme or create your own + guessSyntax = true # avoid unstyled code if no language was given ````