From 8af61db534eb8c5b155f8d3dc5f413b4d7810c8a Mon Sep 17 00:00:00 2001 From: Dave Gallant Date: Tue, 2 Jan 2024 14:49:36 -0500 Subject: [PATCH] Use gruvbox-dark theme for utterances --- layouts/partials/comments/utterances.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/layouts/partials/comments/utterances.html b/layouts/partials/comments/utterances.html index ff3592b5..f613495e 100644 --- a/layouts/partials/comments/utterances.html +++ b/layouts/partials/comments/utterances.html @@ -10,7 +10,7 @@ var getTheme = window.localStorage && window.localStorage.getItem("theme"); getTheme = getTheme == null ? 'dark' : getTheme; - let theme = getTheme === 'dark' ? 'github-dark' : 'github-light'; + let theme = getTheme === 'dark' ? 'gruvbox-dark' : 'github-light'; let s = document.createElement('script'); s.src = 'https://utteranc.es/client.js'; s.setAttribute('repo', '{{ print $username "/" $repository }}');