From eb0efd36d2308a6504749a0ce14750e29a98f666 Mon Sep 17 00:00:00 2001 From: Ruben Beltran del Rio Date: Thu, 30 Apr 2026 16:50:20 +0200 Subject: Use different light theme --- src/render.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/render.rs b/src/render.rs index 0ddbbf3..24922a4 100644 --- a/src/render.rs +++ b/src/render.rs @@ -4,7 +4,7 @@ use syntect::highlighting::ThemeSet; use syntect::html::highlighted_html_for_string; use syntect::parsing::SyntaxSet; -const THEME: &str = "base16-ocean.light"; +const THEME: &str = "InspiredGitHub"; const STYLE: &str = "html,body{margin:0;background:#fff}\ pre{margin:0;padding:1rem;font:14px/1.5 ui-monospace,SFMono-Regular,Menlo,monospace;overflow:auto}"; -- cgit