aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRuben Beltran del Rio <jj@r.bdr.sh>2026-04-30 16:50:20 +0200
committerRuben Beltran del Rio <jj@r.bdr.sh>2026-04-30 16:50:25 +0200
commiteb0efd36d2308a6504749a0ce14750e29a98f666 (patch)
treea6f2614a7b1804e3f231d9b41bd1e6f894283faf
parent1fa343fb2e6d36034d1526dc1c6a6f12a629062b (diff)
Use different light themeHEADmain
-rw-r--r--src/render.rs2
1 files changed, 1 insertions, 1 deletions
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}";