Matching the sites theme (JS question) #883
-
Hi guys, for my site with Remark42, I'm using Hugo with the Wowchemy module. According to the Wowchemy documentation, there is a wcThemeChange-Event, which I could use: According to the Remark42 documentation one could change the theme with However, due to my complete lack of JS knowledge, I can't match both themes. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 9 replies
-
Hi! document.addEventListener('wcThemeChange', (e) => {
const isDark = e.detail.isDarkTheme();
window.REMARK42.changeTheme(isDark 'dark' : 'light');
}) |
Beta Was this translation helpful? Give feedback.
Hi!
I think you need something like this: